zhaoke 1 жил өмнө
parent
commit
05b159805d

+ 1 - 4
src/components/AuthInstall/index.vue

@@ -13,7 +13,7 @@
       </el-row>
     </el-radio-group>
     <div style="margin-top: 20px;" class="manageTitle">请选择数据表</div>
-    <el-radio-group style="width: 100%;margin-top: 20px;" @change="tableChange" v-model="tableinfo" size="small">
+    <el-radio-group style="width: 100%;margin-top: 20px;" v-model="tableinfo" size="small">
       <el-row :gutter="20">
         <el-col style="margin-bottom: 20px;" v-for="(item,index) in selectTable" :key="index" :span="8">
           <el-radio :label="item" border>
@@ -79,9 +79,6 @@ export default {
     },
     groupChange (val) {
       this.getTableData(val)
-    },
-    tableChange (val) {
-      console.log(val)
     }
   }
 }

+ 12 - 11
src/views/dataAccessPage/components/accessPageNode.vue

@@ -191,18 +191,19 @@ export default {
         } else {
           const { targetsource } = this.nodeItems[index]
           const nextItems = _.cloneDeep(this.nodeItems)
-          if (!targetsource) return
-          const [a, b] = targetsource.split('')
-          this.nodeIndex = a + (Number(b) + 1)
-          nextItems.map(item => {
-            if (item.targetsource) {
-              const [c, d] = item.targetsource.split('')
-              if (c == a && Number(d) > Number(b)) {
-                item.targetsource = c + (Number(d) + 1)
-                this.lowerItems.push(item)
+          if (targetsource) {
+            const [a, b] = targetsource.split('')
+            this.nodeIndex = a + (Number(b) + 1)
+            nextItems.map(item => {
+              if (item.targetsource) {
+                const [c, d] = item.targetsource.split('')
+                if (c == a && Number(d) > Number(b)) {
+                  item.targetsource = c + (Number(d) + 1)
+                  this.lowerItems.push(item)
+                }
               }
-            }
-          })
+            })
+          }
         }
         this.type = 'add'
         this.advancedDrawer = true

+ 14 - 6
src/views/dataAccessPage/components/nodeTable.vue

@@ -7,14 +7,14 @@
             <el-input size="small" v-model="scope.row.parametername" placeholder="请输入参数名" />
           </template>
         </el-table-column>
-        <el-table-column prop="datasource" label="参数类型">
+        <el-table-column prop="datasource" label="数据来源">
           <template slot-scope="scope">
             <el-select size="small" v-model="scope.row.datasource" placeholder="请选择">
               <el-option v-for="(item,index) in datasources" :key="index" :label="item.name" :value="formatString(item.id)"></el-option>
             </el-select>
           </template>
         </el-table-column>
-        <el-table-column prop="parametertype" label="数据来源">
+        <el-table-column prop="parametertype" label="参数类型">
           <template slot-scope="scope">
             <el-select size="small" v-model="scope.row.parametertype" placeholder="请选择">
               <el-option v-for="(item,index) in datatypes" :key="index" :label="item.name" :value="item.id"></el-option>
@@ -35,14 +35,14 @@
             <el-input size="small" v-model="scope.row.name" placeholder="请输入参数名" />
           </template>
         </el-table-column>
-        <el-table-column prop="datasource" label="参数类型">
+        <el-table-column prop="datasource" label="数据来源">
           <template slot-scope="scope">
             <el-select size="small" v-model="scope.row.datasource" placeholder="请选择">
               <el-option v-for="(item,index) in datasources" :key="index" :label="item.name" :value="formatString(item.id)"></el-option>
             </el-select>
           </template>
         </el-table-column>
-        <el-table-column prop="datatype" label="数据来源">
+        <el-table-column prop="datatype" label="参数类型">
           <template slot-scope="scope">
             <el-select size="small" v-model="scope.row.datatype" placeholder="请选择">
               <el-option v-for="(item,index) in datatypes" :key="index" :label="item.name" :value="item.id"></el-option>
@@ -106,10 +106,18 @@ export default {
     setFormSelectData (name, returnData) {
       switch (name) {
         case 'datasource':
-          this.datasources = [...returnData]
+          if (typeof returnData == 'string') {
+            this.datasources = JSON.parse(returnData)
+          } else {
+            this.datasources = [...returnData]
+          }
           break;
         case 'datatype':
-          this.datatypes = [...returnData]
+          if (typeof returnData == 'string') {
+            this.datatypes = JSON.parse(returnData)
+          } else {
+            this.datatypes = [...returnData]
+          }
           break;
         case 'tabledata':
           this.tableData = [...returnData]