select-bill.wxml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
  2. <loading wx:if="{{loading}}"></loading>
  3. <van-sticky scroll-top="0">
  4. <!-- 查询条件 -->
  5. <dk-dropdown-menu model:value="{{searchForm}}" menuList="{{searchContent}}" pullMenuList="{{pullMenuList}}" bind:search="searchData" searchTextPlaceholder="{{wxmlUtil.setSearchPlaceholder($t,['orderNo'])}}">
  6. </dk-dropdown-menu>
  7. <!-- 总的应收收款 -->
  8. <view class="top-class">
  9. <view class="top-class-2">
  10. <view style="display: flex;padding: 10rpx;color: #FFFFFF;">
  11. <view style="padding-left: 30rpx;padding-top: 19rpx;width: 30rpx;">
  12. <view catchtap="toCustomer" style="width: 30rpx;height: 30rpx;background-color: #95A8CB;border-radius:50%;">
  13. <view style="width: 30rpx; height: 30rpx;text-align: center;">
  14. <van-image round width="28rpx" height="28rpx" src="/static/img/purchase-order-icon.png" />
  15. </view>
  16. </view>
  17. </view>
  18. <view style="padding-left: 14rpx;padding-top: 19rpx;font-size: 28rpx;line-height: 36rpx; ">
  19. fsdfsdfsfsd;kl 134444444
  20. <!-- {{objectItem.supplierName?objectItem.supplierName:objectItem.cusName}} -->
  21. </view>
  22. </view>
  23. <view style="display: flex; justify-content: space-around;color: #FFFFFF;">
  24. <view style=" padding-top: 15rpx;font-size: 26rpx;line-height: 36rpx; ">
  25. 总应收收款
  26. </view>
  27. <view style=" padding-top: 15rpx;font-size: 36rpx;line-height: 36rpx; ">
  28. {{objectItem.receivableResidue}}
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </van-sticky>
  34. <!-- 列表数据 -->
  35. <view wx:for="{{tableData}}" data-item="{{item}}" wx:key="index" class="main-class">
  36. <view class="main-foot" style="border-radius: 15rpx;">
  37. <view class="table-content" data-item="{{item}}">
  38. <view style="padding:16rpx;">
  39. <view style="display:flex;justify-content: left;align-items: center;">
  40. <view style="width: 10%;">
  41. <van-checkbox checked-color="#E4002B" value="{{ item.checked }}" data-index="{{index}}" data-index_="{{index_}}" bind:change="onListItemChange"></van-checkbox>
  42. </view>
  43. <view style="width: 90%;font-size: 28rpx;color:#1B365D;padding: 20rpx;">
  44. <view style="margin-top: 20rpx;">单据单号: {{item.biznisNo}}</view>
  45. <view style="margin-top: 20rpx;">单据类型: {{item.accItemTypeName}}</view>
  46. <view style="margin-top: 20rpx;">单据金额: {{item.amtShould}}</view>
  47. <view style="margin-top: 20rpx;">未/已核销: {{item.amtResidue}}</view>
  48. <view style="margin-top: 20rpx;"> 账务日期: {{item.accDate}}</view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. <!-- 暂无数据 -->
  56. <van-empty wx:if="{{tableData.length<=0}}" description="{{$t['nodata']}}" />
  57. <view style="height: 200rpx;"></view>
  58. <dk-save-button model:value="{{btnFormData}}" btnAutoWidthFlag="{{true}}" btnRightFlag="{{true}}" buttonList="{{buttonList}}" contentList="{{contentList}}" bind:open="returnData"></dk-save-button>