diff --git a/src/api/mold/ticketManagement/index.ts b/src/api/mold/ticketManagement/index.ts index 11370a49..e85bc695 100644 --- a/src/api/mold/ticketManagement/index.ts +++ b/src/api/mold/ticketManagement/index.ts @@ -6,11 +6,13 @@ export interface TicketManagementVO { planId?: string planNo?: string deviceName?: string + moldName?: string planType?: string | number configName?: string jobStatus?: string | number jobResult?: string jobUser?: string + operatorName?: string taskTime?: string taskEndTime?: string cancelReason?: string diff --git a/src/locales/en.ts b/src/locales/en.ts index 93e42035..5f7cc3c8 100644 --- a/src/locales/en.ts +++ b/src/locales/en.ts @@ -3254,6 +3254,7 @@ export default { MoldWorkOrderInquiry: { moduleName: 'Work Order Inquiry', + basicInfo: 'Basic Information', planNo: 'Order No', planType: 'Type', planTypeInspect: 'Inspection', diff --git a/src/locales/zh-CN.ts b/src/locales/zh-CN.ts index 99809a79..a9a19f23 100644 --- a/src/locales/zh-CN.ts +++ b/src/locales/zh-CN.ts @@ -2740,6 +2740,7 @@ export default { MoldWorkOrderInquiry: { moduleName: '工单查询', + basicInfo: '基本信息', planNo: '单号', planType: '类型', planTypeInspect: '点检', diff --git a/src/views/mold/workOrderInquiry/components/TicketResultDialog.vue b/src/views/mold/workOrderInquiry/components/TicketResultDialog.vue index 5dd1bedb..32d1f6cb 100644 --- a/src/views/mold/workOrderInquiry/components/TicketResultDialog.vue +++ b/src/views/mold/workOrderInquiry/components/TicketResultDialog.vue @@ -1,123 +1,171 @@