You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

161 lines
3.1 KiB

import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime'
export const SupplierdeliverInspectionDetail = useCrudSchemas(reactive<CrudSchema[]>([
12 months ago
{
label: '上传质检报告',
field: 'uploadFile',
sort: 'custom',
isTable:false,
isTableForm:false,
form: {
component: 'UploadFile',
componentProps: {
upData:{
tableId: '',
tableName: 'SupplierdeliverInspectionDetail',
12 months ago
},
fileType:['pdf','png','jpg','jpeg'],
fileSize:100
12 months ago
}
},
},
{
label: '物料代码',
field: 'itemCode',
sort: 'custom',
12 months ago
isForm:false,
isSearch: true,
form: {
componentProps: {
disabled: true
}
},
tableForm: {
disabled: true
}
},
{
label: '供应商批次',
field: 'batch',
sort: 'custom',
12 months ago
isForm:false,
isSearch: true,
form: {
componentProps: {
disabled: true
}
},
tableForm: {
disabled: true
}
},
{
label: '发货数量',
field: 'planQty',
sort: 'custom',
12 months ago
isForm:false,
isSearch: true,
form: {
componentProps: {
disabled: true
}
},
12 months ago
tableForm: {
disabled: true,
12 months ago
type: 'InputNumber',
min: 0,
precision: 6
},
},
11 months ago
{
label: '计量单位',
field: 'uom',
dictType: DICT_TYPE.UOM,
dictClass: 'string',
isTable: true,
isForm:false,
sort: 'custom',
table: {
width: 150
},
tableForm: {
type: 'Select',
disabled: true
},
form: {
componentProps: {
disabled: true
}
},
11 months ago
},
{
label: '备注',
field: 'remark',
sort: 'custom',
12 months ago
isForm:false,
isTable: false,
isTableForm: false,
isSearch: true,
},
{
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')]
}
},
12 months ago
isTableForm: false,
isForm: false,
},
{
label: '扩展属性',
field: 'extraProperties',
sort: 'custom',
isSearch: true,
isForm: false,
12 months ago
isTable: false,
isTableForm: false,
},
{
label: '操作',
field: 'action',
isForm: false,
12 months ago
isTable: false,
isTableForm: false,
table: {
width: 150,
fixed: 'right'
}
}
]))
//表单校验
export const SupplierdeliverInspectionDetailRules = reactive({
uploadFile: [
{ required: true, message: '请上传文件', trigger: 'blur' }
],
itemCode: [
{ required: true, message: '请输入物料代码', trigger: 'blur' }
],
uom: [
{ required: true, message: '请输入计量单位', trigger: 'blur' }
],
batch: [
{ required: true, message: '请输入供应商批次', trigger: 'blur' }
],
planQty: [
{ required: true, message: '请输入发货数量', trigger: 'blur' }
],
})