This commit is contained in:
yanran200730
2022-01-20 10:36:52 +08:00
parent 66236dfb5b
commit 4755651c38
9 changed files with 29 additions and 13 deletions

View File

@@ -174,6 +174,7 @@ export default {
} else {
this.pageShow = true
}
document.title = !id ? '新建表单' : '编辑表单'
this.init()
uni.$on('setting', res => {
this.form = {

View File

@@ -158,6 +158,9 @@ export default {
isShowAnswer: false
}
},
mounted () {
document.title = '表单项配置'
},
computed: {
pointTypeName() {
if (!this.config.pointDict) return ''

View File

@@ -108,6 +108,7 @@ export default {
}
},
created() {
document.title = '表单设置'
if (this.id) {
this.getInfo(this.id)
} else this.getFormSetting()

View File

@@ -100,6 +100,11 @@ export default {
...params
}
},
mounted () {
document.title = '表单预览'
},
methods: {
getInfo(id) {
uni.showLoading()