From f13213d0a2d44443790e648896303ed93dc1bacd Mon Sep 17 00:00:00 2001
From: 快乐的昕的电脑 <快乐的昕的电脑@DESKTOP-C2BQPQU>
Date: 星期三, 19 十一月 2025 11:17:50 +0800
Subject: [PATCH] 调试

---
 pages/index.vue |   93 ++++++++++++++++++++++++++++------------------
 1 files changed, 57 insertions(+), 36 deletions(-)

diff --git a/pages/index.vue b/pages/index.vue
index de9994b..77ea94a 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -17,9 +17,9 @@
 			<view class="tab-item" :class="{ active: currentTab === 4 }" @click="changeTab(4)">
 				鐢熶骇鎶ュ伐
 			</view>
-			<!-- <view class="tab-item" :class="{ active: currentTab === 1 }" @click="changeTab(1)">
-		寮�宸ュ畬宸�
-	</view> -->
+			<view class="tab-item" :class="{ active: currentTab === 1 }" @click="changeTab(1)">
+		        寮�宸ュ畬宸�
+	        </view> 
 			<view class="tab-item" :class="{ active: currentTab === 5 }" @click="changeTab(5)">
 				e-SOP
 			</view>
@@ -552,28 +552,38 @@
 				}
 				return str;
 			},
-			cancel() {
 
-				if (!this.machineNo) {
-					return;
-				}
+            cancel() {
+                if (!this.machineNo) {
+                    return;
+                }
 
-				let editDate = this.formatDate(new Date());
+                // 鐩存帴鐢� flag 鍒ゆ柇
+                if (this.hasBindedCutterFlag) {
+                    uni.showToast({
+                        title: '褰撳墠宸ュ崟宸茬粦瀹氬垁鍏凤紝涓嶈兘娓呯┖閲嶉��',
+                        icon: 'error',
+                        duration: 2000
+                    });
+                    return;
+                }
 
-				this.selectedIndexs = [];
+                let editDate = this.formatDate(new Date());
+                this.selectedIndexs = [];
 
-				this.$post({
-					url: "/MesOrderSelect/Remove",
-					data: {
-						machineNo: this.machineNo,
-						editDate: editDate
-					},
-				}).then(res => {
-					if (res.data.tbBillList > 0) {
-						this.isShowTableData = [];
-					}
-				});
-			},
+                this.$post({
+                    url: "/MesOrderSelect/Remove",
+                    data: {
+                        machineNo: this.machineNo,
+                        editDate: editDate
+                    },
+                }).then(res => {
+                    if (res.data.tbBillList > 0) {
+                        this.isShowTableData = [];
+                    }
+                });
+            },
+
 			formatDate(date) {
 				let year = date.getFullYear(); // 鑾峰彇骞翠唤
 				let month = String(date.getMonth() + 1).padStart(2, '0'); // 鑾峰彇鏈堜唤骞惰ˉ闆�
@@ -629,22 +639,33 @@
 				})
 			},
             //鑾峰彇琛ㄦ牸鐨勬暟鎹簮
-			getWomdaaIsShow() {
-				this.$post({
-					url: "/Womdaa/GetWomdaasByShow",
-					data: {
-						machineNo: this.machineNo,
-					}
-				}).then(res => {
-					this.isShowTableData = res.data.tbBillList;
+            getWomdaaIsShow() {
+                this.$post({
+                    url: "/Womdaa/GetWomdaasByShow",
+                    data: {
+                        machineNo: this.machineNo,
+                    }
+                }).then(res => {
+                    this.isShowTableData = res.data.tbBillList;
 
-					if (this.isShowTableData.length == 1) {
-						uni.setStorageSync('daa001', this.isShowTableData[0].daa001);
-						uni.setStorageSync('id', this.isShowTableData[0].id);
-						//this.toDetail(this.isShowTableData[0]);
-					}
-				});
-			},
+                    // 鍙垽鏂涓�鏉★紙鍙厑璁镐竴鏉″伐鍗曪級
+                    const order = this.isShowTableData[0];
+                    let hasBindedCutter = false;
+                    if (order) {
+                        hasBindedCutter =
+                            (order.outToolId && order.outToolId.toString().trim() !== '') ||
+                            (order.outToolCode && order.outToolCode.trim() !== '') ||
+                            (order.outToolName && order.outToolName.trim() !== '');
+                    }
+                    // 瀛樺偍鍒� data 鍙橀噺
+                    this.hasBindedCutterFlag = hasBindedCutter;
+
+                    if (this.isShowTableData.length == 1) {
+                        uni.setStorageSync('daa001', this.isShowTableData[0].daa001);
+                        uni.setStorageSync('id', this.isShowTableData[0].id);
+                    }
+                });
+            },
 
             isShowTab() {
                 if (this.isShowTableData.length > 0) {

--
Gitblit v1.9.3