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.
|
|
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
|
|
|
import { formatDate } from '@/utils/formatTime'
|
|
|
|
|
|
|
|
// 表单校验
|
|
|
|
export const ReceivedNumberDeliMainRules = reactive({
|
|
|
|
supplierCode: [required],
|
|
|
|
supplierAddress: [required],
|
|
|
|
yearAndMonth: [required],
|
|
|
|
})
|
|
|
|
|
|
|
|
export const ReceivedNumberDeliMain = useCrudSchemas(reactive<CrudSchema[]>([
|
|
|
|
{
|
|
|
|
label: '受入号',
|
|
|
|
field: 'model',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: true,
|
|
|
|
table:{
|
|
|
|
width : 180
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '延迟便次',
|
|
|
|
field: 'delayDeli',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
table:{
|
|
|
|
width : 180
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '年月',
|
|
|
|
field: 'yearAndMonth',
|
|
|
|
sort: 'custom',
|
|
|
|
isTable: false,
|
|
|
|
isSearch: true,
|
|
|
|
search: {
|
|
|
|
component: 'DatePicker',
|
|
|
|
value: formatDate(new Date(),'YYYY-MM'),
|
|
|
|
componentProps: {
|
|
|
|
type: 'month',
|
|
|
|
valueFormat: 'YYYY-MM',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '操作',
|
|
|
|
field: 'action',
|
|
|
|
isForm: false,
|
|
|
|
table: {
|
|
|
|
width: 150,
|
|
|
|
fixed: 'right'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]))
|