| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <loading wx:if="{{loading}}"></loading>
- <van-sticky scroll-top="0">
- <!-- 查询条件 -->
- <dk-dropdown-menu model:value="{{searchForm}}" menuList="{{searchContent}}" pullMenuList="{{pullMenuList}}" bind:search="searchData" searchTextPlaceholder="{{wxmlUtil.setSearchPlaceholder($t,['orderNo'])}}">
- </dk-dropdown-menu>
- <!-- 总的应收收款 -->
- <view class="top-class">
- <view class="top-class-2">
- <view style="display: flex;padding: 10rpx;color: #FFFFFF;">
- <view style="padding-left: 30rpx;padding-top: 19rpx;width: 30rpx;">
- <view catchtap="toCustomer" style="width: 30rpx;height: 30rpx;background-color: #95A8CB;border-radius:50%;">
- <view style="width: 30rpx; height: 30rpx;text-align: center;">
- <van-image round width="28rpx" height="28rpx" src="/static/img/purchase-order-icon.png" />
- </view>
- </view>
- </view>
- <view style="padding-left: 14rpx;padding-top: 19rpx;font-size: 28rpx;line-height: 36rpx; ">
- fsdfsdfsfsd;kl 134444444
- <!-- {{objectItem.supplierName?objectItem.supplierName:objectItem.cusName}} -->
- </view>
- </view>
- <view style="display: flex; justify-content: space-around;color: #FFFFFF;">
- <view style=" padding-top: 15rpx;font-size: 26rpx;line-height: 36rpx; ">
- 总应收收款
- </view>
- <view style=" padding-top: 15rpx;font-size: 36rpx;line-height: 36rpx; ">
- {{objectItem.receivableResidue}}
- </view>
- </view>
- </view>
- </view>
- </van-sticky>
- <!-- 列表数据 -->
- <view wx:for="{{tableData}}" data-item="{{item}}" wx:key="index" class="main-class">
- <view class="main-foot" style="border-radius: 15rpx;">
- <view class="table-content" data-item="{{item}}">
- <view style="padding:16rpx;">
- <view style="display:flex;justify-content: left;align-items: center;">
- <view style="width: 10%;">
- <van-checkbox checked-color="#E4002B" value="{{ item.checked }}" data-index="{{index}}" data-index_="{{index_}}" bind:change="onListItemChange"></van-checkbox>
- </view>
- <view style="width: 90%;font-size: 28rpx;color:#1B365D;padding: 20rpx;">
- <view style="margin-top: 20rpx;">单据单号: {{item.biznisNo}}</view>
- <view style="margin-top: 20rpx;">单据类型: {{item.accItemTypeName}}</view>
- <view style="margin-top: 20rpx;">单据金额: {{item.amtShould}}</view>
- <view style="margin-top: 20rpx;">未/已核销: {{item.amtResidue}}</view>
- <view style="margin-top: 20rpx;"> 账务日期: {{item.accDate}}</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 暂无数据 -->
- <van-empty wx:if="{{tableData.length<=0}}" description="{{$t['nodata']}}" />
- <view style="height: 200rpx;"></view>
-
- <dk-save-button model:value="{{btnFormData}}" btnAutoWidthFlag="{{true}}" btnRightFlag="{{true}}" buttonList="{{buttonList}}" contentList="{{contentList}}" bind:open="returnData"></dk-save-button>
|