shish 2 lat temu
rodzic
commit
b796eab817

+ 12 - 1
ghsApp/src/admin/book/custom.vue

@@ -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>

+ 1 - 1
ghsApp/src/admin/item/detail.vue

@@ -169,7 +169,7 @@
 
         <tui-list-cell class="line-cell" :arrow="true">
           <view class="tui-title">采购人</view>
-          <view @click="changeCgStaff()">{{ productData.cgStaffName?productData.cgStaffName:'未设置' }}</view>
+          <view @click="changeCgStaff()" style="width:400upx;">{{ productData.cgStaffName?productData.cgStaffName:'未设置' }}</view>
         </tui-list-cell>
 
       </view>