From 9f9f7637f0cfd99497d2a5457089c7e92951a426 Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期五, 24 十一月 2023 14:46:34 +0800
Subject: [PATCH] 本地日志文件下载工具类中的方法修改,sql拼接错误修改

---
 Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue |   44 +++++++++++++++++++++++++++++++-------------
 1 files changed, 31 insertions(+), 13 deletions(-)

diff --git a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue
index 82d6fe0..483d080 100644
--- a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue
+++ b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue
@@ -52,14 +52,6 @@
                     <span>{{ scope.row.lcstatus_text }}</span>
                   </template>
                 </el-table-column>
-                <!--               鍙傜収鏁版嵁-->
-                <el-table-column v-for="(item,index) in referArray" key="index" v-if="  Object.keys(item.referConfig).length > 0 && !item.hidden" :label="item.title" prop="jiliangdw"
-                                 :show-overflow-tooltip="true" :sortable="item.sortable" :width="item.width"
-                                 align="center">
-                  <template slot-scope="scope">
-                    <span>{{ scope.row.jiliangdwname }}</span>
-                  </template>
-                </el-table-column>
                 <!--              缂栧彿-->
                 <el-table-column  v-for="(item, index) in CodeArray" key="index" v-if="CodeArray.length !== 0 && !item.hidden" :label="item.label" :prop="item.prop"
                                   :show-overflow-tooltip="true" :sortable="item.sortable" :width="item.width"
@@ -79,7 +71,14 @@
                                  :width="item.width"
                                  align="center">
                 </el-table-column>
-
+                <!--               鍙傜収鏁版嵁-->
+                <el-table-column v-for="(item,index) in referArray" :key="index" v-if="item.referConfig && Object.keys(item.referConfig).length > 0 && !item.hidden" :label="item.title" prop="jiliangdw"
+                                 :show-overflow-tooltip="true" :sortable="item.sortable" :width="item.width"
+                                 align="center">
+                  <template slot-scope="scope">
+                    <span>{{ scope.row.jiliangdwname }}</span>
+                  </template>
+                </el-table-column>
               </el-table>
             </div>
           </el-row>
@@ -177,7 +176,8 @@
   deleteCode,
   upSaveCode,
   applyGroupCode,
-  receiveEditApply
+  receiveEditApply,
+  applySaveCode
 } from "@/api/GetItem";
 import {processTS, changeStatus} from "@/api/template/setPersonnel"
 import {listCodeAttributeByClassId} from "@/api/integration/integration.js";
@@ -554,10 +554,28 @@
         this.applyvisible = true;
       });
     },
-    applySumbit(){
-
+    applySumbit(val){
+      // console.log('val',val)
+      if(func.notEmpty(val.ts)) {
+        val.ts = func.formattedDateTime(val.ts);
+        //console.log(val.ts);
+      }
+      applySaveCode(val).then(res => {
+        this.$nextTick(() => {
+          this.applyvisible = false;
+          this.$message.success("淇濆瓨鎴愬姛");
+          this.onLoad()
+        })
+      })
     },
-    amendSumbit(){
+    amendSumbit(val){
+      applySaveCode(val).then(res => {
+        this.$nextTick(() => {
+          this.amendvisible = false;
+          this.$message.success("淇濆瓨鎴愬姛");
+          this.onLoad()
+        })
+      })
 
     },
     //鏍囧噯淇

--
Gitblit v1.9.3