myPage.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!-- <import src="/pages/stars/stars.wxml" /> -->
  2. <view class='myPageContainer'>
  3. <view class='buyerPerson'>
  4. <!-- <view class='top-image'>
  5. <image mode="aspectFill" src="{{headIcon}}" bindtap='modifyPersonInfo' />
  6. </view> -->
  7. <view class='buyerinfo'>
  8. <view class='infobox'>
  9. <!-- <text class='nick'>{{nick}}</text> -->
  10. <text class='nick'>工作确认情况</text>
  11. <!-- <template is="starsTemplate" data="{{stars:stars, score: score}}" /> -->
  12. </view>
  13. <view class='taskBox'>
  14. <text style="margin-right:20rpx;">已确认:{{workfordo}}</text>
  15. <text>确认中:{{working}}</text>
  16. </view>
  17. </view>
  18. <view class="toolbar">
  19. <image mode="aspectFill" src="/images/refresh.png" bindtap='refreshList' />
  20. </view>
  21. </view>
  22. <view class='talkBox'>
  23. <scroll-view class="post-list" scroll-y>
  24. <block wx:for="{{postList}}" wx:for-item="post" wx:key="id">
  25. <!-- <template is="postItemTemplate" data="{{...post}}" /> -->
  26. <view class="post-list-item-container">
  27. <view class="posterInfoBox">
  28. <view class="orgName">
  29. <text>{{post.orgName}}</text>
  30. </view>
  31. <view class="moreinfo-right">
  32. <view class="moreinfo">
  33. <text bindtap="moreinfoEvent" data-id="{{post.id}}">查看详情</text>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="report-content">
  38. <text >{{post.info}}</text>
  39. </view>
  40. <view class="time">
  41. <text>{{post.time}}</text>
  42. </view>
  43. </view>
  44. </block>
  45. </scroll-view>
  46. </view>
  47. </view>