| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!--pages/buyer/postItem/postItem.wxml-->
- <!-- <import src="/pages/stars/stars.wxml" /> -->
- <!-- <import src="/pages/buyer/replyTemplate/reply.wxml" /> -->
- <template name="postItemTemplate">
- <view class="post-list-item-container">
- <!-- <view class="posterInfoBox">
- <view class='itemLeftBox'>
- <image mode="aspectFill" src="{{headIcon}}"></image>
- </view>
- <view class='itemRightBox'>
- <view class='personInfo'>
- <view class='postName'>
- <text>{{nick}}</text>
- </view>
- <view class='starsBox'>
- <template is="starsTemplate" data="{{stars:stars, score: score}}" />
- </view>
- </view>
- <view class='postTimeAndLocation'>
- <text>{{updateTime}}</text>
- </view>
- </view>
- <view class='postTimeAndLocation'>
- <text>{{updateTime}}</text>
- </view>
- </view>-->
- <view class="posterInfoBox">
- <view class="postContent">
- <text>{{orgName}}</text>
- </view>
- <view>
- <text>{{time}}</text>
- </view>
- </view>
- <!-- <view class="postImage">
- <block wx:for="{{photoList}}" wx:for-item="photo" wx:key="id">
- <image mode="aspectFit" src="{{photo.small}}"></image>
- </block>
- </view> -->
- <view class="report-content">
- <text >{{info}}</text>
- <!-- <block wx:for="{{replyList}}" wx:for-item="reply" wx:key="id">
- <template is="replyItemTemplate" data="{{...reply}}" />
- </block> -->
- <!-- <block wx:if="{{replySize>2}}">
- <view class="viewall" bindtap='viewAllReplyHandle' data-postid="{{id}}">
- <text>查看全部{{replySize}}条留言</text>
- </view>
- </block> -->
- </view>
- <!-- <view class="bottomBar">
- <view class='postTimeAndLocation'>
- <text>{{time}}</text>
- </view> -->
- <!-- <view class="bottomBarBox ">
- <button size="mini " bindtap='postReplyHandle' data-postid="{{id}}">留言</button>
- <button size="mini " bindtap='workStreamHandle' data-postid="{{id}}">工作标记</button>
- </view> -->
- <!-- </view> -->
- </view>
- </template>
|