招标一览审核

This commit is contained in:
Teo
2025-08-22 22:57:45 +08:00
parent 9584ab4baa
commit ea56d292ec
6 changed files with 93 additions and 47 deletions

View File

@ -107,7 +107,7 @@ const queryForm = ref({
sheet: ''
});
const versionsData = ref({});
const versionsData = ref<any>({});
const activeTab = ref('2');
const sheets = ref([]);
@ -272,9 +272,11 @@ const handleSave = (row: any) => {
/** 审核按钮操作 */
const handleAudit = async () => {
proxy?.$tab.openPage('/approval/tenderPlan/indexEdit', '审核招标一览', {
proxy?.$tab.openPage('/approval/tenderBidd/indexEdit', '审核招标一览', {
id: queryForm.value.versions,
type: 'update'
type: 'update',
activeTab: activeTab.value,
status: versionsData.value.status
});
};