手机APP导航栏埋点

This commit is contained in:
aixianling
2022-08-26 18:22:22 +08:00
parent 1744f27b75
commit ccf21dacb5

View File

@@ -247,13 +247,13 @@ export default {
submit() {
this.$refs.AddForm.validate(v => {
if (v) {
const {tabBar, form: {type, appId, isSingleService, homePage, hmt, dv, downloadCenter, showTool, helpDoc, customerService, sysInfo}} = this
const {tabBar, form: {type, appId, isSingleService, homePage, hmt, dv, downloadCenter, showTool, helpDoc, customerService, sysInfo, appQRCode}} = this
if (type == 'mp') {
this.form.extra = {tabBar, appId}
} else if (type == 'web') {
const {desc} = sysInfo
sysInfo.desc = JSON.parse(desc || null)
this.form.extra = {isSingleService, homePage, hmt, dv, downloadCenter, showTool, helpDoc, customerService, sysInfo}
this.form.extra = {isSingleService, homePage, hmt, dv, downloadCenter, showTool, helpDoc, customerService, sysInfo, appQRCode}
} else if (type == 'wxwork') {
this.form.extra = {isSingleService, homePage, hmt}
}