From 38067b4301fa91d1649a636f5a09296b040e1cdb Mon Sep 17 00:00:00 2001
From: xiejun <xj@2023>
Date: 星期四, 12 十月 2023 15:36:45 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 Source/UBCS-WEB/src/views/monitor/log/usual.vue                |    1 
 Source/UBCS-WEB/src/views/docking/data.vue                     |    1 
 Source/UBCS-WEB/src/views/monitor/log/api.vue                  |    1 
 Source/UBCS-WEB/src/const/code/codeKeyAttrRepeat.js            |    9 ----
 Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue    |   11 +++--
 Source/UBCS-WEB/src/views/resource/attach.vue                  |    1 
 Source/UBCS-WEB/src/views/work/start.vue                       |    1 
 Source/UBCS-WEB/src/views/flow/model.vue                       |    1 
 Source/UBCS-WEB/src/views/system/user.vue                      |    3 +
 Source/UBCS-WEB/src/views/docking/task.vue                     |    1 
 Source/UBCS-WEB/src/views/tool/code.vue                        |    1 
 Source/UBCS-WEB/src/views/resource/sms.vue                     |    1 
 Source/UBCS-WEB/src/views/tool/datasource.vue                  |    1 
 Source/UBCS-WEB/src/views/docking/loge.vue                     |    1 
 Source/UBCS-WEB/src/views/flow/manager.vue                     |    1 
 Source/UBCS-WEB/src/views/work/send.vue                        |    1 
 Source/UBCS-WEB/src/components/Master/MasterTree.vue           |    2 
 Source/UBCS-WEB/src/const/code/codeSynonym.js                  |    1 
 Source/UBCS-WEB/src/const/omd/enum.js                          |    1 
 Source/UBCS-WEB/src/views/work/todo.vue                        |    1 
 Source/UBCS-WEB/src/views/modeling/cycle.vue                   |    1 
 Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue         |    2 +
 Source/UBCS-WEB/src/views/desk/notice.vue                      |    1 
 Source/UBCS-WEB/src/components/Theme/ThemeClassifyTreeform.vue |    4 +
 Source/UBCS-WEB/src/views/monitor/log/error.vue                |    1 
 Source/UBCS-WEB/src/components/refer/vciWebReferDefalut.vue    |    1 
 Source/UBCS-WEB/src/views/flow/follow.vue                      |    1 
 Source/UBCS-WEB/src/views/resource/oss.vue                     |    1 
 Source/UBCS-WEB/src/views/flow/deploy.vue                      |    1 
 Source/UBCS-WEB/src/components/refer/vciWebReferTable.vue      |    1 
 Source/UBCS-WEB/src/views/report/reportlist.vue                |    1 
 Source/UBCS-WEB/src/const/tool/model.js                        |    1 
 Source/UBCS-WEB/src/views/modeling/status.vue                  |    1 
 Source/UBCS-WEB/src/views/docking/info.vue                     |    1 
 Source/UBCS-WEB/src/components/Theme/ThemeClassifyTrees.vue    |    3 +
 Source/UBCS-WEB/src/views/work/done.vue                        |    1 
 Source/UBCS-WEB/src/views/work/claim.vue                       |    1 
 37 files changed, 49 insertions(+), 15 deletions(-)

