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.
37 lines
717 B
37 lines
717 B
1 month ago
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
||
|
|
||
|
// 表单校验
|
||
|
export const SupplierDeliMainRules = reactive({
|
||
|
supplierCode: [required],
|
||
|
supplierAddress: [required],
|
||
|
yearAndMonth: [required],
|
||
|
})
|
||
|
|
||
|
export const SupplierDeliMain = useCrudSchemas(reactive<CrudSchema[]>([
|
||
|
{
|
||
|
label: '供应商代码',
|
||
|
field: 'supplierCode',
|
||
|
sort: 'custom',
|
||
|
isSearch: true,
|
||
|
},
|
||
|
{
|
||
|
label: '供应商地点',
|
||
|
field: 'supplierAddress',
|
||
|
sort: 'custom',
|
||
|
isSearch: true,
|
||
|
},
|
||
|
{
|
||
|
label: '受入号',
|
||
|
field: 'model',
|
||
|
sort: 'custom',
|
||
|
isSearch: true,
|
||
|
},
|
||
|
{
|
||
|
label: '年月',
|
||
|
field: 'yearAndMonth',
|
||
|
sort: 'custom',
|
||
|
isTable: false,
|
||
|
isSearch: true,
|
||
|
}
|
||
|
]))
|