Merge branch 'dev' into vite

# Conflicts:
#	examples/router/autoRoutes.js
#	package.json
#	packages/bigscreen/designer/components/Add.vue
#	project/dv/apps/AppGridDV.vue
#	vue.config.js
This commit is contained in:
aixianling
2022-08-23 11:14:38 +08:00
125 changed files with 15445 additions and 4898 deletions

View File

@@ -138,7 +138,7 @@
if(res && res.data){
Object.keys(this.form).map(e=>this.form[e] = res.data[e]);
this.form.type = res.data.releaseTime ? 1 : 0;
this.$initWxOpenData()
this.$store.dispatch('initOpenData')
}
})
},

View File

@@ -56,7 +56,7 @@
}).then(res => {
if (res && res.data) {
this.detailObj = res.data;
this.$initWxOpenData()
this.$store.dispatch('initOpenData')
}
})
}

View File

@@ -156,7 +156,7 @@
}).then(res => {
if (res && res.data) {
this.detailObj = res.data;
this.$initWxOpenData()
this.$store.dispatch('initOpenData')
}
})
},

View File

@@ -197,7 +197,7 @@
if(res && res.data){
this.readObj = res.data;
this.visible = true;
this.$initWxOpenData()
this.$store.dispatch('initOpenData')
}
})
},
@@ -213,7 +213,7 @@
if(res && res.data){
this.tableData = res.data.records;
this.total = res.data.total;
this.$initWxOpenData()
this.$store.dispatch('initOpenData')
}
})
}

View File

@@ -112,7 +112,7 @@
if (res && res.data) {
this.tableData = res.data.records;
this.total = res.data.total;
this.$initWxOpenData()
this.$store.dispatch('initOpenData')
}
});
},