| | |
| | | status: uiStatus, |
| | | statusName: order.orderStatus || '', |
| | | orderStatus: StatusMapper.toUIStatus(order.orderStatus), // 转换为标准状态枚举 |
| | | workFlowId: order.workflowId || '' |
| | | workFlowId: order.workflowId || '', |
| | | taskId: order.taskId || '' |
| | | } |
| | | |
| | | const subOrders: any[] = Array.isArray(order?.orderDetails) |
| | |
| | | |
| | | // 授权:跳转到授权页面 |
| | | const toAuthorize = (row: any) => { |
| | | router.push({ name: 'tradeAuthorization', params: { id: row.id } }) |
| | | router.push({ name: 'tradeAuthorization', params: { id: row.id, taskId: row.taskId } }) |
| | | } |
| | | |
| | | onMounted(async ()=>{ |