From 731e084b1c3b803652ce83fddc7443baa3f45602 Mon Sep 17 00:00:00 2001 From: zhaoyiran Date: Tue, 18 Feb 2025 13:30:31 +0800 Subject: [PATCH] =?UTF-8?q?SBBJ-814=E5=B7=A1=E6=A3=80=E7=82=B9=E6=A3=80?= =?UTF-8?q?=E9=A1=B9=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eam/basic/deviceInspectionConfig/index.ts | 69 +++ src/api/eam/basic/deviceMaintenance/index.ts | 1 - .../eam/basic/moldInspectionConfig/index.ts | 69 +++ .../deviceInspectionConfig.data.ts | 396 +++++++++++++++++ .../basic/deviceInspectionConfig/index.vue | 407 ++++++++++++++++++ .../basic/deviceMaintenanceConfig/index.vue | 28 +- .../eam/basic/inspection/inspection.data.ts | 70 +-- .../eam/basic/moldInspectionConfig/index.vue | 407 ++++++++++++++++++ .../moldInspectionConfig.data.ts | 396 +++++++++++++++++ .../moldMaintenance/moldMaintenance.data.ts | 145 +++++++ .../eam/basic/moldMaintenanceConfig/index.vue | 54 +-- 11 files changed, 1943 insertions(+), 99 deletions(-) create mode 100644 src/api/eam/basic/deviceInspectionConfig/index.ts create mode 100644 src/api/eam/basic/moldInspectionConfig/index.ts create mode 100644 src/views/eam/basic/deviceInspectionConfig/deviceInspectionConfig.data.ts create mode 100644 src/views/eam/basic/deviceInspectionConfig/index.vue create mode 100644 src/views/eam/basic/moldInspectionConfig/index.vue create mode 100644 src/views/eam/basic/moldInspectionConfig/moldInspectionConfig.data.ts diff --git a/src/api/eam/basic/deviceInspectionConfig/index.ts b/src/api/eam/basic/deviceInspectionConfig/index.ts new file mode 100644 index 0000000..f67ee33 --- /dev/null +++ b/src/api/eam/basic/deviceInspectionConfig/index.ts @@ -0,0 +1,69 @@ +import request from '@/config/axios' + +export interface MoldMaintenanceConfigVO { + deviceNumber: string + maintenanceItemId: string + masterId: string + detailId: string +} + +// 查询设备模具保养项配置列表 +export const getMoldMaintenanceConfigPage = async (params) => { + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/eam/device-mold-maintenance-config/senior', data }) + } else { + return await request.get({ url: `/eam/device-mold-maintenance-config/page`, params }) + } +} + +// 查询设备模具保养项配置详情 +export const getMoldMaintenanceConfig = async (id: number) => { + return await request.get({ url: `/eam/device-mold-maintenance-config/get?id=` + id }) +} + +// 新增设备模具保养项配置 +export const createMoldMaintenanceConfig = async (data: MoldMaintenanceConfigVO) => { + return await request.post({ url: `/eam/device-mold-maintenance-config/create`, data }) +} + +// 修改设备模具保养项配置 +export const updateMoldMaintenanceConfig = async (data: MoldMaintenanceConfigVO) => { + return await request.put({ url: `/eam/device-mold-maintenance-config/update`, data }) +} + +// 删除设备模具保养项配置 +export const deleteMoldMaintenanceConfig = async (id: number) => { + return await request.delete({ url: `/eam/device-mold-maintenance-config/delete?id=` + id }) +} + +// 导出设备模具保养项配置 Excel +export const exportMoldMaintenanceConfig = async (params) => { + return await request.download({ url: `/eam/device-mold-maintenance-config/export-excel`, params }) +} + +// 下载用户导入模板 +export const importTemplate = () => { + return request.download({ url: '/eam/device-mold-maintenance-config/get-import-template' }) +} + +export const getDeviceMoldItemsPage = async (params) => { + params.type="DEVICE" + params.status = "INSPECTION" + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/eam/device-mold-maintenance-config/senior', data }) + } else { + return await request.get({ url: `/eam/device-mold-maintenance-config/pageDetail`, params }) + } +} + +export const addMaintenanceItem = async (data: MoldMaintenanceConfigVO) => { + return await request.post({ url: `/eam/device-mold-maintenance-config/addMaintenanceItem`, data }) +} + +export const delMaintenanceItem = async (data: MoldMaintenanceConfigVO) => { + return await request.post({ url: `/eam/device-mold-maintenance-config/delMaintenanceItem`, data }) +} \ No newline at end of file diff --git a/src/api/eam/basic/deviceMaintenance/index.ts b/src/api/eam/basic/deviceMaintenance/index.ts index 7eace84..7abfe49 100644 --- a/src/api/eam/basic/deviceMaintenance/index.ts +++ b/src/api/eam/basic/deviceMaintenance/index.ts @@ -23,7 +23,6 @@ export const getDeviceMoldItemsPage = async (params) => { } } - // 查询项记录表(设备 模具 保养 维修 巡检点检)详情 export const getDeviceMoldItems = async (id: number) => { return await request.get({ url: `/eam/device-mold-items/get?id=` + id }) diff --git a/src/api/eam/basic/moldInspectionConfig/index.ts b/src/api/eam/basic/moldInspectionConfig/index.ts new file mode 100644 index 0000000..8802672 --- /dev/null +++ b/src/api/eam/basic/moldInspectionConfig/index.ts @@ -0,0 +1,69 @@ +import request from '@/config/axios' + +export interface MoldMaintenanceConfigVO { + deviceNumber: string + maintenanceItemId: string + masterId: string + detailId: string +} + +// 查询设备模具保养项配置列表 +export const getMoldMaintenanceConfigPage = async (params) => { + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/eam/device-mold-maintenance-config/senior', data }) + } else { + return await request.get({ url: `/eam/device-mold-maintenance-config/page`, params }) + } +} + +// 查询设备模具保养项配置详情 +export const getMoldMaintenanceConfig = async (id: number) => { + return await request.get({ url: `/eam/device-mold-maintenance-config/get?id=` + id }) +} + +// 新增设备模具保养项配置 +export const createMoldMaintenanceConfig = async (data: MoldMaintenanceConfigVO) => { + return await request.post({ url: `/eam/device-mold-maintenance-config/create`, data }) +} + +// 修改设备模具保养项配置 +export const updateMoldMaintenanceConfig = async (data: MoldMaintenanceConfigVO) => { + return await request.put({ url: `/eam/device-mold-maintenance-config/update`, data }) +} + +// 删除设备模具保养项配置 +export const deleteMoldMaintenanceConfig = async (id: number) => { + return await request.delete({ url: `/eam/device-mold-maintenance-config/delete?id=` + id }) +} + +// 导出设备模具保养项配置 Excel +export const exportMoldMaintenanceConfig = async (params) => { + return await request.download({ url: `/eam/device-mold-maintenance-config/export-excel`, params }) +} + +// 下载用户导入模板 +export const importTemplate = () => { + return request.download({ url: '/eam/device-mold-maintenance-config/get-import-template' }) +} + +export const getDeviceMoldItemsPage = async (params) => { + params.type="MOLD" + params.status = "INSPECTION" + if (params.isSearch) { + delete params.isSearch + const data = {...params} + return await request.post({ url: '/eam/device-mold-maintenance-config/senior', data }) + } else { + return await request.get({ url: `/eam/device-mold-maintenance-config/pageDetail`, params }) + } +} + +export const addMaintenanceItem = async (data: MoldMaintenanceConfigVO) => { + return await request.post({ url: `/eam/device-mold-maintenance-config/addMaintenanceItem`, data }) +} + +export const delMaintenanceItem = async (data: MoldMaintenanceConfigVO) => { + return await request.post({ url: `/eam/device-mold-maintenance-config/delMaintenanceItem`, data }) +} \ No newline at end of file diff --git a/src/views/eam/basic/deviceInspectionConfig/deviceInspectionConfig.data.ts b/src/views/eam/basic/deviceInspectionConfig/deviceInspectionConfig.data.ts new file mode 100644 index 0000000..c85a34c --- /dev/null +++ b/src/views/eam/basic/deviceInspectionConfig/deviceInspectionConfig.data.ts @@ -0,0 +1,396 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { dateFormatter } from '@/utils/formatTime' +import * as DeviceMoldItemsApi from '@/api/eam/basic/inspection' +import {DeviceMoldItems} from '@/views/eam/basic/inspection/inspection.data' + +// 表单校验 +export const DeviceInspectionConfigRules = reactive({ + deviceNumber: [required], +}) + +const trueOrFalse = [ + { + label: '是', + value: true + }, + { + label: '否', + value: false + } +] + +export const DeviceMOLD = useCrudSchemas(reactive([ + { + label: '编号', + field: 'number', + sort: 'custom', + isForm: false, + table: { + width: 180, + fixed: 'left' + }, + + }, + { + label: '名称', + field: 'name', + sort: 'custom', + }, + { + label: '规格型号', + field: 'specification', + sort: 'custom', + }, + +])) + +export const DeviceInspection = useCrudSchemas(reactive([ + { + label: '设备编号', + field: 'deviceNumber', + sort: 'custom', + isSearch: true, + form: { + // labelMessage: '信息提示说明!!!', + componentProps: { + isSearchList: true, // 开启查询弹窗 + searchListPlaceholder: '请选择设备', // 输入框占位文本 + searchField: 'number', // 查询弹窗赋值字段 + searchTitle: '设备信息', // 查询弹窗标题 + searchAllSchemas: DeviceMOLD.allSchemas, // 查询弹窗所需类 + searchPage: DeviceMoldItemsApi.getNumber, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: "TRUE", + isMainValue: false + }, { + key: 'type', + value: "DEVICE", + isMainValue: false + } + ] + } + } + }, + { + label: '设备名称', + field: 'deviceName', + sort: 'custom', + isSearch: true, + form: { + componentProps: { + disabled: true + } + }, + }, + { + label: '类型', + field: 'type', + isTable: false, + isForm: false, + isSearch: false, + }, + { + label: '创建时间', + field: 'createTime', + sort: 'custom', + formatter: dateFormatter, + isForm: false, + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) +export const DeviceInspectionTwo = useCrudSchemas(reactive([ + { + label: '巡检点检项', + field: 'name', + sort: 'custom', + isSearch: true, + // form: { + // componentProps: { + // type: 'textarea', + // } + // }, + form: { + // labelMessage: '信息提示说明!!!', + componentProps: { + type: 'textarea', + isSearchList: true, // 开启查询弹窗 + searchListPlaceholder: '请选择设备保养项', // 输入框占位文本 + searchField: 'name', // 查询弹窗赋值字段 + searchTitle: '设备巡检点检项信息', // 查询弹窗标题 + searchAllSchemas: DeviceMoldItems.allSchemas, // 查询弹窗所需类 + searchPage: DeviceMoldItemsApi.getDeviceMoldItemsPage, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: "TRUE", + isMainValue: false + }, { + key: 'type', + value: "DEVICE", + isMainValue: false + } + ] + } + }, + tableForm: { + multiple: true, + isInpuFocusShow: false, // 开启查询弹窗 + disabled:true, + searchListPlaceholder: '请选择设备保养项', + searchField: 'name', + searchTitle: '设备巡检点检项信息', + searchAllSchemas: DeviceMoldItems.allSchemas, // 查询弹窗所需类 + searchPage: DeviceMoldItemsApi.getDeviceMoldItemsPage, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: "TRUE", + isMainValue: false + }, { + key: 'type', + value: "DEVICE", + isMainValue: false + } + ] + }, + }, + { + label: '类型', + field: 'type', + dictType: DICT_TYPE.DEVICE_MOLD_TYPE, + dictClass: 'string', + sort: 'custom', + isSearch: false, + form: { + value: 'DEVICE', + componentProps: { + disabled: true, + } + } + }, + { + label: '项类型', + field: 'status', + dictType: DICT_TYPE.DEVICEMOLDITEMS_STATUS, + dictClass: 'string', + sort: 'custom', + isSearch: false, + form: { + component: 'Select', + value: 'INSPECTION', + componentProps: { + disabled: true + } + }, + }, + + { + label: '设备部位', + field: 'equipmentParts', + sort: 'custom', + isSearch: true, + }, + + { + label: '记录是否必填', + field: 'numberNeedSwitch', + sort: 'custom', + isSearch: false, + formatter: (_: Recordable, __: TableColumn, cellValue: boolean) => { + return trueOrFalse.find((account) => account.value == cellValue)?.label + }, + form: { + component: 'Switch', + value: false, + } + }, + + { + label: '是否点检', + field: 'needInspection', + sort: 'custom', + isSearch: false, + formatter: (_: Recordable, __: TableColumn, cellValue: boolean) => { + return trueOrFalse.find((account) => account.value == cellValue)?.label + }, + form: { + component: 'Switch', + value: false, + } + }, + { + label: '创建时间', + field: 'createTime', + sort: 'custom', + formatter: dateFormatter, + isForm: false, + table: { + width: 170 + }, + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) +// export const DeviceInspectionTwo = useCrudSchemas(reactive([ +// { +// label: '保养内容12', +// field: 'name', +// sort: 'custom', +// isSearch: true, +// form: { +// // labelMessage: '信息提示说明!!!', +// componentProps: { +// isSearchList: true, // 开启查询弹窗 +// searchListPlaceholder: '请选择设备保养项', // 输入框占位文本 +// searchField: 'name', // 查询弹窗赋值字段 +// searchTitle: '设备保养项信息', // 查询弹窗标题 +// searchAllSchemas: DeviceInspection.allSchemas, // 查询弹窗所需类 +// searchPage: DeviceMoldItemsApi.getDeviceMoldItemsPage, // 查询弹窗所需分页方法 +// searchCondition: [ +// { +// key: 'available', +// value: "TRUE", +// isMainValue: false +// }, { +// key: 'type', +// value: "DEVICE", +// isMainValue: false +// } +// ] +// } +// }, +// tableForm: { +// multiple: true, +// isInpuFocusShow: false, // 开启查询弹窗 +// disabled:true, +// searchListPlaceholder: '请选择设备保养项', +// searchField: 'name', +// searchTitle: '设备保养项信息', +// searchAllSchemas: DeviceInspection.allSchemas, // 查询弹窗所需类 +// searchPage: DeviceMoldItemsApi.getDeviceMoldItemsPage, // 查询弹窗所需分页方法 +// searchCondition: [ +// { +// key: 'available', +// value: "TRUE", +// isMainValue: false +// }, { +// key: 'type', +// value: "DEVICE", +// isMainValue: false +// } +// ] +// }, +// }, +// { +// label: '类型', +// field: 'type', +// dictType: DICT_TYPE.DEVICE_MOLD_TYPE, +// dictClass: 'string', +// sort: 'custom', +// isSearch: false, +// form: { +// value: 'DEVICE', +// componentProps: { +// disabled: true, +// } +// }, +// tableForm: { +// type:'Select', +// disabled: true, +// } +// }, +// { +// label: '设备保养部位', +// field: 'equipmentParts', +// sort: 'custom', +// isSearch: true, +// tableForm: { +// disabled: true, +// } +// }, +// { +// label: '项类型', +// field: 'status', +// dictType: DICT_TYPE.DEVICEMOLDITEMS_STATUS, +// dictClass: 'string', +// sort: 'custom', +// isSearch: false, +// form: { +// component: 'Select', +// value: 'MAINTAIN', +// componentProps: { +// disabled: true +// } +// }, +// tableForm: { +// type: 'Select', +// disabled: true, +// } +// }, +// { +// label: '人数', +// field: 'peoples', +// sort: 'custom', +// isSearch: false, +// table: { +// width: 150, +// }, +// form: { +// component: 'InputNumber', +// componentProps: { +// min: 1, +// max: 100, +// precision: 0 +// } +// }, +// tableForm: { +// disabled: true, +// } +// }, +// { +// label: '保养所需时间(分钟)', +// field: 'estimatedMinutes', +// sort: 'custom', +// isSearch: false, +// table: { +// width: 200, +// }, +// form: { +// component: 'InputNumber', +// componentProps: { +// min: 1, +// precision: 0 +// } +// }, +// tableForm: { +// disabled: true, +// } +// }, +// { +// label: '操作', +// field: 'action', +// isForm: false, +// table: { +// width: 150, +// fixed: 'right' +// } +// } +// ])) + diff --git a/src/views/eam/basic/deviceInspectionConfig/index.vue b/src/views/eam/basic/deviceInspectionConfig/index.vue new file mode 100644 index 0000000..bc03ec7 --- /dev/null +++ b/src/views/eam/basic/deviceInspectionConfig/index.vue @@ -0,0 +1,407 @@ + + + +./deviceInspectionConfig.data \ No newline at end of file diff --git a/src/views/eam/basic/deviceMaintenanceConfig/index.vue b/src/views/eam/basic/deviceMaintenanceConfig/index.vue index 97df977..6cecc07 100644 --- a/src/views/eam/basic/deviceMaintenanceConfig/index.vue +++ b/src/views/eam/basic/deviceMaintenanceConfig/index.vue @@ -167,6 +167,7 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => const submitForm = async (formType, submitData) => { let data = {...submitData} data.type = 'DEVICE' + data.status = 'MAINTAIN' formRef.value.formLoading = true try { if (formType === 'create') { @@ -280,30 +281,6 @@ const openForm =async (type: string, row?: number) => { formRef.value.open(type, row) } -// // form表单提交 -// const formsSuccess = async (formType,data) => { -// var isHave =MoldMaintenanceConfig.allSchemas.formSchema.some(function (item) { -// return item.field === 'activeTime' || item.field === 'expireTime'; -// }); -// if(isHave){ -// if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ -// message.error('失效时间要大于生效时间') -// return; -// } -// } -// if(data.activeTime==0)data.activeTime = null; -// if(data.expireTime==0)data.expireTime = null; -// data.type = 'DEVICE' -// if (formType === 'create') { -// await MoldMaintenanceConfigApi.createMoldMaintenanceConfig(data) -// message.success(t('common.createSuccess')) -// } else { -// await MoldMaintenanceConfigApi.updateMoldMaintenanceConfig(data) -// message.success(t('common.updateSuccess')) -// } -// basicFormRef.value.dialogVisible = false -// getList() -// } /** 详情操作 */ const detailRef = ref() @@ -419,7 +396,8 @@ const deteleNewFuction =async (row)=>{ onMounted(async () => { tableObject.params = { available: 'TRUE', - type: 'DEVICE' + type: 'DEVICE', + status: 'MAINTAIN' } getList() importTemplateData.templateUrl = await MoldMaintenanceConfigApi.importTemplate() diff --git a/src/views/eam/basic/inspection/inspection.data.ts b/src/views/eam/basic/inspection/inspection.data.ts index c813365..39125a3 100644 --- a/src/views/eam/basic/inspection/inspection.data.ts +++ b/src/views/eam/basic/inspection/inspection.data.ts @@ -72,41 +72,41 @@ export const DeviceMoldItems = useCrudSchemas(reactive([ } } }, - { - label: '设备编号', - field: 'deviceNumber', - sort: 'custom', - isSearch: true, - form: { - // labelMessage: '信息提示说明!!!', - componentProps: { - isSearchList: true, // 开启查询弹窗 - searchListPlaceholder: '请选择单号', // 输入框占位文本 - searchField: 'number', // 查询弹窗赋值字段 - searchTitle: '单号信息', // 查询弹窗标题 - searchAllSchemas: DeviceMOLD.allSchemas, // 查询弹窗所需类 - searchPage: DeviceMoldItemsApi.getNumber, // 查询弹窗所需分页方法 - searchCondition: [ - { - key: 'available', - value: "TRUE", - isMainValue: false - }, { - key: 'type', - value: 'type', - isMainValue: true - } - ] - } - } - }, - { - label: '设备名称', - field: 'deviceName', - sort: 'custom', - isSearch: true, - isForm: false, - }, + // { + // label: '设备编号', + // field: 'deviceNumber', + // sort: 'custom', + // isSearch: true, + // form: { + // // labelMessage: '信息提示说明!!!', + // componentProps: { + // isSearchList: true, // 开启查询弹窗 + // searchListPlaceholder: '请选择单号', // 输入框占位文本 + // searchField: 'number', // 查询弹窗赋值字段 + // searchTitle: '单号信息', // 查询弹窗标题 + // searchAllSchemas: DeviceMOLD.allSchemas, // 查询弹窗所需类 + // searchPage: DeviceMoldItemsApi.getNumber, // 查询弹窗所需分页方法 + // searchCondition: [ + // { + // key: 'available', + // value: "TRUE", + // isMainValue: false + // }, { + // key: 'type', + // value: 'type', + // isMainValue: true + // } + // ] + // } + // } + // }, + // { + // label: '设备名称', + // field: 'deviceName', + // sort: 'custom', + // isSearch: true, + // isForm: false, + // }, { label: '项类型', field: 'status', diff --git a/src/views/eam/basic/moldInspectionConfig/index.vue b/src/views/eam/basic/moldInspectionConfig/index.vue new file mode 100644 index 0000000..bd2c01a --- /dev/null +++ b/src/views/eam/basic/moldInspectionConfig/index.vue @@ -0,0 +1,407 @@ + + + +./deviceInspectionConfig.data./moldInspectionConfig.data \ No newline at end of file diff --git a/src/views/eam/basic/moldInspectionConfig/moldInspectionConfig.data.ts b/src/views/eam/basic/moldInspectionConfig/moldInspectionConfig.data.ts new file mode 100644 index 0000000..1c8f269 --- /dev/null +++ b/src/views/eam/basic/moldInspectionConfig/moldInspectionConfig.data.ts @@ -0,0 +1,396 @@ +import type { CrudSchema } from '@/hooks/web/useCrudSchemas' +import { dateFormatter } from '@/utils/formatTime' +import * as DeviceMoldItemsApi from '@/api/eam/basic/inspection' +import {DeviceMoldItems} from '@/views/eam/basic/inspection/inspection.data' + +// 表单校验 +export const DeviceInspectionConfigRules = reactive({ + deviceNumber: [required], +}) + +const trueOrFalse = [ + { + label: '是', + value: true + }, + { + label: '否', + value: false + } +] + +export const DeviceMOLD = useCrudSchemas(reactive([ + { + label: '编号', + field: 'number', + sort: 'custom', + isForm: false, + table: { + width: 180, + fixed: 'left' + }, + + }, + { + label: '名称', + field: 'name', + sort: 'custom', + }, + { + label: '规格型号', + field: 'specification', + sort: 'custom', + }, + +])) + +export const DeviceInspection = useCrudSchemas(reactive([ + { + label: '设备编号', + field: 'deviceNumber', + sort: 'custom', + isSearch: true, + form: { + // labelMessage: '信息提示说明!!!', + componentProps: { + isSearchList: true, // 开启查询弹窗 + searchListPlaceholder: '请选择设备', // 输入框占位文本 + searchField: 'number', // 查询弹窗赋值字段 + searchTitle: '设备信息', // 查询弹窗标题 + searchAllSchemas: DeviceMOLD.allSchemas, // 查询弹窗所需类 + searchPage: DeviceMoldItemsApi.getNumber, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: "TRUE", + isMainValue: false + }, { + key: 'type', + value: "MOLD", + isMainValue: false + } + ] + } + } + }, + { + label: '设备名称', + field: 'deviceName', + sort: 'custom', + isSearch: true, + form: { + componentProps: { + disabled: true + } + }, + }, + { + label: '类型', + field: 'type', + isTable: false, + isForm: false, + isSearch: false, + }, + { + label: '创建时间', + field: 'createTime', + sort: 'custom', + formatter: dateFormatter, + isForm: false, + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) +export const DeviceInspectionTwo = useCrudSchemas(reactive([ + { + label: '巡检点检项', + field: 'name', + sort: 'custom', + isSearch: true, + // form: { + // componentProps: { + // type: 'textarea', + // } + // }, + form: { + // labelMessage: '信息提示说明!!!', + componentProps: { + type: 'textarea', + isSearchList: true, // 开启查询弹窗 + searchListPlaceholder: '请选择模具保养项', // 输入框占位文本 + searchField: 'name', // 查询弹窗赋值字段 + searchTitle: '模具巡检点检项信息', // 查询弹窗标题 + searchAllSchemas: DeviceMoldItems.allSchemas, // 查询弹窗所需类 + searchPage: DeviceMoldItemsApi.getMoldItemsPage, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: "TRUE", + isMainValue: false + }, { + key: 'type', + value: "MOLD", + isMainValue: false + } + ] + } + }, + tableForm: { + multiple: true, + isInpuFocusShow: false, // 开启查询弹窗 + disabled:true, + searchListPlaceholder: '请选择模具保养项', + searchField: 'name', + searchTitle: '模具巡检点检项信息', + searchAllSchemas: DeviceMoldItems.allSchemas, // 查询弹窗所需类 + searchPage: DeviceMoldItemsApi.getMoldItemsPage, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: "TRUE", + isMainValue: false + }, { + key: 'type', + value: "MOLD", + isMainValue: false + } + ] + }, + }, + { + label: '类型', + field: 'type', + dictType: DICT_TYPE.DEVICE_MOLD_TYPE, + dictClass: 'string', + sort: 'custom', + isSearch: false, + form: { + value: 'MOLD', + componentProps: { + disabled: true, + } + } + }, + { + label: '项类型', + field: 'status', + dictType: DICT_TYPE.DEVICEMOLDITEMS_STATUS, + dictClass: 'string', + sort: 'custom', + isSearch: false, + form: { + component: 'Select', + value: 'INSPECTION', + componentProps: { + disabled: true + } + }, + }, + + { + label: '设备部位', + field: 'equipmentParts', + sort: 'custom', + isSearch: true, + }, + + { + label: '记录是否必填', + field: 'numberNeedSwitch', + sort: 'custom', + isSearch: false, + formatter: (_: Recordable, __: TableColumn, cellValue: boolean) => { + return trueOrFalse.find((account) => account.value == cellValue)?.label + }, + form: { + component: 'Switch', + value: false, + } + }, + + { + label: '是否点检', + field: 'needInspection', + sort: 'custom', + isSearch: false, + formatter: (_: Recordable, __: TableColumn, cellValue: boolean) => { + return trueOrFalse.find((account) => account.value == cellValue)?.label + }, + form: { + component: 'Switch', + value: false, + } + }, + { + label: '创建时间', + field: 'createTime', + sort: 'custom', + formatter: dateFormatter, + isForm: false, + table: { + width: 170 + }, + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) +// export const DeviceInspectionTwo = useCrudSchemas(reactive([ +// { +// label: '保养内容12', +// field: 'name', +// sort: 'custom', +// isSearch: true, +// form: { +// // labelMessage: '信息提示说明!!!', +// componentProps: { +// isSearchList: true, // 开启查询弹窗 +// searchListPlaceholder: '请选择设备保养项', // 输入框占位文本 +// searchField: 'name', // 查询弹窗赋值字段 +// searchTitle: '设备保养项信息', // 查询弹窗标题 +// searchAllSchemas: DeviceInspection.allSchemas, // 查询弹窗所需类 +// searchPage: DeviceMoldItemsApi.getDeviceMoldItemsPage, // 查询弹窗所需分页方法 +// searchCondition: [ +// { +// key: 'available', +// value: "TRUE", +// isMainValue: false +// }, { +// key: 'type', +// value: "MOLD", +// isMainValue: false +// } +// ] +// } +// }, +// tableForm: { +// multiple: true, +// isInpuFocusShow: false, // 开启查询弹窗 +// disabled:true, +// searchListPlaceholder: '请选择设备保养项', +// searchField: 'name', +// searchTitle: '设备保养项信息', +// searchAllSchemas: DeviceInspection.allSchemas, // 查询弹窗所需类 +// searchPage: DeviceMoldItemsApi.getDeviceMoldItemsPage, // 查询弹窗所需分页方法 +// searchCondition: [ +// { +// key: 'available', +// value: "TRUE", +// isMainValue: false +// }, { +// key: 'type', +// value: "MOLD", +// isMainValue: false +// } +// ] +// }, +// }, +// { +// label: '类型', +// field: 'type', +// dictType: DICT_TYPE.DEVICE_MOLD_TYPE, +// dictClass: 'string', +// sort: 'custom', +// isSearch: false, +// form: { +// value: 'MOLD', +// componentProps: { +// disabled: true, +// } +// }, +// tableForm: { +// type:'Select', +// disabled: true, +// } +// }, +// { +// label: '设备保养部位', +// field: 'equipmentParts', +// sort: 'custom', +// isSearch: true, +// tableForm: { +// disabled: true, +// } +// }, +// { +// label: '项类型', +// field: 'status', +// dictType: DICT_TYPE.DEVICEMOLDITEMS_STATUS, +// dictClass: 'string', +// sort: 'custom', +// isSearch: false, +// form: { +// component: 'Select', +// value: 'MAINTAIN', +// componentProps: { +// disabled: true +// } +// }, +// tableForm: { +// type: 'Select', +// disabled: true, +// } +// }, +// { +// label: '人数', +// field: 'peoples', +// sort: 'custom', +// isSearch: false, +// table: { +// width: 150, +// }, +// form: { +// component: 'InputNumber', +// componentProps: { +// min: 1, +// max: 100, +// precision: 0 +// } +// }, +// tableForm: { +// disabled: true, +// } +// }, +// { +// label: '保养所需时间(分钟)', +// field: 'estimatedMinutes', +// sort: 'custom', +// isSearch: false, +// table: { +// width: 200, +// }, +// form: { +// component: 'InputNumber', +// componentProps: { +// min: 1, +// precision: 0 +// } +// }, +// tableForm: { +// disabled: true, +// } +// }, +// { +// label: '操作', +// field: 'action', +// isForm: false, +// table: { +// width: 150, +// fixed: 'right' +// } +// } +// ])) + diff --git a/src/views/eam/basic/moldMaintenance/moldMaintenance.data.ts b/src/views/eam/basic/moldMaintenance/moldMaintenance.data.ts index c4582e3..c039268 100644 --- a/src/views/eam/basic/moldMaintenance/moldMaintenance.data.ts +++ b/src/views/eam/basic/moldMaintenance/moldMaintenance.data.ts @@ -229,3 +229,148 @@ export const MoldMaintenance = useCrudSchemas(reactive([ } } ])) +export const MoldMaintenanceTwo = useCrudSchemas(reactive([ + { + label: '保养内容', + field: 'name', + sort: 'custom', + isSearch: true, + form: { + // labelMessage: '信息提示说明!!!', + componentProps: { + isSearchList: true, // 开启查询弹窗 + searchListPlaceholder: '请选择模具保养项', // 输入框占位文本 + searchField: 'name', // 查询弹窗赋值字段 + searchTitle: '模具保养项信息', // 查询弹窗标题 + searchAllSchemas: MoldMaintenance.allSchemas, // 查询弹窗所需类 + searchPage: DeviceMoldItemsApi.getDeviceMoldItemsPage, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: "TRUE", + isMainValue: false + }, { + key: 'type', + value: "MOLD", + isMainValue: false + } + ] + } + }, + tableForm: { + multiple: true, + isInpuFocusShow: false, // 开启查询弹窗 + disabled:true, + searchListPlaceholder: '请选择设备保养项', + searchField: 'name', + searchTitle: '模具保养项信息', + searchAllSchemas: MoldMaintenance.allSchemas, // 查询弹窗所需类 + searchPage: DeviceMoldItemsApi.getDeviceMoldItemsPage, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: "TRUE", + isMainValue: false + }, { + key: 'type', + value: "MOLD", + isMainValue: false + } + ] + }, + }, + { + label: '类型', + field: 'type', + dictType: DICT_TYPE.DEVICE_MOLD_TYPE, + dictClass: 'string', + sort: 'custom', + isSearch: false, + form: { + value: 'MOLD', + componentProps: { + disabled: true, + } + }, + tableForm: { + type:'Select', + disabled: true, + } + }, + { + label: '设备保养部位', + field: 'equipmentParts', + sort: 'custom', + isSearch: true, + tableForm: { + disabled: true, + } + }, + { + label: '项类型', + field: 'status', + dictType: DICT_TYPE.DEVICEMOLDITEMS_STATUS, + dictClass: 'string', + sort: 'custom', + isSearch: false, + form: { + component: 'Select', + value: 'MAINTAIN', + componentProps: { + disabled: true + } + }, + tableForm: { + type: 'Select', + disabled: true, + } + }, + { + label: '人数', + field: 'peoples', + sort: 'custom', + isSearch: false, + table: { + width: 150, + }, + form: { + component: 'InputNumber', + componentProps: { + min: 1, + max: 100, + precision: 0 + } + }, + tableForm: { + disabled: true, + } + }, + { + label: '保养所需时间(分钟)', + field: 'estimatedMinutes', + sort: 'custom', + isSearch: false, + table: { + width: 200, + }, + form: { + component: 'InputNumber', + componentProps: { + min: 1, + precision: 0 + } + }, + tableForm: { + disabled: true, + } + }, + { + label: '操作', + field: 'action', + isForm: false, + table: { + width: 150, + fixed: 'right' + } + } +])) diff --git a/src/views/eam/basic/moldMaintenanceConfig/index.vue b/src/views/eam/basic/moldMaintenanceConfig/index.vue index fd9fe89..5725cb5 100644 --- a/src/views/eam/basic/moldMaintenanceConfig/index.vue +++ b/src/views/eam/basic/moldMaintenanceConfig/index.vue @@ -46,8 +46,8 @@ @success="getList" :rules="MoldMaintenanceConfigRules" :formAllSchemas="MoldMaintenanceConfig.allSchemas" - :tableAllSchemas="DeviceMaintenanceTwo.allSchemas" - :tableFormRules="DeviceMaintenanceRules" + :tableAllSchemas="MoldMaintenanceTwo.allSchemas" + :tableFormRules="MoldMaintenanceRules" :tableData="tableData" :apiUpdate="MoldMaintenanceConfigApi.updateMoldMaintenanceConfig" :apiCreate="MoldMaintenanceConfigApi.createMoldMaintenanceConfig" @@ -65,11 +65,11 @@ ref="detailRef" :isBasic="false" :allSchemas="MoldMaintenanceConfig.allSchemas" - :detailAllSchemas="DeviceMaintenanceTwo.allSchemas" - :apiCreate="DeviceMaintenanceApi.createDeviceMoldItems" - :apiUpdate="DeviceMaintenanceApi.updateDeviceMoldItems" + :detailAllSchemas="MoldMaintenanceTwo.allSchemas" + :apiCreate="MoldMaintenanceApi.createDeviceMoldItems" + :apiUpdate="MoldMaintenanceApi.updateDeviceMoldItems" :apiPage="MoldMaintenanceConfigApi.getDeviceMoldItemsPage" - :apiDelete="DeviceMaintenanceApi.deleteDeviceMoldItems" + :apiDelete="MoldMaintenanceApi.deleteDeviceMoldItems" @searchTableSuccessDetail="searchTableSuccessDetail" :isNewFuction='true' @openFormNewFuction="openFormNewFuction" @@ -96,8 +96,8 @@ import TableHead from '@/components/TableHead/src/TableHead.vue' import ImportForm from '@/components/ImportForm/src/ImportForm.vue' import Detail from '@/components/Detail/src/Detail.vue' import { SearchTable } from '@/components/SearchTable' -import {DeviceMaintenance, DeviceMaintenanceTwo,DeviceMaintenanceRules} from '@/views/eam/basic/deviceMaintenance/deviceMaintenance.data' -import * as DeviceMaintenanceApi from '@/api/eam/basic/deviceMaintenance' +import {MoldMaintenance, MoldMaintenanceTwo,MoldMaintenanceRules} from '@/views/eam/basic/moldMaintenance/moldMaintenance.data' +import * as MoldMaintenanceApi from '@/api/eam/basic/moldMaintenance' // import { DeviceAccounts } from '@/views/eam/device/deviceAccounts/deviceAccounts.data' // import * as DeviceAccountsApi from '@/api/eam/device/deviceAccounts' @@ -107,7 +107,7 @@ defineOptions({ name: 'MoldMaintenanceConfig' }) * tableForm方法 */ const tableFormKeys = {} -DeviceMaintenance.allSchemas.tableFormColumns.forEach(item => { +MoldMaintenance.allSchemas.tableFormColumns.forEach(item => { tableFormKeys[item.field] = item.default ? item.default : '' }) @@ -167,6 +167,7 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => const submitForm = async (formType, submitData) => { let data = {...submitData} data.type = 'MOLD' + data.status = 'MAINTAIN' formRef.value.formLoading = true try { if (formType === 'create') { @@ -280,30 +281,6 @@ const openForm =async (type: string, row?: number) => { formRef.value.open(type, row) } -// // form表单提交 -// const formsSuccess = async (formType,data) => { -// var isHave =MoldMaintenanceConfig.allSchemas.formSchema.some(function (item) { -// return item.field === 'activeTime' || item.field === 'expireTime'; -// }); -// if(isHave){ -// if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ -// message.error('失效时间要大于生效时间') -// return; -// } -// } -// if(data.activeTime==0)data.activeTime = null; -// if(data.expireTime==0)data.expireTime = null; -// data.type = 'DEVICE' -// if (formType === 'create') { -// await MoldMaintenanceConfigApi.createMoldMaintenanceConfig(data) -// message.success(t('common.createSuccess')) -// } else { -// await MoldMaintenanceConfigApi.updateMoldMaintenanceConfig(data) -// message.success(t('common.updateSuccess')) -// } -// basicFormRef.value.dialogVisible = false -// getList() -// } /** 详情操作 */ const detailRef = ref() @@ -369,11 +346,11 @@ const searchFormClick = (searchData) => { const searchTableRef = ref() const openFormNewFuction = ()=>{ searchTableRef.value.open( - '选择设备保养项', - DeviceMaintenance.allSchemas, - DeviceMaintenanceApi.getDeviceMoldItemsPage, + '选择模具保养项', + MoldMaintenance.allSchemas, + MoldMaintenanceApi.getDeviceMoldItemsPage, null, - DeviceMaintenance.allSchemas.searchSchema, + MoldMaintenance.allSchemas.searchSchema, true, null, null, @@ -419,7 +396,8 @@ const deteleNewFuction =async (row)=>{ onMounted(async () => { tableObject.params = { available: 'TRUE', - type: 'MOLD' + type: 'MOLD', + status: 'MAINTAIN' } getList() importTemplateData.templateUrl = await MoldMaintenanceConfigApi.importTemplate()