fix:修改asset connect点击报错 ,panel-addByTemplate穿梭框,varIds传参不正确,以及assetmodel编辑框中chart-template回显问题
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
<!-- ChartTemplate -->
|
||||
<el-form-item :label="$t('config.model.ChartTemplate')" prop="ChartTemplate">
|
||||
<v-selectpage
|
||||
:data="'visual/panel/chart'"
|
||||
:data="chartlList"
|
||||
:tb-columns="ChartSearchShowFields"
|
||||
:params="{
|
||||
varType: 1, panelId: 0,
|
||||
@@ -115,7 +115,7 @@ export default {
|
||||
},
|
||||
created () {
|
||||
this.getBrandList()
|
||||
// this.ChartTemplateList()
|
||||
this.ChartTemplateList()
|
||||
},
|
||||
methods: {
|
||||
clickOutside () {
|
||||
@@ -198,13 +198,13 @@ export default {
|
||||
assetData.totalRow = resp.data.total
|
||||
return assetData
|
||||
}
|
||||
}
|
||||
},
|
||||
/* 获取chart列表数据 */
|
||||
// ChartTemplateList () {
|
||||
// this.$get('visual/panel/chart', { pageSize: -1, varType: 1, panelId: 0 }).then(res => {
|
||||
// this.chartlList = res.data.list
|
||||
// })
|
||||
// }
|
||||
ChartTemplateList () {
|
||||
this.$get('visual/panel/chart', { pageSize: -1, varType: 1, panelId: 0, groupId: 0 }).then(res => {
|
||||
this.chartlList = res.data.list
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -228,7 +228,7 @@ export default {
|
||||
} else if (this.from === fromRoute.endpoint) { // 来自endpoint时取endpointId
|
||||
this.editChartTemp.varIds = this.obj.varIds
|
||||
} else {
|
||||
this.editChartTemp.varIds = this.transfer.selectedData.map(item => item.id)
|
||||
this.editChartTemp.varIds = this.$refs.transfer.selectedData.map(item => item.id)
|
||||
}
|
||||
this.$refs.userForm.validate((valid) => {
|
||||
if (valid) {
|
||||
|
||||
@@ -88,7 +88,7 @@
|
||||
<el-form-item :label="$t('config.model.ChartTemplate')" prop="ChartTemplate">
|
||||
<v-selectpage
|
||||
v-model="editModule.chartIds"
|
||||
:data="'visual/panel/chart'"
|
||||
:data="chartlList"
|
||||
:language="language"
|
||||
:multiple="true"
|
||||
:params="{
|
||||
@@ -648,14 +648,14 @@ export default {
|
||||
},
|
||||
/* 获取chart列表数据 */
|
||||
ChartTemplateList () {
|
||||
this.$get('visual/panel/chart', { pageSize: -1, varType: 2, panelId: 0 }).then(res => {
|
||||
this.$get('visual/panel/chart', { pageSize: -1, varType: 2, panelId: 0, returnChildren: 0, groupId: 0 }).then(res => {
|
||||
this.chartlList = res.data.list
|
||||
})
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.getWalkData()
|
||||
// this.ChartTemplateList()
|
||||
this.ChartTemplateList()
|
||||
},
|
||||
created () {
|
||||
this.getProjectList()
|
||||
|
||||
Reference in New Issue
Block a user