You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 年之前
1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <view style="padding: 20rpx 32rpx;color: #000;">
  2. <view style="text-align: center;margin: 10px;font-weight: 700;font-size: 40rpx;">{{title}}</view>
  3. <rich-text nodes="{{content}}" space="nbsp"></rich-text>
  4. <block wx:if="{{list.length > 0}}">
  5. <view class="table">
  6. <view class="thead">
  7. <view class="th" style="width: 20vw;">姓名</view>
  8. <view class="th" style="width: 30vw;">身份证号</view>
  9. <view class="th" style="width: 40vw;">务工单位</view>
  10. <view class="th" style="width: 10vw;">金额(元)</view>
  11. </view>
  12. <view class="tbody">
  13. <view class="tr" wx:for="{{list}}" wx:key="{{index}}">
  14. <view class="tb" style="width: 20vw;">{{item.name}}</view>
  15. <view class="tb" style="width: 30vw;">{{item.pid}}</view>
  16. <view class="tb" style="width: 40vw;">{{item.workName}}</view>
  17. <view class="tb" style="width: 10vw;">{{item.approveAmount}}</view>
  18. </view>
  19. </view>
  20. </view>
  21. </block>
  22. <!-- <block>
  23. <view class="table">
  24. <view class="thead">
  25. <view class="th" style="width: 20vw;">姓名</view>
  26. <view class="th" style="width: 30vw;">身份证号</view>
  27. <view class="th" style="width: 40vw;">务工单位</view>
  28. <view class="th" style="width: 10vw;">金额(元)</view>
  29. </view>
  30. <view class="tbody">
  31. <view class="tr" >
  32. <view class="tb" style="width: 20vw;">姓名姓姓名姓姓名姓姓名姓</view>
  33. <view class="tb" style="width: 30vw;">460**************1</view>
  34. <view class="tb" style="width: 40vw;">广东省中山市小榄镇哈哈哈哈哈哈哈哈哈哈</view>
  35. <view class="tb" style="width: 10vw;">1000</view>
  36. </view>
  37. </view>
  38. </view>
  39. </block> -->
  40. </view>