From 5c1ac499b5ba614b187ddb41ef4309f6dcd20236 Mon Sep 17 00:00:00 2001
From: 快乐的昕的电脑 <快乐的昕的电脑@DESKTOP-C2BQPQU>
Date: 星期五, 31 十月 2025 14:14:47 +0800
Subject: [PATCH] 保存间隔改为1分钟

---
 components/mold.vue |   98 +++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 91 insertions(+), 7 deletions(-)

diff --git a/components/mold.vue b/components/mold.vue
index 2b87974..a6c4dfa 100644
--- a/components/mold.vue
+++ b/components/mold.vue
@@ -16,7 +16,7 @@
                 <label class="form-label">瀵垮懡姣旈璀﹀�硷細</label>
                 <input class="input"
                        v-model="lifeWarnInput"
-                       placeholder="濡�0.9鎴�90(%)"
+                       placeholder="濡�0.9鎴�90鎴�90%"
                        :disabled="!selectedToolNo || loadingForm" />
             </view>
             <view class="form-cell">
@@ -107,11 +107,10 @@
         </view>
 
         <!-- 璇存槑 -->
-        <view class="tool-desc">
-            <p style="color:red;">褰撳墠宸ュ崟涓紝鎹簡鍑犳鍒�锛屽氨浼氫骇鐢熷嚑鏉℃暟鎹�備笂鍒�鏃堕棿銆佷笅鍒�鏃堕棿鍦ㄨ〃涓兘鐪嬪埌銆�</p>
-            <p style="color:red;">涓婂垁鏃堕棿鍜屽搴旀椂闂寸敤鐢熶骇璁℃暟鍣ㄥ尮閰嶏紝鏌ュ嚭褰撴椂鐨勭敓浜ф暟锛堢疮璁¤鏁帮級銆�</p>
-            <p style="color:red;">瀵垮懡姣旈璀﹀�煎湪鍒�鍏蜂笂锛岄粯璁ょ粺涓�銆�</p>
-        </view>
+        <!--<view class="tool-desc">
+            <p style="color:red;">'浣跨敤涓婇檺'浠ヤ笅鍒�鏃剁殑'浣跨敤涓婇檺'涓鸿绠楁爣鍑�</p>
+            <p style="color:red;">瀵垮懡姣旈璀﹀�奸粯璁や负90%</p>
+        </view>-->
     </view>
 </template>
 
@@ -139,7 +138,14 @@
                 loadingForm: false,
                 submitting: false,
                 _searchTimer: null,
-                workOrderCurrentCjNum: null // 宸ュ崟褰撳墠鏁伴噰
+                workOrderCurrentCjNum: null, // 宸ュ崟褰撳墠鏁伴噰
+
+                // 鑷姩淇濆瓨鐩稿叧
+                autoSaveTimer: null,
+                isDirty: false, // 琛ㄥ崟鏄惁鏈夋湭淇濆瓨鍙樻洿
+                autoSaveIntervalMs: 60 * 1000, // 榛樿 1 鍒嗛挓
+                autoSaveEnabled: true,
+                autoSaveActionName: 'handleUpTool' // 鑷姩瑙﹀彂鐨勬柟娉曞悕锛屽彲鏀逛负鑷畾涔変繚瀛樻柟娉�
             };
         },
         computed: {
@@ -147,7 +153,56 @@
                 return Math.max(1, Math.ceil(this.total / this.pageSize) || 1);
             }
         },
