shish 2 лет назад
Родитель
Сommit
a210db7725
1 измененных файлов с 5 добавлено и 4 удалено
  1. 5 4
      ghsApp/src/pagesStorehouse/allot/putDetails.vue

+ 5 - 4
ghsApp/src/pagesStorehouse/allot/putDetails.vue

@@ -85,11 +85,9 @@
 			</view>
 		</view>
 		<uni-popup ref="selectFlowerNumRef" background-color="#fff" type="center" :animation="false" class="class-popup-style">
-			<view style="font-size:30upx;font-weight:bold;margin:20upx 0 15upx 0;">请选择门店:</view>
+			<view style="font-size:30upx;font-weight:bold;margin:20upx 0 15upx 15upx;">请选择门店:</view>
 			<view style="display:flex;padding:20upx;height:auto;justify-content: space-between;align-items:center;flex-wrap:wrap;max-height:100vh;overflow:auto;">
-				<block v-for="(item, index) in list.data">
-					<button class="admin-button-com middle" @tap.stop="pitchShop(item,inStockData)">{{item.shopName}}</button>
-				</block>
+				<button v-for="(item, index) in list.data" class="admin-button-com middle" @tap.stop="pitchShop(item,inStockData)">{{item.shopName}}</button>
 			</view>
 		</uni-popup>
 	</view>
@@ -157,6 +155,9 @@ export default {
 				oneKeyStockOut({inShopId:info.id,orderSn:inStockData.orderSn}).then(res=>{
 					if(res.code == 1){
 						that.$msg(res.msg)
+						setTimeout(() => {
+							uni.navigateBack()	
+						}, 1500)
 					}
 				})
 			})