fix: bug修复、优化
1.endpoint、module param的null异常 2.model-panel-chart展示静态数据 3.chart纵坐标刻度异常,有多个“1” 4.asset-endpoint二级列表的operation列隐藏 5.panel接口不需要分页参数
This commit is contained in:
@@ -468,7 +468,7 @@
|
||||
});
|
||||
},
|
||||
panelReloadOnlyPanel() { //仅刷新panel数据
|
||||
this.$get('panel?pageNo=1&pageSize=-1').then(response => {
|
||||
this.$get('panel').then(response => {
|
||||
if (response.code === 200) {
|
||||
this.panelData = response.data.list;
|
||||
for (let i = 0; i < this.panelData.length; i++) {
|
||||
@@ -481,7 +481,7 @@
|
||||
});
|
||||
},
|
||||
getTableData: function (clearShowPanel) {
|
||||
this.$get('panel?pageNo=1&pageSize=-1').then(response => {
|
||||
this.$get('panel').then(response => {
|
||||
if (response.code === 200) {
|
||||
this.panelData = response.data.list;
|
||||
let isInitData = false;
|
||||
|
||||
Reference in New Issue
Block a user