From 3ea4168b87c8058dc04839b0f0b6e6fabab9aef1 Mon Sep 17 00:00:00 2001 From: zhouxueli <2841188632@qq.com> Date: Fri, 14 Mar 2025 14:18:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=8C=E6=89=8B=E8=BD=A6=E4=BA=A4=E6=98=93?= =?UTF-8?q?=EF=BC=8C=E8=BF=94=E5=9B=9E=E6=8C=89=E9=92=AE=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/secondHandCar/carSource.vue | 17 +++++++++++++++-- src/views/secondHandCar/privacy.vue | 5 ++--- src/views/secondHandCar/wantBuy.vue | 12 ++++++++++-- 3 files changed, 27 insertions(+), 7 deletions(-) diff --git a/src/views/secondHandCar/carSource.vue b/src/views/secondHandCar/carSource.vue index 59d70e2c..9eedced7 100644 --- a/src/views/secondHandCar/carSource.vue +++ b/src/views/secondHandCar/carSource.vue @@ -5,7 +5,6 @@ @@ -13,6 +12,10 @@ 审核不通过: {{auditRemark}} +
+
供应商名称:{{supplierName}}
+
供应商编号:{{supplierCode}}
+
@@ -190,6 +193,8 @@ export default { otherImgSrcList:[], otherImgSrc:[], status:'', + supplierName:'', + supplierCode:'', homePage:false, } }, @@ -198,6 +203,7 @@ export default { this.type=this.$route.query.type || urlParams.get('type'); this.id=this.$route.query.id || urlParams.get('id'); this.queryType=this.$route.query.queryType || urlParams.get('queryType'); + this.homePage=this.$route.query.homePage if( this.id){ let res = await carInfoDetail({ id:this.id, @@ -210,6 +216,8 @@ export default { this.auditRemark=res.data?.auditRemark this.status=res.data?.status?.code this.areaName=res.data?.areaName + this.supplierName=res.data?.supplierName + this.supplierCode=res.data?.supplierCode this.otherImgSrc=res.data?.otherPhoto?.split(',') this.otherImgSrc?.map(item=>this.otherImgSrcList.push({url:item})) this.vehicleLicensePhotoList=[{url:res.data?.vehicleLicensePhoto}] @@ -266,7 +274,7 @@ export default { sessionStorage.setItem('otherImgSrc',JSON.stringify(this.otherImgSrc)) let urls=url + '/h5/supplier/dispatch/res/privacy.html' - this.$router.push({ name: "privacyComponent", query: {url:urls,type:1},params: { + this.$router.push({ name: "privacyComponent", query: {url:urls,type:1,homePage:this.homePage},params: { form: this.form,radio:this.radio, areaName:this.areaName, vehicleLicensePhotoList:this.vehicleLicensePhotoList, @@ -494,6 +502,11 @@ export default { font-weight: 600; } } + .supplierInfo{ + justify-content: space-around; + background-color: #F5F7F9; + color: #606266;; + } } .navBar{ margin-bottom: 46px; diff --git a/src/views/secondHandCar/privacy.vue b/src/views/secondHandCar/privacy.vue index b7d0caf1..c784f19e 100644 --- a/src/views/secondHandCar/privacy.vue +++ b/src/views/secondHandCar/privacy.vue @@ -1,7 +1,6 @@