|
@@ -7,9 +7,9 @@
|
|
|
<view class="partList-list">
|
|
|
<view class="partList-list-box" v-for="item in partList" :key="item.id">
|
|
|
<view class="product flex align_center">
|
|
|
- <!-- <view class="checkbox" v-if="model == 'checkbox'">
|
|
|
+ <view class="checkbox" v-if="model == 'checkbox'">
|
|
|
<u-checkbox v-model="item.checked" :name="item.id" @change="checkChange" size="40" shape="circle"></u-checkbox>
|
|
|
- </view> -->
|
|
|
+ </view>
|
|
|
<view class="flex align_center flex_1">
|
|
|
<view class="pimgs" @click="checkChange({name:item.id})">
|
|
|
<u-image :src="item.product&&item.product.productMsg?item.product.productMsg:`../../static/${$config('themePath')}/def_img@2x.png`" width="128" height="128" border-radius="10"></u-image>
|
|
@@ -66,12 +66,6 @@
|
|
|
<!-- 有复选框 -->
|
|
|
<view v-if="model == 'checkbox'" class="ptools flex align_center justify_between">
|
|
|
<view></view>
|
|
|
- <view class="pcurnums flex align_center" v-if="pageType=='recall'">
|
|
|
- <text>实退数量</text>
|
|
|
- <view class="u-ninput">
|
|
|
- <u-number-box color="#000" :input-height="60" bg-color="#fff" v-model="item.confirmQty" :min="0" :max="item.qty"></u-number-box>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
<view class="pcurnums flex align_center" v-if="pageType=='manualPrint'">
|
|
|
<text>打印数量</text>
|
|
|
<view class="u-ninput">
|
|
@@ -88,6 +82,12 @@
|
|
|
<u-number-box color="#000" :input-height="60" bg-color="#fff" v-model="item.putQty" @change="numberChange" :min="0" :max="999999"></u-number-box>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="pcurnums flex align_center" v-if="pageType=='recall'">
|
|
|
+ <text>调回数量</text>
|
|
|
+ <view class="u-ninput">
|
|
|
+ <u-number-box color="#000" :input-height="60" bg-color="#fff" v-model="item.confirmQty" :min="0" :max="item.qty"></u-number-box>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="nodata" v-if="list.length==0">
|