diff --git a/Source/UBCS-WEB/src/components/Master/MasterTree.vue b/Source/UBCS-WEB/src/components/Master/MasterTree.vue
index 735ac38..a620696 100644
--- a/Source/UBCS-WEB/src/components/Master/MasterTree.vue
+++ b/Source/UBCS-WEB/src/components/Master/MasterTree.vue
@@ -149,7 +149,7 @@
           List.forEach(item => {
             let columnItem = {
               label: item.title,
-              prop: item.field,
+              prop: item.queryField,
               // type: this.columnType[item.type],
               sortable: item.sort,
               width: item.minWidth
diff --git a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue
index 61ebc48..218543e 100644
--- a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue
+++ b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue
@@ -17,7 +17,7 @@
               </el-button>
               <span v-if="tableHeadFindData.length > 0">
               <el-select slot="prepend" v-model="keyWordFind" placeholder="璇烽�夋嫨" size="small">
-                <el-option v-for="item in tableHeadFindData" :label="item.label" :value="item.prop"></el-option>
+                <el-option v-for="item in tableHeadFindData" :label="item.label" :value="item.prop" :key="item.id"></el-option>
               </el-select>
               <el-input v-model="WupinFindValue" placeholder="璇疯緭鍏ュ叧閿瓧鎸夊洖杞︽煡璇�"
                         size="small" style="width: 180px; margin-left: 5px; margin-top: 10px"
@@ -319,8 +319,9 @@
     },
     tableHeadFindData: {
       handler(newval, oldval) {
+        console.log('new',newval)
         newval.forEach((record, _index) => {
-          if (record.field == 'id' && validatenull(record.templet)) {
+          if (record.queryField == 'id' && validatenull(record.templet)) {
             //浼佷笟缂栫爜鐨勯粯璁ゆ坊鍔犺秴閾炬帴,鏆傛湭瀹炵幇
             record.formatter = '';
           } else {
@@ -335,10 +336,11 @@
           }
 
           if (_index == 0) {
-            this.keyWordFind = record.field
+            this.keyWordFind = record.queryField
           }
         })
         this.tableHeadFindDatas = newval;
+        // console.log('new',newval)
         this.WupinFindValue = ''
       },
     },
@@ -677,7 +679,7 @@
           this.List.forEach((item) => {
             let columnItem = {
               label: item.title,
-              prop: item.field,
+              prop: item.queryField,
               type: this.columnType[item.type],
               sortable: item.sort,
               width: item.minWidth,
@@ -705,6 +707,7 @@
     },
     // 鎺掑簭
     sortChange(val) {
+      console.log(val)
       this.isLoading = true;
       let order = "";
       if (val.order == "ascending") {
diff --git a/Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue b/Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue
index da4f9db..32c6fa2 100644
--- a/Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue
+++ b/Source/UBCS-WEB/src/components/Theme/ThemeAttrCrud.vue
@@ -639,6 +639,7 @@
         addBtn: false,
         header: false,
         align: 'center',
+        columnBtn:false,
         menuAlign: 'center',
         column: [{
           label: '',
@@ -1175,6 +1176,7 @@
       List: [],
       option: {
         index: false,
+        columnBtn:false,
         border: true,
         editBtn: false,
         selection: true,
diff --git a/Source/UBCS-WEB/src/components/Theme/ThemeClassifyTreeform.vue b/Source/UBCS-WEB/src/components/Theme/ThemeClassifyTreeform.vue
index 7079d17..05d7ba3 100644
--- a/Source/UBCS-WEB/src/components/Theme/ThemeClassifyTreeform.vue
+++ b/Source/UBCS-WEB/src/components/Theme/ThemeClassifyTreeform.vue
@@ -172,6 +172,7 @@
       ],
       SelectValue:'id',
       btmOption:{
+        columnBtn:false,
         addBtn:false,
         index:true,
         border:true,
@@ -195,6 +196,7 @@
       },
       Option:{
         addBtn:false,
+        columnBtn:false,
         index:true,
         border:true,
         menu:false,
@@ -258,7 +260,7 @@
       option: {
         submitBtn:false,
         emptyBtn:false,
-
+        columnBtn:false,
         column: [
           {
             label: '涓婚搴�/鍒嗙被缂栧彿',
diff --git a/Source/UBCS-WEB/src/components/Theme/ThemeClassifyTrees.vue b/Source/UBCS-WEB/src/components/Theme/ThemeClassifyTrees.vue
index 2ef787b..2a2a987 100644
--- a/Source/UBCS-WEB/src/components/Theme/ThemeClassifyTrees.vue
+++ b/Source/UBCS-WEB/src/components/Theme/ThemeClassifyTrees.vue
@@ -476,6 +476,7 @@
       Option: {
         addBtn: false,
         index: true,
+        columnBtn:false,
         border: true,
         menu: false,
         height: 380,
@@ -667,6 +668,7 @@
       CloneSelect: [],
       //鍏嬮殕妯℃澘option
       ClonecrudTreeOption: {
+        columnBtn:false,
         index: true,
         border: true,
         menu: false,
@@ -781,6 +783,7 @@
       return {
         index: true,
         border: true,
+        columnBtn:false,
         height: 180,
         addBtn: this.Formlist.length <= 0 && this.nodeClickList != "",
         editBtn: false,
diff --git a/Source/UBCS-WEB/src/components/refer/vciWebReferDefalut.vue b/Source/UBCS-WEB/src/components/refer/vciWebReferDefalut.vue
index fb07d01..28fad1b 100644
--- a/Source/UBCS-WEB/src/components/refer/vciWebReferDefalut.vue
+++ b/Source/UBCS-WEB/src/components/refer/vciWebReferDefalut.vue
@@ -63,6 +63,7 @@
       selectionList: [],
       option: {
         addBtn: false,
+        columnBtn:false,
         //height: this.referConfig.options.height ? this.referConfig.options.height : 475,
         calcHeight: 30,
         tip: false,
diff --git a/Source/UBCS-WEB/src/components/refer/vciWebReferTable.vue b/Source/UBCS-WEB/src/components/refer/vciWebReferTable.vue
index 65775e1..9474f0d 100644
--- a/Source/UBCS-WEB/src/components/refer/vciWebReferTable.vue
+++ b/Source/UBCS-WEB/src/components/refer/vciWebReferTable.vue
@@ -65,6 +65,7 @@
       selectionList: [],
       option: {
         addBtn: false,
+        columnBtn:false,
         height: this.referConfig.options.height ? this.referConfig.options.height : 475,
         calcHeight: 30,
         tip: false,
diff --git a/Source/UBCS-WEB/src/const/code/codeKeyAttrRepeat.js b/Source/UBCS-WEB/src/const/code/codeKeyAttrRepeat.js
index 9a46633..4aba109 100644
--- a/Source/UBCS-WEB/src/const/code/codeKeyAttrRepeat.js
+++ b/Source/UBCS-WEB/src/const/code/codeKeyAttrRepeat.js
@@ -1,6 +1,7 @@
 export default {
   height:'auto',
   calcHeight: 20,
+  columnBtn:false,
   tip: false,
   searchShow: true,
   searchMenuSpan: 6,
@@ -208,13 +209,11 @@
       type: "input",
       search: true,
       labelWidth : 110,
-
       rules: [{
         required: true,
         message: "璇疯緭鍏ヨ鍒欑紪鍙�",
         trigger: "blur"
       }],
-      labelWidth:120
     },
     {
       label: "瑙勫垯鍚嶇О",
@@ -227,7 +226,6 @@
         message: "璇疯緭鍏ヨ鍒欏悕绉�",
         trigger: "blur"
       }],
-      labelWidth:120
     },
     {
       label: "鎻忚堪",
@@ -240,7 +238,6 @@
         message: "璇疯緭鍏ユ弿杩�",
         trigger: "blur"
       }],
-      labelWidth:120
     },
     {
       label: "",
@@ -277,7 +274,6 @@
         message: "璇疯緭鍏ュ拷鐣ュぇ灏忓啓",
         trigger: "blur"
       }],
-      labelWidth:120
     },
     {
       label: "蹇界暐绌烘牸",
@@ -296,7 +292,6 @@
         message: "璇疯緭鍏ュ拷鐣ョ┖鏍�",
         trigger: "blur"
       }],
-      labelWidth:120
     },
     {
       label: "蹇界暐鍏ㄩ儴绌烘牸",
@@ -315,7 +310,6 @@
         message: "璇疯緭鍏ュ拷鐣ュ叏閮ㄧ┖鏍�",
         trigger: "blur"
       }],
-      labelWidth:120
     },
     {
       label: "蹇界暐鍏ㄥ崐瑙�",
@@ -334,7 +328,6 @@
         message: "璇疯緭鍏ュ拷鐣ュ叏鍗婅",
         trigger: "blur"
       }],
-      labelWidth:120
     },
   ]
 }
diff --git a/Source/UBCS-WEB/src/const/code/codeSynonym.js b/Source/UBCS-WEB/src/const/code/codeSynonym.js
index f4d67cd..2823087 100644
--- a/Source/UBCS-WEB/src/const/code/codeSynonym.js
+++ b/Source/UBCS-WEB/src/const/code/codeSynonym.js
@@ -3,6 +3,7 @@
   calcHeight: 20,
   tip: false,
   searchShow: true,
+  columnBtn:false,
   searchMenuSpan: 6,
   searchLabelWidth:120,
   border: true,
diff --git a/Source/UBCS-WEB/src/const/omd/enum.js b/Source/UBCS-WEB/src/const/omd/enum.js
index bd33829..0c5f011 100644
--- a/Source/UBCS-WEB/src/const/omd/enum.js
+++ b/Source/UBCS-WEB/src/const/omd/enum.js
@@ -1,6 +1,7 @@
 export const optionParent = {
   height: 'auto',
   calcHeight: 20,
+  columnBtn:false,
   tip: false,
   searchShow: true,
   searchMenuSpan: 10,
diff --git a/Source/UBCS-WEB/src/const/tool/model.js b/Source/UBCS-WEB/src/const/tool/model.js
index be943fb..9e6640e 100644
--- a/Source/UBCS-WEB/src/const/tool/model.js
+++ b/Source/UBCS-WEB/src/const/tool/model.js
@@ -140,6 +140,7 @@
   tip: false,
   border: true,
   index: true,
+  columnBtn:false,
   viewBtn: true,
   selection: true,
   menuWidth: 250,
diff --git a/Source/UBCS-WEB/src/views/desk/notice.vue b/Source/UBCS-WEB/src/views/desk/notice.vue
index edf9bea..c3416d3 100644
--- a/Source/UBCS-WEB/src/views/desk/notice.vue
+++ b/Source/UBCS-WEB/src/views/desk/notice.vue
@@ -55,6 +55,7 @@
           height: 'auto',
           calcHeight: 30,
           dialogWidth: 950,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/docking/data.vue b/Source/UBCS-WEB/src/views/docking/data.vue
index 1e14d7a..2118a26 100644
--- a/Source/UBCS-WEB/src/views/docking/data.vue
+++ b/Source/UBCS-WEB/src/views/docking/data.vue
@@ -88,6 +88,7 @@
     option: {
       height:'auto',
       calcHeight: 0,
+      columnBtn:false,
       tip: false,
       searchShow: false,
       searchShowBtn:false,
diff --git a/Source/UBCS-WEB/src/views/docking/info.vue b/Source/UBCS-WEB/src/views/docking/info.vue
index acfbe07..eaf994b 100644
--- a/Source/UBCS-WEB/src/views/docking/info.vue
+++ b/Source/UBCS-WEB/src/views/docking/info.vue
@@ -93,6 +93,7 @@
       option: {
         height: "auto",
         calcHeight: 20,
+        columnBtn:false,
         tip: false,
         headerAlign: "center",
         border: true,
diff --git a/Source/UBCS-WEB/src/views/docking/loge.vue b/Source/UBCS-WEB/src/views/docking/loge.vue
index ff50556..9964c04 100644
--- a/Source/UBCS-WEB/src/views/docking/loge.vue
+++ b/Source/UBCS-WEB/src/views/docking/loge.vue
@@ -118,6 +118,7 @@
       option: {
         height:'auto',
         calcHeight: 0,
+        columnBtn:false,
         tip: false,
         searchShow: false,
         border: true,
diff --git a/Source/UBCS-WEB/src/views/docking/task.vue b/Source/UBCS-WEB/src/views/docking/task.vue
index 81df647..4e83ecd 100644
--- a/Source/UBCS-WEB/src/views/docking/task.vue
+++ b/Source/UBCS-WEB/src/views/docking/task.vue
@@ -120,6 +120,7 @@
       option: {
         height:'auto',
         calcHeight: 0,
+        columnBtn:false,
         tip: false,
         searchShow: false,
         searchShowBtn:false,
diff --git a/Source/UBCS-WEB/src/views/flow/deploy.vue b/Source/UBCS-WEB/src/views/flow/deploy.vue
index a0247f9..2418f60 100644
--- a/Source/UBCS-WEB/src/views/flow/deploy.vue
+++ b/Source/UBCS-WEB/src/views/flow/deploy.vue
@@ -19,6 +19,7 @@
         },
         option: {
           labelWidth: 120,
+          columnBtn:false,
           menuBtn: false,
           column: [
             {
diff --git a/Source/UBCS-WEB/src/views/flow/follow.vue b/Source/UBCS-WEB/src/views/flow/follow.vue
index 4e4f44d..142fa90 100644
--- a/Source/UBCS-WEB/src/views/flow/follow.vue
+++ b/Source/UBCS-WEB/src/views/flow/follow.vue
@@ -66,6 +66,7 @@
         option: {
           height: 'auto',
           calcHeight: 30,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/flow/manager.vue b/Source/UBCS-WEB/src/views/flow/manager.vue
index 6679dbb..af5c5c4 100644
--- a/Source/UBCS-WEB/src/views/flow/manager.vue
+++ b/Source/UBCS-WEB/src/views/flow/manager.vue
@@ -120,6 +120,7 @@
         option: {
           height: 'auto',
           calcHeight: 30,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/flow/model.vue b/Source/UBCS-WEB/src/views/flow/model.vue
index 2002b18..07f8b4b 100644
--- a/Source/UBCS-WEB/src/views/flow/model.vue
+++ b/Source/UBCS-WEB/src/views/flow/model.vue
@@ -203,6 +203,7 @@
       option: {
         height: 'auto',
         calcHeight: 30,
+        columnBtn:false,
         tip: false,
         searchShow: true,
         searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/modeling/cycle.vue b/Source/UBCS-WEB/src/views/modeling/cycle.vue
index a955a73..121b51f 100644
--- a/Source/UBCS-WEB/src/views/modeling/cycle.vue
+++ b/Source/UBCS-WEB/src/views/modeling/cycle.vue
@@ -113,6 +113,7 @@
       option: {
         height:'auto',
         calcHeight:20,
+        columnBtn:false,
         tip:false,
         selection: true,
         searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/modeling/status.vue b/Source/UBCS-WEB/src/views/modeling/status.vue
index 134e5f1..07682c7 100644
--- a/Source/UBCS-WEB/src/views/modeling/status.vue
+++ b/Source/UBCS-WEB/src/views/modeling/status.vue
@@ -60,6 +60,7 @@
           calcHeight:20,
           headerAlign:'center',
           align: 'center',
+          columnBtn:false,
           border: true,
           index: true,
           searchMenuSpan:5,
diff --git a/Source/UBCS-WEB/src/views/monitor/log/api.vue b/Source/UBCS-WEB/src/views/monitor/log/api.vue
index bef4765..430daed 100644
--- a/Source/UBCS-WEB/src/views/monitor/log/api.vue
+++ b/Source/UBCS-WEB/src/views/monitor/log/api.vue
@@ -37,6 +37,7 @@
         option: {
           height: 'auto',
           calcHeight: 30,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/monitor/log/error.vue b/Source/UBCS-WEB/src/views/monitor/log/error.vue
index 3196839..f27b429 100644
--- a/Source/UBCS-WEB/src/views/monitor/log/error.vue
+++ b/Source/UBCS-WEB/src/views/monitor/log/error.vue
@@ -37,6 +37,7 @@
         option: {
           height: 'auto',
           calcHeight: 30,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/monitor/log/usual.vue b/Source/UBCS-WEB/src/views/monitor/log/usual.vue
index 329f77b..a467237 100644
--- a/Source/UBCS-WEB/src/views/monitor/log/usual.vue
+++ b/Source/UBCS-WEB/src/views/monitor/log/usual.vue
@@ -37,6 +37,7 @@
         option: {
           height: 'auto',
           calcHeight: 30,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/report/reportlist.vue b/Source/UBCS-WEB/src/views/report/reportlist.vue
index fe55a5a..953ce0b 100644
--- a/Source/UBCS-WEB/src/views/report/reportlist.vue
+++ b/Source/UBCS-WEB/src/views/report/reportlist.vue
@@ -68,6 +68,7 @@
       option: {
         height: 'auto',
         calcHeight: 30,
+        columnBtn:false,
         tip: false,
         searchShow: true,
         searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/resource/attach.vue b/Source/UBCS-WEB/src/views/resource/attach.vue
index a0b1b7c..133b9ef 100644
--- a/Source/UBCS-WEB/src/views/resource/attach.vue
+++ b/Source/UBCS-WEB/src/views/resource/attach.vue
@@ -73,6 +73,7 @@
         attachBox: false,
         selectionList: [],
         option: {
+          columnBtn:false,
           height: 'auto',
           calcHeight: 30,
           tip: false,
diff --git a/Source/UBCS-WEB/src/views/resource/oss.vue b/Source/UBCS-WEB/src/views/resource/oss.vue
index 17dd807..a4c60c5 100644
--- a/Source/UBCS-WEB/src/views/resource/oss.vue
+++ b/Source/UBCS-WEB/src/views/resource/oss.vue
@@ -78,6 +78,7 @@
         },
         selectionList: [],
         option: {
+          columnBtn:false,
           height: 'auto',
           calcHeight: 30,
           tip: false,
diff --git a/Source/UBCS-WEB/src/views/resource/sms.vue b/Source/UBCS-WEB/src/views/resource/sms.vue
index ede08ce..80b42d7 100644
--- a/Source/UBCS-WEB/src/views/resource/sms.vue
+++ b/Source/UBCS-WEB/src/views/resource/sms.vue
@@ -78,6 +78,7 @@
         },
         selectionList: [],
         option: {
+          columnBtn:false,
           height: 'auto',
           calcHeight: 30,
           tip: false,
diff --git a/Source/UBCS-WEB/src/views/system/user.vue b/Source/UBCS-WEB/src/views/system/user.vue
index 80d027e..2f8470c 100644
--- a/Source/UBCS-WEB/src/views/system/user.vue
+++ b/Source/UBCS-WEB/src/views/system/user.vue
@@ -346,7 +346,7 @@
               required: true,
               message: "璇烽�夋嫨鐢ㄦ埛骞冲彴",
               trigger: "blur"
-            }]
+            }],
           },
         ],
         group: [
@@ -393,6 +393,7 @@
                   label: "dictValue",
                   value: "dictKey"
                 },
+                value:'1',
                 dataType: "number",
                 slot: true,
                 prop: "userType",
diff --git a/Source/UBCS-WEB/src/views/tool/code.vue b/Source/UBCS-WEB/src/views/tool/code.vue
index bfc79ce..76c0e36 100644
--- a/Source/UBCS-WEB/src/views/tool/code.vue
+++ b/Source/UBCS-WEB/src/views/tool/code.vue
@@ -69,6 +69,7 @@
           height: 'auto',
           calcHeight: 30,
           dialogWidth: 900,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/tool/datasource.vue b/Source/UBCS-WEB/src/views/tool/datasource.vue
index 9516941..97870d1 100644
--- a/Source/UBCS-WEB/src/views/tool/datasource.vue
+++ b/Source/UBCS-WEB/src/views/tool/datasource.vue
@@ -51,6 +51,7 @@
           height: 'auto',
           calcHeight: 30,
           dialogWidth: 900,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/work/claim.vue b/Source/UBCS-WEB/src/views/work/claim.vue
index fc71ffd..a00293c 100644
--- a/Source/UBCS-WEB/src/views/work/claim.vue
+++ b/Source/UBCS-WEB/src/views/work/claim.vue
@@ -68,6 +68,7 @@
           calcHeight: 0,
           tip: false,
           simplePage: true,
+          columnBtn:false,
           searchShow: true,
           searchMenuSpan: 6,
           border: true,
diff --git a/Source/UBCS-WEB/src/views/work/done.vue b/Source/UBCS-WEB/src/views/work/done.vue
index 9d3d6e2..3f4a3ea 100644
--- a/Source/UBCS-WEB/src/views/work/done.vue
+++ b/Source/UBCS-WEB/src/views/work/done.vue
@@ -62,6 +62,7 @@
           height: 'auto',
           calcHeight: 0,
           tip: false,
+          columnBtn:false,
           searchShow: true,
           searchMenuSpan: 6,
           border: true,
diff --git a/Source/UBCS-WEB/src/views/work/send.vue b/Source/UBCS-WEB/src/views/work/send.vue
index f44dc18..77c1bae 100644
--- a/Source/UBCS-WEB/src/views/work/send.vue
+++ b/Source/UBCS-WEB/src/views/work/send.vue
@@ -65,6 +65,7 @@
         option: {
           height: 'auto',
           calcHeight: 20,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/work/start.vue b/Source/UBCS-WEB/src/views/work/start.vue
index 7451c91..e0a034b 100644
--- a/Source/UBCS-WEB/src/views/work/start.vue
+++ b/Source/UBCS-WEB/src/views/work/start.vue
@@ -80,6 +80,7 @@
         option: {
           height: 'auto',
           calcHeight: 20,
+          columnBtn:false,
           tip: false,
           searchShow: true,
           searchMenuSpan: 6,
diff --git a/Source/UBCS-WEB/src/views/work/todo.vue b/Source/UBCS-WEB/src/views/work/todo.vue
index 35f7281..3614a87 100644
--- a/Source/UBCS-WEB/src/views/work/todo.vue
+++ b/Source/UBCS-WEB/src/views/work/todo.vue
@@ -67,6 +67,7 @@
         option: {
           height: 'auto',
           calcHeight: 0,
+          columnBtn:false,
           tip: false,
           simplePage: true,
           searchShow: true,

--
Gitblit v1.9.3