From 2a158bb96daa1254a0b3d0de1961afbda59f8308 Mon Sep 17 00:00:00 2001 From: zhangxiaoxu123 <819527061@qq.com> Date: 星期三, 26 十月 2022 14:41:33 +0800 Subject: [PATCH] 细节 --- src/views/padSunmaryProcedure/padWord.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/views/padSunmaryProcedure/padWord.vue b/src/views/padSunmaryProcedure/padWord.vue index b8d3d2c..ebf0392 100644 --- a/src/views/padSunmaryProcedure/padWord.vue +++ b/src/views/padSunmaryProcedure/padWord.vue @@ -35,6 +35,7 @@ }, data() { return { + id:'', form:{ id:'' }, @@ -43,6 +44,7 @@ } }, created() { + this.id = this.$store.state.user.id if (this.$route.query) { this.$nextTick(() => { this.name1 = this.$route.query.name @@ -56,7 +58,7 @@ }) }, submit() { - submitcase(this.id).then(res => { + submitcase({id:this.id}).then(res => { this.goHome() }) }, -- Gitblit v1.9.1