|
@@ -23,7 +23,10 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="subscriptionexpressions" label="参数订阅规则">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input size="small" v-model="scope.row.subscriptionexpressions" placeholder="请输入参数订阅规则" />
|
|
|
+ <el-select v-if="scope.row.datasourcekey" size="small" v-model="scope.row.subscriptionexpressions" placeholder="请选择">
|
|
|
+ <el-option v-for="(item,index) in subsCols" :key="index" :label="item.datasourcedescribe" :value="formatString(item.datasourceid)"></el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-input v-else size="small" v-model="scope.row.subscriptionexpressions" placeholder="请输入参数订阅规则" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -51,7 +54,10 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="code" label="参数订阅规则">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input size="small" v-model="scope.row.code" placeholder="请输入参数订阅规则" />
|
|
|
+ <el-select v-if="scope.row.datasourcekey" size="small" v-model="scope.row.code" placeholder="请选择">
|
|
|
+ <el-option v-for="(item,index) in subsCols" :key="index" :label="item.datasourcedescribe" :value="formatString(item.datasourceid)"></el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-input v-else size="small" v-model="scope.row.code" placeholder="请输入参数订阅规则" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -60,14 +66,13 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { getTableCols } from '@/utils/validate'
|
|
|
import { getQueryData } from '../utils/index'
|
|
|
export default {
|
|
|
name: 'NodeTable',
|
|
|
props: ['queryId', 'type'],
|
|
|
data () {
|
|
|
return {
|
|
|
- tableCols: [],
|
|
|
+ subsCols: [],
|
|
|
tableData: [],
|
|
|
datasources: [],
|
|
|
datatypes: []
|
|
@@ -86,9 +91,6 @@ export default {
|
|
|
immediate: true
|
|
|
}
|
|
|
},
|
|
|
- mounted () {
|
|
|
- this.tableCols = getTableCols(233)
|
|
|
- },
|
|
|
methods: {
|
|
|
async getTableData (pagecode, id, datacontent) {
|
|
|
const { code, returnData } = await getQueryData(id, datacontent)
|
|
@@ -97,6 +99,7 @@ export default {
|
|
|
if (pagecode == 'tabledata') {
|
|
|
this.getTableData('datasource', 19, { type: "datasource" })
|
|
|
this.getTableData('datatype', 19, { type: "algorithmlibraryParamenterType" })
|
|
|
+ this.getTableData('subs', 12, { 1: 1 })
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -122,6 +125,9 @@ export default {
|
|
|
case 'tabledata':
|
|
|
this.tableData = [...returnData]
|
|
|
break;
|
|
|
+ case 'subs':
|
|
|
+ this.subsCols = [...returnData]
|
|
|
+ break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|