From c36d7594f155a079a80ef8b697219695184cea31 Mon Sep 17 00:00:00 2001
From: songshankun <songshankun@foxmail.com>
Date: 星期一, 23 十月 2023 15:50:02 +0800
Subject: [PATCH] feat: 看板bug修复

---
 src/components/TaskControlModal.vue |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/src/components/TaskControlModal.vue b/src/components/TaskControlModal.vue
index c5ce308..537dcee 100644
--- a/src/components/TaskControlModal.vue
+++ b/src/components/TaskControlModal.vue
@@ -136,8 +136,12 @@
                     </div>
                   </template>
                   <div class="gif-right">
-                    ----- 鍓╀綑鏃堕棿 -----
-                    <span>00:00:{{ 30 - Number(num) < 10 ? 0 : '' }}{{ 30 - Number(num) }}</span>
+                    <div>
+                      ----- 鍓╀綑鏃堕棿 -----
+                    </div>
+                    <div>
+                      <span>00:00:{{ 30 - Number(num) < 10 ? 0 : '' }}{{ 30 - Number(num) }}</span>
+                    </div>
                   </div>
                 </div>
                 {{ message }}
@@ -363,6 +367,8 @@
     getCurrentTaskProduceParams(id) {
       // const id = this.currentTaskData?.Procedure?.ID
       if (id) {
+        this.currentProcessParams = []
+        this.getProcessParamsErrMsg = ""
         startTask({id}).then((res) => {
           if (res.code === 200) {
             this.currentProcessParams = res.data.Params ?? []
@@ -421,9 +427,9 @@
       if (this.currentTaskData?.Procedure?.ID && this.currentTaskData?.Procedure?.Status === 1) {
         this.num = 0;
         this.showBtn = 1;
-        this.show = true;
+        // this.show = true;
       } else {
-        this.show = false;
+        // this.show = false;
       }
     },
     getDateObj(date, fmt) {

--
Gitblit v1.8.0