Browse Source

BUG修改

master_hella_20240701
parent
commit
4a9a11cc61
  1. 10
      src/views/qms/aql/aql.data.ts
  2. 68
      src/views/qms/basicDataManage/inspectionScheme/inspectionScheme.data.ts
  3. 9
      src/views/qms/inspectionMethod/inspectionMethod.data.ts
  4. 9
      src/views/qms/samplingProcess/samplingProcess.data.ts
  5. 9
      src/views/qms/samplingScheme/samplingScheme.data.ts

10
src/views/qms/aql/aql.data.ts

@ -540,10 +540,16 @@ export const Aql = useCrudSchemas(reactive<CrudSchema[]>([
detail: { detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss' dateFormat: 'YYYY-MM-DD HH:mm:ss'
}, },
table: { form: {
width: 115 component: 'DatePicker',
componentProps: {
style: {width: '100%'},
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
} }
}, },
},
{ {
label: '操作', label: '操作',
field: 'action', field: 'action',

68
src/views/qms/basicDataManage/inspectionScheme/inspectionScheme.data.ts

@ -5,10 +5,10 @@ import { dateFormatter } from '@/utils/formatTime'
export const InspectionTemplateRules = reactive({ export const InspectionTemplateRules = reactive({
description: [ description: [
{ required: true , message: '请填写描述', trigger: 'blur' } { required: true, message: '请填写描述', trigger: 'blur' }
], ],
version: [ version: [
{ required: true , message: '请填写版本', trigger: 'blur' } { required: true, message: '请填写版本', trigger: 'blur' }
], ],
inspectionCode: [ inspectionCode: [
{ required: true, message: '请选择检验方案模板编码', trigger: 'blur' } { required: true, message: '请选择检验方案模板编码', trigger: 'blur' }
@ -77,11 +77,11 @@ export const InspectionSchemeMain = useCrudSchemas(reactive<CrudSchema[]>([
width: 220, width: 220,
fixed: 'left' fixed: 'left'
}, },
isSearch:true, isSearch: true,
form:{ form: {
componentProps:{ componentProps: {
disabled:true, disabled: true,
placeholder:'系统自动获取' placeholder: '系统自动获取'
} }
} }
}, },
@ -92,7 +92,7 @@ export const InspectionSchemeMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isSearch:true, isSearch: true,
}, },
{ {
label: '物料编码', label: '物料编码',
@ -101,19 +101,19 @@ export const InspectionSchemeMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isSearch:true, isSearch: true,
}, { }, {
label: '描述', label: '描述',
field: 'description', field: 'description',
sort: 'custom', sort: 'custom',
},{ }, {
label: '版本', label: '版本',
field: 'version', field: 'version',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
} }
},{ }, {
label: '检验类型编码', label: '检验类型编码',
field: 'inspectionType', field: 'inspectionType',
dictType: DICT_TYPE.INSPECTION_TYPE, dictType: DICT_TYPE.INSPECTION_TYPE,
@ -122,14 +122,14 @@ export const InspectionSchemeMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
} }
},{ }, {
label: '检验模板编码', label: '检验模板编码',
field: 'programmeTemplateCode', field: 'programmeTemplateCode',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
} }
},{ }, {
label: '拆分规则', label: '拆分规则',
field: 'splitRule', field: 'splitRule',
sort: 'custom', sort: 'custom',
@ -138,7 +138,7 @@ export const InspectionSchemeMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
},{ }, {
label: 'aql', label: 'aql',
field: 'aql', field: 'aql',
sort: 'custom', sort: 'custom',
@ -147,7 +147,7 @@ export const InspectionSchemeMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
} }
},{ }, {
label: '检验水平', label: '检验水平',
field: 'inspectionLevel', field: 'inspectionLevel',
sort: 'custom', sort: 'custom',
@ -156,24 +156,46 @@ export const InspectionSchemeMain = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isSearch:true, isSearch: true,
},{ },
{
label: '生效时间', label: '生效时间',
field: 'effectiveDate', field: 'effectiveDate',
sort: 'custom', sort: 'custom',
formatter: dateFormatter, formatter: dateFormatter,
table: { isForm: false,
width: 180 detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
form: {
component: 'DatePicker',
componentProps: {
style: { width: '100%' },
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
} }
},{ },
},
{
label: '失效时间', label: '失效时间',
field: 'expirationDate', field: 'expirationDate',
sort: 'custom', sort: 'custom',
formatter: dateFormatter, formatter: dateFormatter,
table: { isForm: false,
width: 180 detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
form: {
component: 'DatePicker',
componentProps: {
style: { width: '100%' },
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
} }
}, },
},
// { // {
// label: '是否可用', // label: '是否可用',
// field: 'available', // field: 'available',
@ -197,7 +219,7 @@ export const InspectionSchemeMain = useCrudSchemas(reactive<CrudSchema[]>([
label: '操作', label: '操作',
field: 'action', field: 'action',
isDetail: false, isDetail: false,
isForm: false , isForm: false,
table: { table: {
width: 150, width: 150,
fixed: 'right' fixed: 'right'

9
src/views/qms/inspectionMethod/inspectionMethod.data.ts

@ -61,6 +61,15 @@ export const InspectionMethod = useCrudSchemas(reactive<CrudSchema[]>([
detail: { detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss' dateFormat: 'YYYY-MM-DD HH:mm:ss'
}, },
form: {
component: 'DatePicker',
componentProps: {
style: {width: '100%'},
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
}, },
{ {
label: '操作', label: '操作',

9
src/views/qms/samplingProcess/samplingProcess.data.ts

@ -85,6 +85,15 @@ export const SamplingProcess = useCrudSchemas(reactive<CrudSchema[]>([
detail: { detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss' dateFormat: 'YYYY-MM-DD HH:mm:ss'
}, },
form: {
component: 'DatePicker',
componentProps: {
style: {width: '100%'},
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
}, },
{ {
label: '操作', label: '操作',

9
src/views/qms/samplingScheme/samplingScheme.data.ts

@ -32,6 +32,15 @@ export const SamplingScheme = useCrudSchemas(reactive<CrudSchema[]>([
detail: { detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss' dateFormat: 'YYYY-MM-DD HH:mm:ss'
}, },
form: {
component: 'DatePicker',
componentProps: {
style: {width: '100%'},
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
}, },
{ {
label: '操作', label: '操作',

Loading…
Cancel
Save