| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!-- <import src="/pages/stars/stars.wxml" /> -->
- <view class='myPageContainer'>
- <view class='buyerPerson'>
- <!-- <view class='top-image'>
- <image mode="aspectFill" src="{{headIcon}}" bindtap='modifyPersonInfo' />
- </view> -->
- <view class='buyerinfo'>
- <view class='infobox'>
- <!-- <text class='nick'>{{nick}}</text> -->
- <text class='nick'>工作确认情况</text>
- <!-- <template is="starsTemplate" data="{{stars:stars, score: score}}" /> -->
- </view>
- <view class='taskBox'>
- <text style="margin-right:20rpx;">已确认:{{workfordo}}</text>
- <text>确认中:{{working}}</text>
- </view>
- </view>
- <view class="toolbar">
- <image mode="aspectFill" src="/images/refresh.png" bindtap='refreshList' />
- </view>
- </view>
- <view class='talkBox'>
- <scroll-view class="post-list" scroll-y>
- <block wx:for="{{postList}}" wx:for-item="post" wx:key="id">
- <!-- <template is="postItemTemplate" data="{{...post}}" /> -->
- <view class="post-list-item-container">
- <view class="posterInfoBox">
- <view class="orgName">
- <text>{{post.orgName}}</text>
- </view>
- <view class="moreinfo-right">
- <view class="moreinfo">
- <text bindtap="moreinfoEvent" data-id="{{post.id}}">查看详情</text>
- </view>
- </view>
- </view>
- <view class="report-content">
- <text >{{post.info}}</text>
- </view>
- <view class="time">
- <text>{{post.time}}</text>
- </view>
- </view>
- </block>
- </scroll-view>
- </view>
- </view>
|