feat:修改 panel页面 pageSize未传的问题 以及chartTemp的预览

This commit is contained in:
zhangyu
2021-04-25 14:58:03 +08:00
parent 73f34335a2
commit 9490f5c309
16 changed files with 1703 additions and 107 deletions

View File

@@ -642,7 +642,7 @@ export default {
this.panelName = panel.name
this.panelId = panel.id
this.editChart.groupId = ''
this.$get('visual/panel/chart?panelId=' + this.panelId).then(response => {
this.$get('visual/panel/chart?panelId=' + this.panelId + '&pageSize=-1').then(response => {
if (response.code === 200) {
this.groupArr = []
response.data.list.forEach((item, index) => {
@@ -1784,7 +1784,7 @@ export default {
if (this.showPanel.id || this.from === 'temp') {
this.panelId = this.showPanel.id
}
this.$get('visual/panel/chart?panelId=' + this.panelId).then(response => {
this.$get('visual/panel/chart?panelId=' + this.panelId + '&pageSize=-1').then(response => {
if (response.code === 200) {
this.groupArr = []
response.data.list.forEach((item, index) => {