From 7e312ecf7100ca8931421e6200a145e6f26bc20e Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期四, 31 八月 2023 11:01:04 +0800
Subject: [PATCH] 接口基本信息管理-启用停用

---
 Source/UBCS-WEB/src/views/docking/info.vue |   86 ++++++++++++++++++++++++++++--------------
 1 files changed, 57 insertions(+), 29 deletions(-)

diff --git a/Source/UBCS-WEB/src/views/docking/info.vue b/Source/UBCS-WEB/src/views/docking/info.vue
index 915759b..efed36f 100644
--- a/Source/UBCS-WEB/src/views/docking/info.vue
+++ b/Source/UBCS-WEB/src/views/docking/info.vue
@@ -8,11 +8,11 @@
                    @selection-change="selectionChange"
                    @current-change="currentChange"
                    @size-change="sizeChange"
-                   @refresh-change="refreshChange" @row-click="rowClick">
+                   @refresh-change="refreshChange" @row-click="rowClick" :cell-style="cellStyle">
           <template slot="menu" slot-scope="{row,index}">
-            <el-button icon="el-icon-edit" size="small" type="text" @click="updateSave(row,index)">缂栬緫</el-button>
+            <el-button icon="el-icon-edit" size="small" type="text" @click="updateSave(row,index)" :disabled="row.usedFlag === 'true' ? false :true">缂栬緫</el-button>
             <el-button icon="el-icon-delete" size="small" type="text" @click="deleteSave(row,index)">鍒犻櫎</el-button>
-            <el-button v-if="row.usedflag=='false'" icon="el-icon-position" size="small" type="text"
+            <el-button v-if="row.usedFlag=='false' || row.usedFlag==''" icon="el-icon-position" size="small" type="text"
                        @click="ENABLE(row,index)">鍚敤
             </el-button>
             <el-button v-else icon="el-icon-finished" size="small" type="text" @click="DISABLE(row,index)">鍋滅敤
@@ -111,16 +111,27 @@
         delBtn: false,
         columnBtn: false,
         column: [ {
+          label: '鏄惁鍚敤',
+          prop: 'usedFlag',
+          width: 150,
+          formatter: res => res.usedFlag === "true" ? "鍚敤" : "鍋滅敤"
+        },{
           label: '闆嗘垚绯荤粺',
           prop: 'sysBaseName',
           sortable: true,
+          width: 150
+        },{
+          label: '鍒嗙被閫夋嫨',
+          prop: 'classifyName',
+          align:'center',
+          // sortable: true,
           width: 150
         },{
           label: '缂栫爜绫诲瀷',
           prop: 'isGroupCodeFlag',
           sortable: true,
           width: 150,
-          formatter: d => d.isGroupCodeFlag ? '闆嗗洟鐮�' : '浼佷笟缂栫爜'
+          formatter: res => res.isGroupCodeFlag ? '闆嗗洟鐮�' : '浼佷笟缂栫爜'
         },{
           label: '鎺ュ彛绫诲瀷',
           prop:'dataFlowTypeText',
@@ -149,23 +160,6 @@
           prop: 'name',
           hide:true,
           sortable: true,
-          width: 150
-        }, {
-          label: '鎺ュ彛鍑芥暟',
-          prop: 'interfaceFunction',
-          sortable: true,
-          align:'center',
-          width: 150
-        }, {
-          label: '鍛藉悕绌洪棿',
-          prop: 'nameSpace',
-          sortable: true,
-          width: 150
-        },{
-          label: '鍒嗙被閫夋嫨',
-          prop: 'classifyName',
-          align:'center',
-          // sortable: true,
           width: 150
         },{
           label: '鎺ュ彛鏂瑰紡',
@@ -198,9 +192,15 @@
           prop: 'requestUrl',
           sortable: true,
           width: 150
+        },  {
+          label: '鎺ュ彛鍑芥暟',
+          prop: 'interfaceFunction',
+          sortable: true,
+          align:'center',
+          width: 150
         }, {
             label: '鍙傛暟鍚嶇О',
-            prop: 'targName',
+            prop: 'targetName',
             sortable: true,
             width: 150
           },{
@@ -220,6 +220,11 @@
             return this.returnTypeList[d.returnType]
           }
         }, {
+          label: '鍛藉悕绌洪棿',
+          prop: 'nameSpace',
+          sortable: true,
+          width: 150
+        },{
           label: '绯荤粺鎻忚堪',
           prop: 'description',
           width: 150
@@ -246,7 +251,27 @@
       return oids.join(",");
     }
   },
+  watch:{
+    // editAttribute:{
+    //   immediate: true,
+    //   handler(newData) {
+    //     this.$refs.infoForm.formData  = Object.assign({}, newData);
+    //   }
+    // }
+  },
   methods: {
+    //鍗曞厓鏍兼牱寮�
+    cellStyle(row,column,rowIndex,columnIndex){
+      if(row.columnIndex==2) {
+        if(row.row.usedFlag == '' || row.row.usedFlag == 'false'){
+          return {
+            color: 'red',
+            fontWeight: 'bold',
+            fontSize: '20'
+          }
+        }
+      }
+    },
     searchReset() {
       this.query = {};
       this.onLoad(this.page);
@@ -282,11 +307,11 @@
     addSave() {
       this.$refs.infoForm.showSubmitDialog = true;
       this.$refs.infoForm.formData = {
-        dataFlowType: 'push',
-        pushType: '1',
-        sourceSystemName: '缂栫爜绯荤粺',
-        sourceSystemOid: 'code00000001',
-        sourceSystemId: 'CODE',
+        dataFlowType: '',
+        pushType: '',
+        sourceSystemName: '',
+        sourceSystemOid: '',
+        sourceSystemId: '',
         targetSystemName: '',
         targetSystemOid: '',
         targetSystemId: '',
@@ -299,8 +324,11 @@
       this.editAttribute = row;
       this.editAttribute.sysIntParamVOs = row.sysIntParamVOs || [];
       this.editAttribute.sysIntHeaderVOs = row.sysIntHeaderVOs || [];
+      this.editAttribute.type = 'edit';
       this.$refs.infoForm.formData = this.editAttribute;
       this.$refs.infoForm.showSubmitDialog = true;
+      // console.log('row',this.editAttribute.pushType)
+      // console.log('editAttribute',this.editAttribute.dataFlowTypeText)
     },
     deleteSave(row, index) {
       this.$confirm("鍒犻櫎鏁版嵁灏嗘棤娉曡鎭㈠, 鏄惁缁х画?", "鎻愮ず", {
@@ -390,7 +418,7 @@
         //   interfaceFunction:'',
         //   nameSpace:'',
         //   soapAction:'',
-        //   targName:'',
+        //   targetName:'',
         //   cxfaxis:''
         // };
         // this.pushTypeList.forEach(item => {
@@ -440,7 +468,7 @@
         fieldType: 'text'
       }, {
         title: '鍙傛暟鍚嶇О',
-        queryField: 'targName',
+        queryField: 'targetName',
         fieldType: 'text'
       }, {
         title: '璋冪敤鏂瑰紡',

--
Gitblit v1.9.3