我发起的变更页面完成

This commit is contained in:
2026-09-20 10:59:19 +08:00
parent ace1401089
commit ebfb52d1db
3 changed files with 260 additions and 535 deletions
+4 -4
View File
@@ -67,23 +67,23 @@ const tabChange = (k: string) => {
// 处置申请跳转
const jumpTo = (act: string) => {
routerPushByKey("details_disposal",{ query: { id: currentRow.value?.change_id.toString(),type:act } });
routerPushByKey("details_disposal",{ query: { id: currentRow.value?.change_id?.toString(),type:act } });
}
// 打开详情、修改重报
const openDetail = (c: any,type:string = '') => {
console.log(c)
if(type==='detail'){
routerPushByKey("details_index",{ query: { id: c.change_id.toString(),status:c.status.toString() || '' } });
routerPushByKey("details_index",{ query: { id: c?.change_id?.toString(),status:c?.status?.toString() || '',key:'my_mytask' } });
}
if(type==='edit'){
routerPushByKey("my_initiatechange",{ query: { id: c.change_id.toString() } });
routerPushByKey("my_initiatechange",{ query: { id: c?.change_id?.toString() } });
}
};
// 打开资料关闭
const openDocClose = (c: any) => {
currentRow.value = c;
routerPushByKey("details_closedoc",{ query: { id: c.change_id.toString() } });
routerPushByKey("details_closedoc",{ query: { id: c?.change_id?.toString() } });
};
// 打开处置申请
const openDisposal = (c: any,) => {