From 3693de3a743f774c81727a35f4b5ee9d28013a16 Mon Sep 17 00:00:00 2001
From: whycq0520 <91384184@qq.com>
Date: 星期六, 26 三月 2022 18:19:37 +0800
Subject: [PATCH] # 上架货位 多选

---
 pages/basics/stockQuery.vue |   90 +++++++++++++++++++++++++++++++--------------
 1 files changed, 62 insertions(+), 28 deletions(-)

diff --git a/pages/basics/stockQuery.vue b/pages/basics/stockQuery.vue
index 36f3661..6b36a6b 100644
--- a/pages/basics/stockQuery.vue
+++ b/pages/basics/stockQuery.vue
@@ -6,28 +6,37 @@
 		</view>
 		<view class="cu-form-group margin-top">
 			<view class="title">浜у搧</view>
-			<input v-model="matNo" placeholder="浜у搧淇℃伅" name="input" @input="findByMatNo()"></input>
+			<input v-model="matNo" placeholder="浜у搧" name="input" @input="findByMatNo()"></input>
 		</view>
+		
 		<view class="margin-top">
 			<uni-table border stripe emptyText="鏆傛棤鏇村鏁版嵁">
 				<uni-tr>
-					<uni-th width="90">浜у搧ID</uni-th>
-					<uni-th width="90">浜у搧鍚嶇О</uni-th>
-					<uni-th width="90">搴撲綅</uni-th>
-					<uni-th width="70">鏁伴噺</uni-th>
+					<uni-th align="center" width="90">浜у搧ID</uni-th>
+					<uni-th align="center" width="90">浜у搧鍚嶇О</uni-th>
+					<uni-th align="center" width="90">浜у搧浠e彿</uni-th>
+					<uni-th align="center" width="90">搴撲綅</uni-th>
+					<uni-th align="center" width="70">鏁伴噺</uni-th>
 				</uni-tr>
 				<uni-tr v-for="(item, index) in locDetlData" :key="index" @input="tabRender()">
-					<uni-td>{{item.matNo}}</uni-td>
-					<uni-td>{{item.matName}}</uni-td>
-					<uni-td>{{item.locNo}}</uni-td>
-					<uni-td>{{item.count}}</uni-td>
+					<uni-td align="center">{{item.matNo}}</uni-td>
+					<uni-td align="center">{{item.matName}}</uni-td>
+					<uni-td align="center">{{item.size}}</uni-td>
+					<uni-td align="center">{{item.locNo}}</uni-td>
+					<uni-td align="center">{{item.count}}</uni-td>
 				</uni-tr>
 			</uni-table>
 			
 		</view>
-		<view class="reset">
-			<button class="cu-btn bg-grey pda-btn1" @click="reset">閲� 缃�</button>
+		<view style="height: 200rpx;">
+			 <!-- 绌虹櫧灞� -->
 		</view>
+		<view class="cu-bar foot justify-center input" style="height: 130rpx;">
+			<view class="reset flex solid-bottom padding justify-center" >
+				<button class="cu-btn bg-grey main-btn margin-xs" style="width: 400rpx;" @click="reset">閲� 缃�</button>
+			</view>
+		</view>
+		
 	</view>
 </template>
 
@@ -38,13 +47,28 @@
 				locNo:'',
 				matNo:'',
 				locDetlData:[],
+				basePORT:'',
+				msgType: '',
+				messageText: '',
 			}
+		},
+		mounted(){
+			const UIP = uni.getStorageSync('UIP');
+			this.baseIP = UIP;
+			const UPORT = uni.getStorageSync('UPORT');
+			this.basePORT = UPORT;
 		},
 		methods: {
 			reset:function() {
 				let that = this;
 				that.locNo = '';
 				that.matNo = '';
+				that.locDetlData = [];
+			},
+			messageToggle(type) {
+				this.msgType = type
+				this.messageText = '鎻愬彇澶辫触'
+				this.$refs.message.open()
 			},
 			// 鏍规嵁搴撲綅鍙锋煡鎵惧簱瀛樻槑缁�
 			findByLocNo(){
@@ -66,7 +90,7 @@
 			find(){
 				let that = this
 				uni.request({
-					url: that.baseUrl + "/mobile/locDetl/stockQuery",
+					url: that.baseHttp + that.baseIP + ':' +that.basePORT + that.baseUrl + "/mobile/locDetl/stockQuery",
 					header:{
 						'content-type':'application/x-www-form-urlencoded',
 						'token':uni.getStorageSync('token')
@@ -77,14 +101,23 @@
 					},
 					method: 'POST',
 					success(res) {
-						if(res.data.code === 200){
-							if(res.data.data != null){
+						console.log(res)
+						if(res.data.code === 200) {
+							if(res.data.data != null) {
 								that.locDetlData = res.data.data
-							} else if (res.data.code ===403){
-								
-							} else {
-								
-							}
+							};
+						} else if (res.data.code ===403) {
+							uni.navigateBack({
+							    delta: 1
+							})
+						} else {
+							console.log(1)
+							uni.showToast({
+								title: res.data.msg,
+								icon: 'error',
+								duration:  1500
+							});
+							
 						}
 					}
 				})
@@ -95,18 +128,19 @@
 </script>
 
 <style>
-	.reset {
+	/* .reset {
 		
 		position: absolute;
 		width: 750upx;
-		background-color: #007AFF;
-		
-		bottom: 80upx;
-	}
+		bottom: 280upx;
+	} */
 	.pda-btn1 {
-		display: flex;
-		flex-direction:row;
-		justify-content: center;
-		width: 150upx;
+		margin-left:260rpx;
+		margin-right: auto;
+		margin-top: 150rpx;
+		width: 200rpx;
+		height: 80rpx;
+		font-size: 30upx;
+		font-weight: bold;
 	}
 </style>

--
Gitblit v1.9.1