chenjun 1 year ago
parent
commit
10b4d4a5d9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/dataAccessPage/components/accessPageForm.vue

+ 2 - 2
src/views/dataAccessPage/components/accessPageForm.vue

@@ -21,7 +21,7 @@
             <el-input size="small" v-model="tableForm.algorithmname" placeholder="请输入" />
           </el-form-item>
         </el-col>
-        <el-col v-if="formatData(tableForm.algorithmtype) == 'java' || formatData(tableForm.algorithmtype) == 'db' || formatData(tableForm.algorithmtype) == 'kafka'" :span="24">
+        <el-col v-if="formatData(tableForm.algorithmtype) == 'java' || formatData(tableForm.algorithmtype) == 'db' || formatData(tableForm.algorithmtype) == 'kafka' || formatData(tableForm.algorithmtype) == 'js'" :span="24">
           <el-form-item prop="algorithmsourcelibraryid" label="算法模版">
             <el-select size="small" v-model="tableForm.algorithmsourcelibraryid" placeholder="请选择">
               <el-option v-for="(item,index) in selectAlgorithm" :key="index" :label="item.name" :value="item.id"></el-option>
@@ -182,7 +182,7 @@ export default {
           const nstr = _.cloneDeep(code).toString().toLocaleLowerCase()
           const item = this.selectType.filter(item => item.code == code)
           const id = item[0].id
-          if (nstr == 'java' || nstr == 'db' || nstr == 'kafka') {
+          if (nstr == 'java' || nstr == 'db' || nstr == 'kafka'|| nstr == 'js') {
             this.tableForm.algorithmname = ''
             this.tableForm.datasourceid = ''
             this.getSelectData('algorithmname', 20, { superiorid: id })