BUG 25208

This commit is contained in:
aixianling
2021-12-03 16:46:14 +08:00
parent 2c49e11c29
commit 6378d83c6f

View File

@@ -126,6 +126,9 @@ export default {
}
},
methods: {
emitShow(){
document.title = this.form.title || "调查问卷"
},
getForm() {
let {id} = this.$route.query
this.$http.post("/app/appquestionnairetemplate/queryDetailById", null, {
@@ -223,9 +226,6 @@ export default {
},
created() {
this.isResult ? this.getResult() : this.getForm()
},
mounted() {
document.title = this.form.title || "调查问卷"
}
}
</script>