This commit is contained in:
2025-08-22 23:20:39 +08:00
5 changed files with 93 additions and 33 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
});
};