From 356e6438e01f6b60baa1eba796aa7633dddacb62 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 9 Jan 2025 15:48:02 +0800 Subject: [PATCH] =?UTF-8?q?fix(xumu):=20=E4=BF=AE=E5=A4=8D=E4=BF=9D?= =?UTF-8?q?=E9=99=A9=E7=94=B3=E8=AF=B7=E5=92=8C=E6=B2=BB=E7=96=97=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E9=A1=B5=E9=9D=A2=E7=9A=84=E6=95=B0=E6=8D=AE=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD=E9=97=AE=E9=A2=98-=20=E5=9C=A8=20AppInsuranceApply=20?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E4=B8=AD=EF=BC=8C=E5=B0=86=20detailList=20?= =?UTF-8?q?=E7=9A=84=E9=BB=98=E8=AE=A4=E5=80=BC=E6=94=B9=E4=B8=BA=20detail?= =?UTF-8?q?List=20||=20[]=EF=BC=8C=E4=BB=A5=E7=A1=AE=E4=BF=9D=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E6=AD=A3=E7=A1=AE=E5=8A=A0=E8=BD=BD=20-=20=E5=9C=A8?= =?UTF-8?q?=20AppTreatmentManage=20=E7=BB=84=E4=BB=B6=E4=B8=AD=EF=BC=8C?= =?UTF-8?q?=E5=B0=86=20detailList=20=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/xumu/AppInsuranceApply/add.vue | 2 +- project/xumu/AppTreatmentManage/add.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project/xumu/AppInsuranceApply/add.vue b/project/xumu/AppInsuranceApply/add.vue index 5916cd09..cdef3f64 100644 --- a/project/xumu/AppInsuranceApply/add.vue +++ b/project/xumu/AppInsuranceApply/add.vue @@ -49,7 +49,7 @@ export default { return id && this.instance.post("/api/insurance/apply/getInfo", null, {params: {id}}).then(res => { if (res?.data) { const detail = res.data - detail.detailList = detail.weightList || [] + detail.detailList = detail.detailList || [] let {farmPicture: picture = "{}"} = detail picture = JSON.parse(picture) return this.detail = {...detail, ...picture} diff --git a/project/xumu/AppTreatmentManage/add.vue b/project/xumu/AppTreatmentManage/add.vue index 54cdef9c..7216944c 100644 --- a/project/xumu/AppTreatmentManage/add.vue +++ b/project/xumu/AppTreatmentManage/add.vue @@ -56,7 +56,7 @@ export default { return id && this.instance.post("/api/breed/treatment/getInfo", null, {params: {biochipEarNumber: id}}).then(res => { if (res?.data) { const detail = res.data - detail.detailList = detail.immunityList || [] + detail.detailList = detail.treatmentList || [] return this.detail = {...detail} } })