我发起的变更页面完成
This commit is contained in:
@@ -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,) => {
|
||||
|
||||
Reference in New Issue
Block a user