CRM_26-04-22#story#8495,潜在供应商H5页面提交信息,信息审核,提交补充信息与退回理由的优化与修复(添加跳转)

This commit is contained in:
2026-06-08 11:30:52 +08:00
parent 8a053c5a80
commit 80c15dcf1b

View File

@@ -124,7 +124,9 @@
</div>
</div>
<div class="btn_wrap" style="margin-bottom: 5px">
<div class="btn" @click="goAddVehicle">完善信息</div>
</div>
<div class="btn_wrap" v-if="type == 'show' && supplierInfo?.state == 99 && origin != 'web'">
<div class="btn" @click="goModifyPage">修改信息</div>
</div>
@@ -162,6 +164,11 @@
await this.getInfoHandler();
},
methods: {
goAddVehicle() {
const supplierId = this.id
localStorage.setItem('lastRoute', JSON.stringify({ name: 'vehicleManage', query: { id: supplierId } }));
this.goPage('vehicleManage', { id: supplierId });
},
goModifyPage() {
this.goPage('supplierAdd', { id : this.id })
},