+        watch: {
+            // 鏍囪鑴忔暟鎹細鎸夐渶鐩戝惉瀛楁鍙樺寲
+            selectedToolNo() { this.isDirty = true; },
+            useLimitInput() { this.isDirty = true; },
+            lifeWarnInput() { this.isDirty = true; },
+            toolName() { this.isDirty = true; },
+            toolModel() { this.isDirty = true; }
+        },
         methods: {
+            // 鑷姩淇濆瓨锛氬惎鍔�
+            startAutoSave() {
+                if (!this.autoSaveEnabled) return;
+                this.stopAutoSave();
+                this.autoSaveTimer = setInterval(() => {
+                    this.autoSaveTick();
+                }, this.autoSaveIntervalMs);
+            },
+            // 鑷姩淇濆瓨锛氬仠姝�
+            stopAutoSave() {
+                if (this.autoSaveTimer) {
+                    clearInterval(this.autoSaveTimer);
+                    this.autoSaveTimer = null;
+                }
+            },
+            // 鑷姩淇濆瓨锛氭瘡娆″畾鏃舵墽琛屾椂鐨勯�昏緫
+            async autoSaveTick() {
+                if (!this.autoSaveEnabled) return;
+                if (!this.isDirty) return;
+                if (this.submitting || this.loadingForm) return;
+
+                const fn = this.autoSaveActionName && typeof this[this.autoSaveActionName] === 'function'
+                    ? this[this.autoSaveActionName]
+                    : null;
+                if (!fn) {
+                    console.warn('鑷姩淇濆瓨锛氭湭鎵惧埌鏂规硶', this.autoSaveActionName);
+                    return;
+                }
+
+                try {
+                    this.submitting = true;
+                    await fn.call(this); // 璋冪敤淇濆瓨鏂规硶锛堜緥濡� handleUpTool锛�
+                    // 濡傛灉淇濆瓨鎴愬姛锛屾竻鑴忔爣璁帮紙淇濆瓨鏂规硶鍐呴儴鑻ュけ璐ユ病鏈夋姏鍑哄彲淇濇寔姝ゆ柟寮忥級
+                    this.isDirty = false;
+                } catch (e) {
+                    console.error('鑷姩淇濆瓨澶辫触锛�', e);
+                } finally {
+                    this.submitting = false;
+                }
+            },
+
             // 鏂板锛氬鍛芥瘮棰勮鍊煎綊涓�鍖� (杩斿洖 0~1 鎴� null)
             normalizeLifeWarn(v) {
                 if (v == null) return null;
@@ -323,6 +378,7 @@
                 } catch (err) {
                     console.error(err);
                     this.$showMessage('涓婂垁鎻愪氦澶辫触锛岃妫�鏌ョ綉缁�');
+                    throw err; // 鎶涘嚭浠ヤ究鑷姩淇濆瓨閫昏緫鎹曡幏骞朵繚鐣� isDirty
                 } finally {
                     this.submitting = false;
                 }
@@ -374,6 +430,7 @@
                 } catch (err) {
                     console.error(err);
                     this.$showMessage('涓嬪垁鎻愪氦澶辫触锛岃妫�鏌ョ綉缁�');
+                    throw err;
                 } finally {
                     this.submitting = false;
                 }
@@ -384,6 +441,7 @@
                 this.toolModel = '';
                 this.useLimitInput = '';
                 this.lifeWarnInput = ''; // 鏂板锛氭竻绌�
+                this.isDirty = false;
             },
             async fetchFormData() {
                 if (!this.workOrderNo || !this.machineNo) {
@@ -468,6 +526,18 @@
                         };
                     });
 
+                    // 鏂板锛氭寜涓婂垁鏃堕棿闄嶅簭鎺掑簭锛堣秺鏅氱殑瓒婁笂闈級
+                    mapped.sort((a, b) => {
+                        // 鏃堕棿鏍煎紡濡� "10-24 16:03"锛岃浆涓� Date 瀵硅薄姣旇緝
+                        const parse = s => {
+                            if (!s) return 0;
+                            // 琛ュ勾浠斤紝鍋囪閮芥槸浠婂勾
+                            const year = new Date().getFullYear();
+                            return new Date(`${year}-${s.replace(/-/g, '-')}:00`).getTime();
+                        };
+                        return parse(b.upTime) - parse(a.upTime); // 娉ㄦ剰杩欓噷椤哄簭鍙嶈繃鏉�
+                    });
+
                     this.toolRecords = mapped;
                     const totalFromRes = Number(
                         res.data?.total ?? res.data?.totalCount ?? res.total ?? res.totalCount ?? mapped.length
@@ -497,6 +567,13 @@
                         this.toolModel = order.cutterModel || order.cutteR_MODEL || '';
                         // 鍏抽敭锛氳幏鍙栧伐鍗曟渶鏂伴噰闆嗘暟
                         this.workOrderCurrentCjNum = order.CurrentCjNum ?? order.currentCjNum ?? null;
+                        // 鏂板锛氳嚜鍔ㄥ~鍏呭鍛芥瘮棰勮鍊�
+                        if (order.modlLifeWorning !== undefined && order.modlLifeWorning !== null) {
+                            const warn = Number(order.modlLifeWorning);
+                            this.lifeWarnInput = warn <= 1 ? `${(warn * 100).toFixed(0)}%` : `${warn.toFixed(0)}%`;
+                        } else {
+                            this.lifeWarnInput = '';
+                        }
                     } else {
                         this.workOrderCurrentCjNum = null;
                     }
@@ -542,6 +619,13 @@
             } else {
                 console.warn('鏈哄彴鍙锋垨宸ュ崟鍙蜂负绌猴紝鏃犳硶鑾峰彇琛ㄥ崟鏁版嵁');
             }
+
+            // 鍚姩鑷姩淇濆瓨瀹氭椂鍣�
+            this.startAutoSave();
+        },
+        beforeDestroy() {
+            // 娓呯悊瀹氭椂鍣紝闃叉鍐呭瓨娉勬紡
+            this.stopAutoSave();
         }
     };
 </script>

--
Gitblit v1.9.3