import type { CrudSchema } from '@/hooks/web/useCrudSchemas' import { dateFormatter } from '@/utils/formatTime' // 表单校验 export const WorkSchedulingQaformRules = reactive({ concurrencyStamp: [required], }) export const WorkSchedulingQaform = useCrudSchemas(reactive([ { label: '删除时间', field: 'deleteTime', sort: 'custom', formatter: dateFormatter, isSearch: false, isTable: false, isForm: false, isDetail:false, search: { component: 'DatePicker', componentProps: { valueFormat: 'YYYY-MM-DD HH:mm:ss', type: 'daterange', defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] } }, form: { component: 'DatePicker', componentProps: { type: 'datetime', valueFormat: 'x' } }, }, { label: '主键', field: 'id', sort: 'custom', isForm: false, }, { label: '状态', field: 'status', sort: 'custom', isSearch: false, isTable: false, isForm: false, isDetail:false, form: { component: 'Radio' }, }, { label: '并发乐观锁', field: 'concurrencyStamp', sort: 'custom', iisSearch: false, isTable: false, isForm: false, isDetail:false, form: { component: 'InputNumber', value: 0 }, }, { label: '创建时间', field: 'createTime', sort: 'custom', formatter: dateFormatter, isSearch: true, search: { component: 'DatePicker', componentProps: { valueFormat: 'YYYY-MM-DD HH:mm:ss', type: 'daterange', defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] } }, isForm: false, }, { label: '删除用户名', field: 'deleter', sort: 'custom', isSearch: false, isTable: false, isForm: false, isDetail:false, }, { label: '位置ID', field: 'siteId', sort: 'custom', isSearch: false, isTable: false, isForm: false, isDetail:false, form: { component: 'InputNumber', value: 0 }, }, { label: '主计划编号', field: 'planMasterCode', sort: 'custom', isSearch: true, }, { label: '工单编号', field: 'schedulingCode', sort: 'custom', isSearch: true, }, { label: '工序编号', field: 'nodeCode', sort: 'custom', isSearch: true, }, { label: '检验单编号', field: 'qaFormNo', sort: 'custom', isSearch: true, }, { label: '检验单名称', field: 'qaFormName', sort: 'custom', isSearch: true, }, { label: '检验类型', field: 'qaFormType', sort: 'custom', isSearch: true, }, { label: '检验时间', field: 'qaTime', sort: 'custom', formatter: dateFormatter, isSearch: true, search: { component: 'DatePicker', componentProps: { valueFormat: 'YYYY-MM-DD HH:mm:ss', type: 'daterange', defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] } }, form: { component: 'DatePicker', componentProps: { type: 'datetime', valueFormat: 'x' } }, }, { label: '检测数量', field: 'qaCount', sort: 'custom', isSearch: true, form: { component: 'InputNumber', value: 0 }, }, { label: '检测合格数量', field: 'qaCountPassed', sort: 'custom', isSearch: true, form: { component: 'InputNumber', value: 0 }, }, { label: '检测不合格数量', field: 'qaCountNotpassed', sort: 'custom', isSearch: true, form: { component: 'InputNumber', value: 0 }, }, { label: '合格率', field: 'qaPassRate', sort: 'custom', isSearch: true, }, { label: '操作', field: 'action', isForm: false, table: { width: 150, fixed: 'right' } } ]))