|
|
@ -214,19 +214,19 @@ export const Opersteps = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
isTableForm:true, |
|
|
|
} |
|
|
|
])) |
|
|
|
export const popList = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
export const teamPopList = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
{ |
|
|
|
label: '多选列表', |
|
|
|
field: 'popCheckList', |
|
|
|
label: '选择班组', |
|
|
|
field: 'list', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '请选择仓库代码', // 输入框占位文本
|
|
|
|
searchListPlaceholder: '请选择选择班组', // 输入框占位文本
|
|
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '仓库信息', // 查询弹窗标题
|
|
|
|
searchTitle: '选择班组', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Team.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: WorkstationApi.checkTeamPageList, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{ |
|
|
@ -238,3 +238,78 @@ export const popList = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
} |
|
|
|
} |
|
|
|
])) |
|
|
|
export const equipmentPopList = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
{ |
|
|
|
label: '选择设备', |
|
|
|
field: 'list', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
multiple:true, |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '选择设备', // 输入框占位文本
|
|
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '选择设备', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Team.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: WorkstationApi.checkEquipmentPageList, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{ |
|
|
|
key: 'available', |
|
|
|
value: 'TRUE', |
|
|
|
isMainValue: false |
|
|
|
}] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
])) |
|
|
|
export const processPopList = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
{ |
|
|
|
label: '选择工序', |
|
|
|
field: 'list', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
multiple:true, |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '选择工序', // 输入框占位文本
|
|
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '选择工序', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Team.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: WorkstationApi.checkProcessPageList, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{ |
|
|
|
key: 'available', |
|
|
|
value: 'TRUE', |
|
|
|
isMainValue: false |
|
|
|
}] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
])) |
|
|
|
export const stepPopList = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
{ |
|
|
|
label: '选择操作步骤', |
|
|
|
field: 'list', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
|
multiple:true, |
|
|
|
isSearchList: true, // 开启查询弹窗
|
|
|
|
searchListPlaceholder: '选择操作步骤', // 输入框占位文本
|
|
|
|
searchField: 'code', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '选择操作步骤', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Team.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: WorkstationApi.checkOperstepsPageList, // 查询弹窗所需分页方法
|
|
|
|
searchCondition: [{ |
|
|
|
key: 'available', |
|
|
|
value: 'TRUE', |
|
|
|
isMainValue: false |
|
|
|
}] |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
])) |
|
|
|