BUG 26943

This commit is contained in:
aixianling
2022-03-25 11:29:08 +08:00
parent ae945c24ab
commit 4644f8485b
6 changed files with 12 additions and 5 deletions

View File

@@ -166,6 +166,7 @@ export default {
},
created() {
let {type, isQuote, id} = this.$route.query
document.title = !id ? '新建表单' : '编辑表单'
this.type = type
this.isQuote = !!isQuote
if (id) {
@@ -182,7 +183,6 @@ export default {
}
this.formConfig = res
})
uni.$on('filedConfig', res => {
console.log(res)
if (res.index < 0) {
@@ -191,7 +191,6 @@ export default {
this.targetList.splice(res.index, 1, res.config)
}
})
document.title = !id ? '新建表单' : '编辑表单'
},
methods: {
toSetting() {