|
|
@@ -19,13 +19,14 @@
|
|
|
<t-th><view style="color:black;">上架</view></t-th>
|
|
|
<t-th><view style="color:black;">路上</view></t-th>
|
|
|
<t-th><view style="color:black;">待采</view></t-th>
|
|
|
+ <t-th><view style="color:black;">备注</view></t-th>
|
|
|
+ <t-th><view style="color:black;">装箱</view></t-th>
|
|
|
</t-tr>
|
|
|
<template v-if="!$util.isEmpty(bookCustomData)">
|
|
|
<view v-for="(item, index) in bookCustomData" :key="index" @click="goAction(item)">
|
|
|
<t-tr>
|
|
|
<t-td>
|
|
|
<view class="num" :class="[item.bookNum == item.onNum ? 'finish' : 'normal']" style="position: relative;">
|
|
|
- <image :src="`${constant.imgUrl}/ghs/book/remark2.png`" style="width:38upx;height:38upx;display:inline-block;" mode="widthFix" v-if="item.hasRemark == 1"></image>
|
|
|
{{item.name}}
|
|
|
</view>
|
|
|
</t-td>
|
|
|
@@ -33,6 +34,16 @@
|
|
|
<t-td><view class="num" :class="[item.bookNum == item.onNum ? 'finish' : 'normal']">{{item.onNum?parseFloat(item.onNum):0}}</view></t-td>
|
|
|
<t-td><view class="num" :class="[item.bookNum == item.onNum ? 'finish' : 'normal']">{{item.roadNum?parseFloat(item.roadNum):0}}</view></t-td>
|
|
|
<t-td><view class="num" :class="[item.bookNum == item.onNum ? 'finish' : 'normal']">{{item.needCgNum?parseFloat(item.needCgNum):0}}</view></t-td>
|
|
|
+ <t-td>
|
|
|
+ <view>
|
|
|
+ <image :src="`${constant.imgUrl}/ghs/book/remark2.png`" style="width:38upx;height:38upx;display:inline-block;" mode="widthFix" v-if="item.hasRemark == 1"></image>
|
|
|
+ </view>
|
|
|
+ </t-td>
|
|
|
+ <t-td>
|
|
|
+ <view>
|
|
|
+ <image :src="`${constant.imgUrl}/ghs/book/box1.png`" style="width:38upx;height:38upx;display:inline-block;" mode="widthFix" v-if="item.box == 1"></image>
|
|
|
+ </view>
|
|
|
+ </t-td>
|
|
|
</t-tr>
|
|
|
</view>
|
|
|
</template>
|