| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
- <loading wx:if="{{loading}}" loadingName="加载中" backgroundColor="#f2f2f2;" opacity="0.8"></loading>
- <van-sticky scroll-top="0">
- <!-- 查询条件 -->
- <dk-dropdown-menu wx:if="{{formType == 'add'}}" flgSearchText="{{false}}" flgSearchFlag="{{true}}" flgSearchTextSearchText="{{searchText}}" >
- </dk-dropdown-menu>
- <dk-dropdown-menu wx:else model:value="{{searchForm}}" menuList="{{searchContent}}" pullMenuList="{{pullMenuList}}" bind:search="searchData" searchTextPlaceholder="{{wxmlUtil.setSearchPlaceholder($t,['rpNo','skuName'])}}">
- </dk-dropdown-menu>
- </van-sticky>
- <view style="height: 40rpx;"></view>
- <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: 8%;">
- <van-checkbox checked-color="#E4002B" value="{{ item.checked }}" data-index="{{index}}" data-index_="{{index_}}" bind:change="onListItemChange"></van-checkbox>
- </view>
- <view style="width: 72%;">
- <view style="font-size: 26rpx;color:#1B365D;">{{item.intoNo}}</view>
- <view style="font-size: 24rpx;color:#95A8CB;padding-top:10rpx"> {{item.makeTime ? wxmlUtil.format(item.makeTime) : ''}}</view>
- </view>
- <view style="width: 20%;text-align: right;font-size: 26rpx;color:#1B365D">采购入库单</view>
- </view>
- </view>
- <view wx:for="{{item.inboundItemList}}" wx:for-item="item_" wx:for-index="index_">
- <view style="display: flex;height: 100%;" data-index="{{index}}" data-index_="{{index_}}">
- <view style="place-self: center;padding-left: 15rpx;padding-right: 15rpx;">
- <view style="display: flex;padding-left: 10rpx;">
- <van-checkbox checked-color="#E4002B" value="{{ item_.checked }}" data-index="{{index}}" data-index_="{{index_}}" bind:change="onChangeItemCheckbox" checked-color="#E4002B"></van-checkbox>
- <view class="red-checkbox" style="{{item_.checked ? 'color:#E4002B;' : ''}}">退</view>
- </view>
- </view>
- <view class="border-solid" style="{{index_ === 0 ? (item.inboundItemList.length == 1 ? 'margin-top:30rpx;margin-bottom:30rpx;' : 'margin-top:30rpx;') : index_ ===(item.inboundItemList.length -1) ? 'margin-bottom:30rpx;': ''}}"></view>
- <view style="display: flex;width: 100%;">
- <view style="padding:20rpx;">
- <van-image radius="5px" width="80" height="80" src="{{item_.imagesUrl? item_.imagesUrl : ''}}" />
- </view>
- <view style="width: 100%;padding:20rpx;padding-left: 10rpx;">
- <view >
- <dk-title titleTag="{{item_.shortName}}" title="{{item_.skuModel}}"></dk-title>
- </view>
- <view>
- <view style="width: 100%;margin-top: 10rpx;" class="font">{{item_.skuName ? item_.skuName : ''}}</view>
- </view>
- <view style="display: flex;width: 100%;padding-top: 20rpx;">
- <view style="width: 40%;">
- <dk-cell contentFontSize="15" height="25rpx" fontWeight="bold" left="0rpx" contentColor="#FF7B1A" title="" content="{{ item_.priceInto ? item_.priceInto : 0}}"></dk-cell>
- </view>
- <view style="width: 60%;font-size:24rpx;color: #95A8CB;line-height: 34rpx;text-align: right;">{{ ' x ' + (item_.canReturnQty ? item_.canReturnQty : 0)}}</view>
- </view>
- </view>
- </view>
- </view>
- <view wx:if="{{index_ !== (item.inboundItemList.length -1) && item.inboundItemList.length > 1}}" style="text-align: center;margin-left: 30rpx;margin-right: 30rpx;">
- <view style="border: solid 1rpx #D3D3D3;"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <van-empty wx:if="{{!tableData[0].inboundItemList || tableData[0].inboundItemList.length ==0}}" description="暂无出库单" />
- <view style="height: 200rpx;"></view>
- <!-- 底部工具栏-保存 -->
- <!-- <dk-save-bottom checked="{{allChecked}}" totallength="{{returnTotalAmount}}" flagTypeName="select-source-purchase-order" bottomClass="{{true}}" bind:onCheckboxChange="onCheckboxChange" bind:allClean="toAdd" /> -->
- <dk-save-button model:value="{{btnFormData}}" btnAutoWidthFlag="{{true}}" btnRightFlag="{{true}}" buttonList="{{buttonSaveList}}" contentList="{{contentSaveList}}" bind:open="toAdd"></dk-save-button>
|