潜在服务商--修改按钮

This commit is contained in:
2025-10-24 14:34:48 +08:00
parent 41b43087f1
commit a19b14b7d9

View File

@ -116,7 +116,7 @@
</div>
<div class="btn_wrap" v-if="type == 'show' && supplierInfo?.state == 99">
<div class="btn_wrap" v-if="type == 'show' && supplierInfo?.state == 99 && origin != 'web'">
<div class="btn" @click="goModifyPage">修改信息</div>
</div>
<div class="btn_wrap" v-if="type == 'audit' && supplierInfo?.state != 1">
@ -142,12 +142,14 @@
},
supplierInfo: {},
type: 'show',
origin: '',
}
},
async mounted() {
const urlParams = new URLSearchParams(window.location.search);
this.id=this.$route.query.id || urlParams.get('id');
this.type=this.$route.query.type || urlParams.get('type') || 'show';
this.origin = this.$route.query.origin || ''
await this.getInfoHandler();
},
methods: {