|
|
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
|
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
|
|
import * as ItembasicApi from '@/api/wms/itembasic'
|
|
|
|
import { Itembasic } from '@/views/wms/basicDataManage/itemManage/itembasic/itembasic.data'
|
|
|
|
import * as ProductionlineitemApi from '@/api/wms/productionlineitem'
|
|
|
|
import { Productionlineitem } from '@/views/wms/basicDataManage/itemManage/productionlineitem/productionlineitem.data'
|
|
|
|
import * as ProcessApi from '@/api/wms/process'
|
|
|
|
import { Process } from '@/views/wms/basicDataManage/factoryModeling/process/process.data'
|
|
|
|
import * as LocationApi from '@/api/wms/location'
|
|
|
|
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data'
|
|
|
|
import {Bom} from "@/views/wms/basicDataManage/itemManage/bom/bom.data";
|
|
|
|
import * as BomApi from "@/api/wms/bom";
|
|
|
|
import { fa } from 'element-plus/es/locale'
|
|
|
|
|
|
|
|
export const ProcessproductionRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
|
|
|
|
{
|
|
|
|
label: '单据号',
|
|
|
|
field: 'number',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 200
|
|
|
|
},
|
|
|
|
isForm: false,
|
|
|
|
isSearch: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '物料代码',
|
|
|
|
field: 'itemCode',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
isSearch: true,
|
|
|
|
form: {
|
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: {
|
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择物料代码', // 输入框占位文本
|
|
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '物料基础信息', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: ItembasicApi.getItembasicPage, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{
|
|
|
|
key: 'available',
|
|
|
|
value: 'TRUE',
|
|
|
|
isMainValue: false
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '完工数量',
|
|
|
|
field: 'completedQuantity',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
form: {
|
|
|
|
component: 'InputNumber',
|
|
|
|
componentProps: {
|
|
|
|
min: 0,
|
|
|
|
precision: 6
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '报废数量',
|
|
|
|
field: 'scrapQuantity',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
form: {
|
|
|
|
component: 'InputNumber',
|
|
|
|
componentProps: {
|
|
|
|
min: 0,
|
|
|
|
precision: 6
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '是否可用',
|
|
|
|
field: 'available',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
dictType: DICT_TYPE.TRUE_FALSE,
|
|
|
|
dictClass: 'string',
|
|
|
|
form: {
|
|
|
|
component: 'Switch',
|
|
|
|
value: 'TRUE',
|
|
|
|
componentProps: {
|
|
|
|
inactiveValue: 'FALSE',
|
|
|
|
activeValue: 'TRUE'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '备注',
|
|
|
|
field: 'remark',
|
|
|
|
sort: 'custom',
|
|
|
|
isTable:false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '创建时间',
|
|
|
|
field: 'createTime',
|
|
|
|
sort: 'custom',
|
|
|
|
formatter: dateFormatter,
|
|
|
|
isForm: false,
|
|
|
|
isTable:false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '删除时间',
|
|
|
|
field: 'deletionTime',
|
|
|
|
sort: 'custom',
|
|
|
|
formatter: dateFormatter,
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isForm:false,
|
|
|
|
isTableForm: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: '删除者ID',
|
|
|
|
field: 'deleterId',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isForm: false,
|
|
|
|
isDetail:false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '扩展属性',
|
|
|
|
field: 'extraProperties',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isForm: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '并发乐观锁',
|
|
|
|
field: 'concurrencyStamp',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isForm: false,
|
|
|
|
isDetail:false,
|
|
|
|
form: {
|
|
|
|
component: 'InputNumber',
|
|
|
|
value: 0
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '地点ID',
|
|
|
|
field: 'siteId',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
isForm: false,
|
|
|
|
isTable:false,
|
|
|
|
isDetail:false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '操作',
|
|
|
|
field: 'action',
|
|
|
|
isForm: false,
|
|
|
|
isDetail:false,
|
|
|
|
table: {
|
|
|
|
width: 150,
|
|
|
|
fixed: 'right'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]))
|
|
|
|
|
|
|
|
// 表单校验
|
|
|
|
export const ProcessproductionRequestMainRules = reactive({
|
|
|
|
itemCode: [{ required: true, message: '物料代码不能为空', trigger: 'change' }],
|
|
|
|
completedQuantity: [{ required: true, message: '完工数量不能为空', trigger: 'change' }],
|
|
|
|
scrapQuantity: [{ required: true, message: '报废数量不能为空', trigger: 'change' }],
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
export const ProcessproductionRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
|
|
|
|
|
|
|
|
{
|
|
|
|
label: '单据号',
|
|
|
|
field: 'number',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isTableForm:false,
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
isForm:false,
|
|
|
|
hiddenInMain:true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '生产线',
|
|
|
|
field: 'productionLine',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
form: {
|
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: {
|
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择物料代码', // 输入框占位文本
|
|
|
|
searchField: 'productionLineCode', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '生产线物料关系信息', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Productionlineitem.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: ProductionlineitemApi.getProductionlineitemPage, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{
|
|
|
|
key:'itemCode',
|
|
|
|
value:'itemCode',
|
|
|
|
message: '请选择物料代码!',
|
|
|
|
isMainValue: true
|
|
|
|
},{
|
|
|
|
key: 'available',
|
|
|
|
value: 'TRUE',
|
|
|
|
isMainValue: false
|
|
|
|
}],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tableForm:{
|
|
|
|
multiple:true,
|
|
|
|
isInpuFocusShow: true,
|
|
|
|
searchListPlaceholder: '请选择物料代码', // 输入框占位文本
|
|
|
|
searchField: 'productionLineCode', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '生产线物料关系信息', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Productionlineitem.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: ProductionlineitemApi.getProductionlineitemPage, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{
|
|
|
|
key:'itemCode',
|
|
|
|
value:'itemCode',
|
|
|
|
message: '请选择物料代码!',
|
|
|
|
isMainValue: true
|
|
|
|
},{
|
|
|
|
key: 'available',
|
|
|
|
value: 'TRUE',
|
|
|
|
isMainValue: false
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '工序',
|
|
|
|
field: 'processCode',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
tableForm:{
|
|
|
|
isInpuFocusShow: true,
|
|
|
|
searchListPlaceholder: '请选择工序代码',
|
|
|
|
searchField: 'code',
|
|
|
|
searchTitle: '工序信息',
|
|
|
|
searchAllSchemas: Process.allSchemas,
|
|
|
|
searchPage: ProcessApi.getProcessPage,
|
|
|
|
searchCondition: [{
|
|
|
|
key: 'productionLineCode',
|
|
|
|
value: 'productionLine',
|
|
|
|
isMainValue: true
|
|
|
|
},{
|
|
|
|
key: 'available',
|
|
|
|
value: 'TRUE',
|
|
|
|
isMainValue: false
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
form: {
|
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: {
|
|
|
|
isSearchList: true,
|
|
|
|
searchListPlaceholder: '请选择工序代码',
|
|
|
|
searchField: 'code',
|
|
|
|
searchTitle: '工序信息',
|
|
|
|
searchAllSchemas: Process.allSchemas,
|
|
|
|
searchPage: ProcessApi.getProcessPage,
|
|
|
|
searchCondition: [{
|
|
|
|
key: 'productionLineCode',
|
|
|
|
value: 'productionLine',
|
|
|
|
isMainValue: true
|
|
|
|
},{
|
|
|
|
key: 'available',
|
|
|
|
value: 'TRUE',
|
|
|
|
isMainValue: false
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '库位代码',
|
|
|
|
field: 'locationCode',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
tableForm:{
|
|
|
|
multiple:true,//多选
|
|
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择库位代码', // 输入框占位文本
|
|
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '库位基础信息', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Location.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: LocationApi.getLocationPage, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{
|
|
|
|
key: 'available',
|
|
|
|
value: 'TRUE',
|
|
|
|
isMainValue: false
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
form: {
|
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: {
|
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
multiple:true,//多选
|
|
|
|
searchListPlaceholder: '请选择库位代码', // 输入框占位文本
|
|
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '库位基础信息', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Location.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: LocationApi.getLocationPage, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{
|
|
|
|
key: 'available',
|
|
|
|
value: 'TRUE',
|
|
|
|
isMainValue: false
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '子物料代码',
|
|
|
|
field: 'componentItemCode',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
tableForm: {
|
|
|
|
isInpuFocusShow: true,
|
|
|
|
searchListPlaceholder: '请选择子物料代码版本', // 输入框占位文本
|
|
|
|
searchField: 'componentItemCode', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '物料清单信息', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Bom.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: BomApi.getBomPage, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{
|
|
|
|
key:'productItemCode',
|
|
|
|
value:'itemCode',
|
|
|
|
message: '请填写物料代码!',
|
|
|
|
isMainValue: true
|
|
|
|
},{
|
|
|
|
key: 'available',
|
|
|
|
value: 'TRUE',
|
|
|
|
isMainValue: false
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
form: {
|
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: {
|
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择Bom版本', // 输入框占位文本
|
|
|
|
searchField: 'componentItemCode', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '物料清单信息', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Bom.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: BomApi.getBomPage, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{
|
|
|
|
key:'productItemCode',
|
|
|
|
value:'itemCode',
|
|
|
|
message: '请填写物料代码!',
|
|
|
|
isMainValue: true
|
|
|
|
},{
|
|
|
|
key: 'available',
|
|
|
|
value: 'TRUE',
|
|
|
|
isMainValue: false
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '批次',
|
|
|
|
field: 'batch',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '子物料数量',
|
|
|
|
field: 'componentItemcodeQty',
|
|
|
|
sort: 'custom',
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
form: {
|
|
|
|
component: 'InputNumber',
|
|
|
|
componentProps: {
|
|
|
|
min: 0,
|
|
|
|
precision: 6
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tableForm: {
|
|
|
|
type: 'InputNumber',
|
|
|
|
min: 0,
|
|
|
|
precision: 6
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '生效日期',
|
|
|
|
field: 'effectiveDate',
|
|
|
|
sort: 'custom',
|
|
|
|
detail: {
|
|
|
|
dateFormat: 'YYYY-MM-DD'
|
|
|
|
},
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
form: {
|
|
|
|
component: 'DatePicker',
|
|
|
|
componentProps: {
|
|
|
|
style: {width: '100%'},
|
|
|
|
type: 'date',
|
|
|
|
dateFormat: 'YYYY-MM-DD',
|
|
|
|
valueFormat: 'x',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tableForm:{
|
|
|
|
type:'FormDate',
|
|
|
|
placeholder: '请选择生产日期',
|
|
|
|
valueFormat: 'x',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '是否可用',
|
|
|
|
field: 'available',
|
|
|
|
sort: 'custom',
|
|
|
|
isTable:false,
|
|
|
|
isTableForm:false,
|
|
|
|
isForm:false,
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '备注',
|
|
|
|
field: 'remark',
|
|
|
|
sort: 'custom',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '创建时间',
|
|
|
|
field: 'createTime',
|
|
|
|
sort: 'custom',
|
|
|
|
formatter: dateFormatter,
|
|
|
|
isForm: false,
|
|
|
|
isTableForm: false,
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '删除时间',
|
|
|
|
field: 'deletionTime',
|
|
|
|
sort: 'custom',
|
|
|
|
formatter: dateFormatter,
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isForm: false,
|
|
|
|
isTableForm: false,
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
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: '删除者ID',
|
|
|
|
field: 'deleterId',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isForm: false,
|
|
|
|
isTableForm: false,
|
|
|
|
table: {
|
|
|
|
width: 150
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '扩展属性',
|
|
|
|
field: 'extraProperties',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isForm: false,
|
|
|
|
isTableForm: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '并发乐观锁',
|
|
|
|
field: 'concurrencyStamp',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isForm: false,
|
|
|
|
isTableForm: false,
|
|
|
|
form: {
|
|
|
|
component: 'InputNumber',
|
|
|
|
value: 0
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '地点ID',
|
|
|
|
field: 'siteId',
|
|
|
|
sort: 'custom',
|
|
|
|
isSearch: false,
|
|
|
|
isTable:false,
|
|
|
|
isForm: false,
|
|
|
|
isTableForm: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '主表ID',
|
|
|
|
field: 'masterId',
|
|
|
|
sort: 'custom',
|
|
|
|
hiddenInMain:true,
|
|
|
|
isTable:false,
|
|
|
|
isTableForm:false,
|
|
|
|
isForm: false,
|
|
|
|
form: {
|
|
|
|
component: 'InputNumber',
|
|
|
|
value: 0
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '操作',
|
|
|
|
field: 'action',
|
|
|
|
isForm: false,
|
|
|
|
isTable:false,
|
|
|
|
isTableForm:false,
|
|
|
|
hiddenInMain:true,
|
|
|
|
table: {
|
|
|
|
width: 150,
|
|
|
|
fixed: 'right'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]))
|
|
|
|
|
|
|
|
// 表单校验
|
|
|
|
export const ProcessproductionRequestDetailRules = reactive({
|
|
|
|
productionLine: [
|
|
|
|
{ required: true, message: '请选择生产线代码', trigger: 'change' }
|
|
|
|
],
|
|
|
|
processCode: [
|
|
|
|
{ required: true, message: '请选择工序代码', trigger: 'change' }
|
|
|
|
],
|
|
|
|
locationCode: [
|
|
|
|
{ required: true, message: '请选择库位代码', trigger: 'change' }
|
|
|
|
],
|
|
|
|
componentItemCode:[
|
|
|
|
{ required: true, message: '请选择子物料代码', trigger: 'change' }
|
|
|
|
],
|
|
|
|
componentItemcodeQty:[
|
|
|
|
{ required: true, message: '请输入子物料数量', trigger: 'change' }
|
|
|
|
],
|
|
|
|
batch:[
|
|
|
|
{ required: true, message: '请输入批次', trigger: 'change' }
|
|
|
|
],
|
|
|
|
effectiveDate:[
|
|
|
|
{ required: true, message: '请输入生效日期', trigger: 'change' }
|
|
|
|
],
|
|
|
|
})
|