From e6f016e9cd1c6bd312b87ea54d8c37ee4cb60596 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Thu, 17 Nov 2022 15:02:54 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BC=96=E8=BE=91=E5=85=9A=E5=91=98=E8=AE=A4?= =?UTF-8?q?=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/pingchang/AppPartyAuth/partyAuthApply.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/project/pingchang/AppPartyAuth/partyAuthApply.vue b/src/project/pingchang/AppPartyAuth/partyAuthApply.vue index 585c102..b0fcd73 100644 --- a/src/project/pingchang/AppPartyAuth/partyAuthApply.vue +++ b/src/project/pingchang/AppPartyAuth/partyAuthApply.vue @@ -132,7 +132,15 @@ export default { getDetail() { this.$instance.post(`/app/appparty/detail?id=${this.user.partyId}`).then(res=> { if(res?.data) { - this.form = {...res.data} + this.form.id = res.data.id + this.form.name = res.data.name + this.form.idNumber = res.data.idNumber + this.form.phone = res.data.phone + this.form.partyOrgId = res.data.partyOrgId + this.form.partyOrgName = res.data.partyOrgName + this.form.joinPartyTime = res.data.joinPartyTime + this.form.partyType = res.data.partyType + this.form.partyStatus = res.data.partyStatus } }) },