From 5bf2b51ec743cd422a0eb3277b9c93a08c700315 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期一, 10 二月 2025 08:46:30 +0800
Subject: [PATCH] #

---
 src/main/webapp/views/console.html |   31 +++++++++++++++++++++++++------
 1 files changed, 25 insertions(+), 6 deletions(-)

diff --git a/src/main/webapp/views/console.html b/src/main/webapp/views/console.html
index ed81f30..7f5fb5d 100644
--- a/src/main/webapp/views/console.html
+++ b/src/main/webapp/views/console.html
@@ -60,8 +60,8 @@
 					<!--杈撳嚭灏忚溅-->
 					<div v-for="(car,idx) in currentLevShuttleList"
 						 :style="{
-						 left: getCarPosition(car.wcsPoint.x,car.wcsPoint.y)[1]
-						 ,top: getCarPosition(car.wcsPoint.x,car.wcsPoint.y)[0]
+						 left: getCarPosition(car.point.x,car.point.y)[1]
+						 ,top: getCarPosition(car.point.x,car.point.y)[0]
 						 ,color: shuttleColorList[car.shuttleNo]
 						 }"
 						 class="sxcar" :id="'sxcar-' + car.shuttleNo">
@@ -77,7 +77,8 @@
 					</div>
 					<div>
 <!--						<el-button @click="testMove()">娴嬭瘯绉诲姩杞�</el-button>-->
-<!--						<el-button @click="resetMap()">閲嶇疆鍦板浘</el-button>-->
+						<el-button @click="resetMap()">閲嶇疆鍦板浘</el-button>
+<!--						<el-button @click="initLoc()">鍒濆鍖栧簱浣�</el-button>-->
 					</div>
 				</div>
 			</div>
@@ -333,7 +334,7 @@
 					map: [],//鍦板浘鏁版嵁
 					currentLev: 1,//鍦板浘褰撳墠妤煎眰
 					siteWindow: false, //绔欑偣寮圭獥鏄剧ず榛樿涓嶆樉绀�
-					floorList: [1, 2, 3], //褰撳墠椤圭洰妤煎眰
+					floorList: [1, 2, 3, 4], //褰撳墠椤圭洰妤煎眰
 					shuttleList: [], //鍥涘悜绌挎杞﹂泦鍚�
 					currentLevShuttleList: [],//褰撳墠妤煎眰鍥涘悜绌挎杞﹂泦鍚�
 					shuttleColorList: [],//鍥涘悜绌挎杞﹂鑹查泦鍚�
@@ -598,8 +599,8 @@
 								let tmp = null
 								tmp = setInterval(() => {
 									if (index < res.length) {
-										that.currentLevShuttleList[0].wcsPoint.y = res[index].y
-										that.currentLevShuttleList[0].wcsPoint.x = res[index].x
+										that.currentLevShuttleList[0].point.y = res[index].y
+										that.currentLevShuttleList[0].point.x = res[index].x
 										index++
 									}else {
 										clearInterval(tmp)
@@ -662,6 +663,24 @@
 							}
 						})
 					},
+					initLoc() {
+						//鍒濆鍖栧簱浣�
+						let that = this
+						$.ajax({
+							url:baseUrl+"/locMast/init",
+							headers:{
+								'token': localStorage.getItem('token')
+							},
+							data:{},
+							method:'post',
+							success:function (res) {
+								that.$message({
+									message: '鍒濆鍖栧畬鎴�',
+									type: 'success'
+								});
+							}
+						})
+					},
 					getCodeData(){
 						this.sendWs(JSON.stringify({
 							"url": "/console/barcode/output/site",

--
Gitblit v1.9.1