Revert "CRM_26-04-22#story#8495,潜在供应商H5页面提交信息,信息审核,提交补充信息与退回理由的优化与修复(停启用修改)"

This reverts commit 57f83916
This commit is contained in:
2026-06-09 15:28:46 +08:00
parent 336bb11c42
commit 7c40fbc4c5
6 changed files with 6 additions and 28 deletions

View File

@@ -137,7 +137,6 @@ export default {
supplierId: '',
routeId: '',
initialized: false,
fromSupplierAdd: '', // 是否从 supplierAdd 进入
supplierType:'',
count: 0,
isLoading: false,
@@ -187,8 +186,6 @@ export default {
this.supplierId = rawId ? Number(rawId) : '';
const potentialId = this.$route.query.potentialId || urlParams.get('potentialId');
this.routeId = potentialId;
// 获取 fromSupplierAdd 标识
this.fromSupplierAdd = this.$route.query.fromSupplierAdd || urlParams.get('fromSupplierAdd') || '';
if(!rawId) {
this.getPermissions();
}
@@ -258,7 +255,7 @@ export default {
}else{
this.$router.push({
name: 'driverAdd',
params: this.supplierId ? { supplierId: this.supplierId, fromSupplierAdd: this.fromSupplierAdd } : {}
params: this.supplierId ? { supplierId: this.supplierId } : {}
})
}
},