shish 1 год назад
Родитель
Сommit
6f37efada9

+ 2 - 2
ghsApp/src/pagesStorehouse/allot/modifyDetails.vue

@@ -48,8 +48,8 @@
 			<view style="display:flex;padding:20upx;height:auto;justify-content:space-around;align-items:center;flex-wrap:wrap;max-height:100vh;overflow:auto;">
 				<button v-for="(item, index) in list.data" :key="index" v-if="Number(currentShopId)!=Number(item.id)" class="admin-button-com middle blue" @tap.stop="pitchShop(item.id,item.shopName,inStockList,0)">{{item.shopName}}</button>
 			</view>
-			<view style="margin-top:30upx;">
-				<button class="admin-button-com middle blue" @tap.stop="cancelGetShop()">取消</button>
+			<view style="margin-top:60upx;width:100%;text-align: center;">
+				<button class="admin-button-com middle big" style="margin:0 auto;" @tap.stop="cancelGetShop()">取消选择</button>
 			</view>
 			<view style="height:140upx;"> </view>
 		</uni-popup>

+ 3 - 3
ghsApp/src/pagesStorehouse/allot/putDetails.vue

@@ -96,8 +96,8 @@
 			<view style="display:flex;padding:20upx;height:auto;justify-content:space-around;align-items:center;flex-wrap:wrap;max-height:100vh;overflow:auto;">
 				<button v-for="(item, index) in list.data" v-if="Number(currentShopId)!=Number(item.id)" class="admin-button-com middle blue" @tap.stop="pitchShop(item.id,item.shopName,inStockData,0)">{{item.shopName}}</button>
 			</view>
-			<view style="margin-top:30upx;">
-				<button class="admin-button-com middle blue" @tap.stop="cancelGetShop()">取消</button>
+			<view style="margin-top:60upx;width:100%;text-align: center;">
+				<button class="admin-button-com middle big" style="margin:0 auto;" @tap.stop="cancelGetShop()">取消选择</button>
 			</view>
 			<view style="height:140upx;"> </view>
 		</uni-popup>
@@ -119,7 +119,7 @@ export default {
 			inStockData: {},
 			columns: [
 				{ name: "名称", custom: "icon" },
-				{ name: "库存", custom: "stock", width: 120, align: "center" },
+				{ name: "入前库存", custom: "stock", width: 120, align: "center" },
 				{ name: "入库数", custom: "put", width: 120, align: "center" },
 				{ name: "单扎成本", custom: "itemPrice", width: 120, align: "center" },
 			],