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.
971 lines
20 KiB
971 lines
20 KiB
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
|
import { selectAllFactoryArea } from '@/api/system/dept'
|
|
import * as DeviceAccountsApi from '@/api/eam/device/deviceAccounts'
|
|
import { useUserStore } from '@/store/modules/user'
|
|
import { ItemSearchTable } from '../../basic/item/item.data'
|
|
import * as ItemApi from '@/api/eam/basic/item'
|
|
import * as UserApi from '@/api/system/user'
|
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict'
|
|
import { selecUserByType } from '@/api/system/dept'
|
|
const userStore = useUserStore()
|
|
const factoryList = await selectAllFactoryArea()
|
|
const deviceList = await DeviceAccountsApi.getDeviceAccountsNoPage({})
|
|
const userListAll = await UserApi.getSimpleUserList()
|
|
const deviceListAll = await DeviceAccountsApi.getDeviceAccountsAllNoPage({})
|
|
const dutyUserList = await selecUserByType({ classType: 'DEVICE', factoryAreaNumber: '', flag: null })
|
|
const deviceTypeList = getStrDictOptions(DICT_TYPE.APP_DEVICE_MOLD_TYPE).filter(item => item.value != 'MOLD')
|
|
const deviceMoldTypeList = getStrDictOptions(DICT_TYPE.APP_DEVICE_MOLD_TYPE)
|
|
// 表单校验
|
|
export const DeviceMaintenanceMainRules = reactive({
|
|
number: [required],
|
|
requestNumber: [required],
|
|
deviceNumber: [required],
|
|
factoryAreaNumber: [required],
|
|
maintenance: [required],
|
|
type: [required],
|
|
classes: [required],
|
|
faultType: [required],
|
|
describes: [
|
|
required,
|
|
{ max: 200, message: '不得超过200个字符', trigger: 'blur' },
|
|
],
|
|
})
|
|
|
|
export const DeviceMaintenanceMain = useCrudSchemas(reactive<CrudSchema[]>([
|
|
{
|
|
label: '维修工单编号',
|
|
field: 'number',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
fixed: 'left',
|
|
},
|
|
isSearch: false,
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '报修工单编号',
|
|
field: 'requestNumber',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isForm: false,
|
|
isSearch: false,
|
|
isTable: true,
|
|
},
|
|
{
|
|
label: '设备',
|
|
field: 'deviceNumber',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isDetail: false,
|
|
api: () => deviceList,
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return deviceListAll.find((account) => account.number == cellValue)?.name
|
|
},
|
|
search: {
|
|
show: false,
|
|
component: 'Input',
|
|
api: () => deviceList,
|
|
componentProps: {
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'number'
|
|
},
|
|
filterable: true,
|
|
}
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
api: () => deviceList,
|
|
componentProps: {
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'number'
|
|
},
|
|
filterable: true,
|
|
},
|
|
}
|
|
},
|
|
{
|
|
label: '设备',
|
|
field: 'deviceNumberDetail',
|
|
sort: 'custom',
|
|
isDetail: true,
|
|
isForm: false,
|
|
isSearch: false,
|
|
isTable: false,
|
|
isTableForm: false,
|
|
},
|
|
{
|
|
label: '厂区',
|
|
field: 'factoryAreaNumber',
|
|
sort: 'custom',
|
|
isDetail: false,
|
|
table: {
|
|
width: '150',
|
|
},
|
|
api: () => factoryList,
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return factoryList.find((account) => account.id == cellValue)?.name
|
|
},
|
|
search: {
|
|
show: true,
|
|
component: 'Select',
|
|
api: () => factoryList,
|
|
componentProps: {
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
}
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
api: () => factoryList,
|
|
componentProps: {
|
|
disabled: true,
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
placeholder: "请先选择设备"
|
|
},
|
|
}
|
|
},
|
|
{
|
|
label: '厂区',
|
|
field: 'factoryAreaNumberDetail',
|
|
sort: 'custom',etail: true,
|
|
isForm: false,
|
|
isSearch: false,
|
|
isTable: false,
|
|
isTableForm: false,
|
|
table: {
|
|
width: 150
|
|
}
|
|
},
|
|
{
|
|
label: '维修人',
|
|
field: 'maintenance',
|
|
sort: 'custom',
|
|
isDetail: false,
|
|
table: {
|
|
width: '150',
|
|
},
|
|
api: () => userListAll,
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return userListAll.find((account) => account.id == cellValue)?.nickname
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
api: () => userListAll,
|
|
componentProps: {
|
|
disabled: true,
|
|
optionsAlias: {
|
|
labelField: 'nickname',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
placeholder: "请先选择设备"
|
|
},
|
|
},
|
|
isSearch: true,
|
|
search: {
|
|
component: 'Select',
|
|
api: () => userListAll,
|
|
componentProps: {
|
|
collapseTags: true,
|
|
collapseTagsTooltip: true,
|
|
optionsAlias: {
|
|
labelField: 'nickname',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '维修人',
|
|
field: 'maintenanceDetail',
|
|
sort: 'custom',
|
|
isDetail: true,
|
|
isForm: false,
|
|
isSearch: false,
|
|
isTable: false,
|
|
isTableForm: false,
|
|
table: {
|
|
width: 150
|
|
}
|
|
},
|
|
{
|
|
label: '类型',
|
|
field: 'type',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isDetail: false,
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return deviceMoldTypeList.find((account) => account.value == cellValue)?.label
|
|
},
|
|
// dictType: DICT_TYPE.APP_DEVICE_MOLD_TYPE,
|
|
isSearch: true,
|
|
search: {
|
|
component: 'Select',
|
|
componentProps: {
|
|
options: deviceTypeList,
|
|
optionsAlias: {
|
|
labelField: 'label',
|
|
valueField: 'value'
|
|
},
|
|
filterable: true,
|
|
},
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
componentProps: {
|
|
options: deviceTypeList,
|
|
optionsAlias: {
|
|
labelField: 'label',
|
|
valueField: 'value'
|
|
},
|
|
disabled: true,
|
|
filterable: true,
|
|
placeholder: "请选择设备"
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '类型',
|
|
field: 'typeDetail',
|
|
sort: 'custom',
|
|
isDetail: true,
|
|
isForm: false,
|
|
isSearch: false,
|
|
isTable: false,
|
|
isTableForm: false,
|
|
},
|
|
{
|
|
label: '班次',
|
|
field: 'classes',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isDetail: false,
|
|
isSearch: true,
|
|
dictType: DICT_TYPE.MAINTENANCE_SHIFT,
|
|
dictClass: 'number',
|
|
form: {
|
|
component: 'Select'
|
|
},
|
|
},
|
|
{
|
|
label: '故障类型',
|
|
field: 'faultType',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isDetail: false,
|
|
isSearch: false,
|
|
dictType: DICT_TYPE.FAULT_TYPE,
|
|
dictClass: 'string',
|
|
form: {
|
|
component: 'Select'
|
|
},
|
|
},
|
|
{
|
|
label: '描述',
|
|
field: 'describes',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
form: {
|
|
component: 'Input',
|
|
componentProps: {
|
|
type: 'textarea',
|
|
}
|
|
|
|
},
|
|
},
|
|
{
|
|
label: '是否完成',
|
|
field: 'status',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isSearch: false,
|
|
isTable: true,
|
|
isForm: false,
|
|
dictType: DICT_TYPE.WEI_XIU_ORDER_STATUS,
|
|
dictClass: 'string',
|
|
form: {
|
|
component: 'Select',
|
|
componentProps: {
|
|
disabled: false,
|
|
}
|
|
},
|
|
tableForm: {
|
|
type: 'Select',
|
|
componentProps: {
|
|
disabled: false,
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '完成方式',
|
|
field: 'result',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isSearch: false,
|
|
isTable: true,
|
|
isForm: false,
|
|
dictType: DICT_TYPE.ORDER_COMPLETE_RESULT,
|
|
dictClass: 'string',
|
|
},
|
|
{
|
|
label: '报修人',
|
|
field: 'declarer',
|
|
sort: 'custom',
|
|
isDetail: false,
|
|
table: {
|
|
width: '150',
|
|
},
|
|
api: () => userListAll,
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return userListAll.find((account) => account.id == cellValue)?.nickname
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
api: () => userListAll,
|
|
componentProps: {
|
|
disabled: true,
|
|
optionsAlias: {
|
|
labelField: 'nickname',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
placeholder: "请先选择设备"
|
|
},
|
|
},
|
|
isSearch: true,
|
|
search: {
|
|
component: 'Select',
|
|
api: () => userListAll,
|
|
componentProps: {
|
|
collapseTags: true,
|
|
collapseTagsTooltip: true,
|
|
optionsAlias: {
|
|
labelField: 'nickname',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '报修人',
|
|
field: 'declarerDetail',
|
|
sort: 'custom',
|
|
isDetail: true,
|
|
isForm: false,
|
|
isSearch: false,
|
|
isTable: false,
|
|
isTableForm: false,
|
|
table: {
|
|
width: 150
|
|
}
|
|
},
|
|
{
|
|
label: '报修人意见',
|
|
field: 'applyContent',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
}
|
|
},
|
|
{
|
|
label: '验证人',
|
|
field: 'verifyer',
|
|
sort: 'custom',
|
|
isDetail: false,
|
|
table: {
|
|
width: '150',
|
|
},
|
|
api: () => userListAll,
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return userListAll.find((account) => account.id == cellValue)?.nickname
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
api: () => userListAll,
|
|
componentProps: {
|
|
disabled: true,
|
|
optionsAlias: {
|
|
labelField: 'nickname',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
placeholder: "请先选择设备"
|
|
},
|
|
},
|
|
isSearch: true,
|
|
search: {
|
|
component: 'Select',
|
|
api: () => userListAll,
|
|
componentProps: {
|
|
collapseTags: true,
|
|
collapseTagsTooltip: true,
|
|
optionsAlias: {
|
|
labelField: 'nickname',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '验证人',
|
|
field: 'verifyerDetail',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
},
|
|
isDetail: true,
|
|
isForm: false,
|
|
isSearch: false,
|
|
isTable: false,
|
|
isTableForm: false,
|
|
},
|
|
{
|
|
label: '验证人意见',
|
|
field: 'verifyContent',
|
|
sort: 'custom',
|
|
table: {
|
|
width: 150
|
|
}
|
|
},
|
|
|
|
{
|
|
label: '操作',
|
|
field: 'action',
|
|
isForm: false,
|
|
table: {
|
|
width: 300,
|
|
fixed: 'right'
|
|
},
|
|
isDetail: false
|
|
}
|
|
]))
|
|
|
|
export const DeviceMaintenanceDetail = useCrudSchemas(reactive<CrudSchema[]>([
|
|
{
|
|
label: '维修编号',
|
|
field: 'number',
|
|
sort: 'custom',
|
|
isSearch: false,
|
|
form: {
|
|
component: 'Input',
|
|
componentProps: {
|
|
disabled: true
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '故障描述',
|
|
field: 'describes',
|
|
sort: 'custom',
|
|
table: {
|
|
},
|
|
isSearch: false,
|
|
form: {
|
|
component: 'Input',
|
|
componentProps: {
|
|
type: 'textarea',
|
|
}
|
|
|
|
},
|
|
},
|
|
{
|
|
label: '故障真因',
|
|
field: 'describes1',
|
|
sort: 'custom',
|
|
table: {
|
|
},
|
|
isSearch: false,
|
|
form: {
|
|
component: 'Input',
|
|
componentProps: {
|
|
type: 'textarea',
|
|
}
|
|
|
|
},
|
|
},
|
|
{
|
|
label: '解决措施',
|
|
field: 'workOut',
|
|
sort: 'custom',
|
|
table: {
|
|
},
|
|
isSearch: false,
|
|
form: {
|
|
component: 'Input',
|
|
componentProps: {
|
|
type: 'textarea',
|
|
}
|
|
|
|
},
|
|
},
|
|
{
|
|
label: '维修人',
|
|
field: 'maintenances',
|
|
sort: 'custom',
|
|
isDetail: false,
|
|
// formatter: (_: Recordable, __: TableColumn, cellValue) => {
|
|
// let cellValueList = []
|
|
// if (Array.isArray(cellValue)) {
|
|
// cellValueList = cellValue
|
|
// } else {
|
|
// cellValueList = cellValue ? cellValue.split(',') : [];
|
|
// }
|
|
// // const cellValueList = cellValue ? cellValue.split(',') : [];
|
|
// return userListAll
|
|
// .filter(item => cellValueList.includes(item.id.toString()))
|
|
// .map(item => item.nickname)
|
|
// .join(',');
|
|
// },
|
|
isTable:true,
|
|
tableForm: {
|
|
type: 'Select',
|
|
initOptions: userListAll,
|
|
multiple: true,
|
|
collapseTags: true,
|
|
collapseTagsTooltip: true,
|
|
optionsAlias: {
|
|
labelField: 'nickname',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
// api: () => dutyUserList,
|
|
componentProps: {
|
|
multiple: true,
|
|
collapseTags: true,
|
|
collapseTagsTooltip: true,
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
}
|
|
}
|
|
},
|
|
{
|
|
label: '维修人',
|
|
field: 'maintenancesName',
|
|
sort: 'custom',
|
|
isForm:false,
|
|
isDetail:true,
|
|
isTable:false,
|
|
isTableForm:false
|
|
},
|
|
{
|
|
label: '备件',
|
|
field: 'itemNumbers1',
|
|
sort: 'custom',
|
|
table: {
|
|
},
|
|
tableForm: {
|
|
isInpuFocusShow: true, // 开启查询弹窗
|
|
searchListPlaceholder: '请选择备件',
|
|
searchField: 'itemNumbers1',
|
|
searchTitle: '备件',
|
|
multiple: true,
|
|
searchAllSchemas: ItemSearchTable.allSchemas,
|
|
searchPage: ItemApi.getItemList,
|
|
searchCondition: [{
|
|
key: 'number',
|
|
value: 'deviceNumber',
|
|
message: '请选择设备模具编号!',
|
|
isMainValue: true
|
|
}]
|
|
},
|
|
form: {
|
|
// labelMessage: '信息提示说明!!!',
|
|
componentProps: {
|
|
isSearchList: true, // 开启查询弹窗
|
|
searchListPlaceholder: '请选择备件', // 输入框占位文本
|
|
searchField: 'itemNumbers1', // 查询弹窗赋值字段
|
|
searchTitle: '备件', // 查询弹窗标题
|
|
multiple: true,
|
|
searchAllSchemas: ItemSearchTable.allSchemas, // 查询弹窗所需类
|
|
searchPage: ItemApi.getItemList, // 查询弹窗所需分页方法
|
|
searchCondition: [{
|
|
key: 'number',
|
|
value: 'deviceNumber',
|
|
message: '请选择设备模具编号!',
|
|
isMainValue: true
|
|
}]
|
|
}
|
|
},
|
|
isSearch: false,
|
|
},
|
|
{
|
|
label: '备件1',
|
|
field: 'itemNumbers',
|
|
sort: 'custom',
|
|
table: {
|
|
},
|
|
isForm: false,
|
|
isDetail: false,
|
|
isTable: false,
|
|
isSearch: false,
|
|
isTableForm: false,
|
|
},
|
|
{
|
|
label: '操作',
|
|
field: 'action',
|
|
isForm: false,
|
|
table: {
|
|
width: 300,
|
|
fixed: 'right'
|
|
},
|
|
isDetail: false,
|
|
isTableForm: false,
|
|
}
|
|
]))
|
|
// 表单校验
|
|
export const DeviceMaintenanceDetailRules = reactive({
|
|
describes: [
|
|
required,
|
|
{ max: 200, message: '不得超过200个字符', trigger: 'blur' },
|
|
],
|
|
describes1: [
|
|
required,
|
|
{ max: 200, message: '不得超过200个字符', trigger: 'blur' },
|
|
],
|
|
workOut: [
|
|
required,
|
|
{ max: 200, message: '不得超过200个字符', trigger: 'blur' },
|
|
],
|
|
maintenances: [required],
|
|
})
|
|
|
|
|
|
|
|
// 表单校验
|
|
export const DeviceMaintenanceMainSecRules = reactive({
|
|
number: [required],
|
|
requestNumber: [required],
|
|
deviceNumber: [required],
|
|
factoryAreaNumber: [required],
|
|
maintenance: [required],
|
|
turnType: [required],
|
|
type: [required],
|
|
classes: [required],
|
|
faultType: [required],
|
|
describes: [
|
|
required,
|
|
{ max: 200, message: '不得超过200个字符', trigger: 'blur' },
|
|
],
|
|
})
|
|
|
|
export const DeviceMaintenanceMainSec = useCrudSchemas(reactive<CrudSchema[]>([
|
|
{
|
|
label: '维修工单编号',
|
|
field: 'number',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isSearch: false,
|
|
isForm: false,
|
|
},
|
|
{
|
|
label: '报修工单编号',
|
|
field: 'requestNumber',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isForm: false,
|
|
isSearch: false,
|
|
isTable: true,
|
|
},
|
|
{
|
|
label: '转办类型',
|
|
field: 'turnType',
|
|
sort: 'custom',
|
|
isDetail: false,
|
|
isTable: false,
|
|
isSearch: false,
|
|
isForm: true,
|
|
dictType: DICT_TYPE.TURN_TYPE,
|
|
dictClass: 'string',
|
|
form: {
|
|
component: 'Select',
|
|
}
|
|
},
|
|
{
|
|
label: '类型',
|
|
field: 'type',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return deviceMoldTypeList.find((account) => account.value == cellValue)?.label
|
|
},
|
|
isSearch: true,
|
|
search: {
|
|
component: 'Select',
|
|
componentProps: {
|
|
options: deviceMoldTypeList,
|
|
optionsAlias: {
|
|
labelField: 'label',
|
|
valueField: 'value'
|
|
},
|
|
filterable: true,
|
|
},
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
componentProps: {
|
|
options: deviceMoldTypeList,
|
|
optionsAlias: {
|
|
labelField: 'label',
|
|
valueField: 'value'
|
|
},
|
|
filterable: true,
|
|
placeholder: "请选择设备"
|
|
}
|
|
},
|
|
},
|
|
{
|
|
label: '厂区',
|
|
field: 'factoryAreaNumber',
|
|
sort: 'custom',
|
|
isDetail: false,
|
|
table: {
|
|
width: '150',
|
|
},
|
|
api: () => factoryList,
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return factoryList.find((account) => account.id == cellValue)?.name
|
|
},
|
|
search: {
|
|
show: true,
|
|
component: 'Select',
|
|
api: () => factoryList,
|
|
componentProps: {
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
}
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
api: () => factoryList,
|
|
componentProps: {
|
|
disabled: true,
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
placeholder: "请先选择设备"
|
|
},
|
|
}
|
|
},
|
|
{
|
|
label: '厂区',
|
|
field: 'factoryAreaNumber1',
|
|
sort: 'custom',
|
|
isDetail: true,
|
|
isSearch: false,
|
|
isForm: false,
|
|
isTable: false,
|
|
table: {
|
|
width: 150
|
|
}
|
|
},
|
|
{
|
|
label: '设备模具',
|
|
field: 'deviceNumber',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
api: () => deviceList,
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return deviceListAll.find((account) => account.number == cellValue)?.name
|
|
},
|
|
search: {
|
|
show: false,
|
|
component: 'Input',
|
|
api: () => deviceList,
|
|
componentProps: {
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'number'
|
|
},
|
|
filterable: true,
|
|
}
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
api: () => deviceList,
|
|
componentProps: {
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'number'
|
|
},
|
|
filterable: true,
|
|
},
|
|
}
|
|
},
|
|
{
|
|
label: '维修人',
|
|
field: 'maintenance',
|
|
sort: 'custom',
|
|
isDetail: false,
|
|
table: {
|
|
width: '150',
|
|
},
|
|
api: () => dutyUserList,
|
|
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
|
|
return dutyUserList.find((account) => account.id == cellValue)?.name
|
|
},
|
|
form: {
|
|
component: 'Select',
|
|
api: () => dutyUserList,
|
|
componentProps: {
|
|
disabled: false,
|
|
optionsAlias: {
|
|
labelField: 'name',
|
|
valueField: 'id'
|
|
},
|
|
filterable: true,
|
|
placeholder: "请先选择设备"
|
|
},
|
|
}
|
|
},
|
|
{
|
|
label: '维修人',
|
|
field: 'maintenance1',
|
|
sort: 'custom',
|
|
isDetail: true,
|
|
isSearch: false,
|
|
isForm: false,
|
|
isTable: false,
|
|
table: {
|
|
width: 150
|
|
}
|
|
},
|
|
{
|
|
label: '班次',
|
|
field: 'classes',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isSearch: true,
|
|
dictType: DICT_TYPE.MAINTENANCE_SHIFT,
|
|
dictClass: 'number',
|
|
form: {
|
|
component: 'Select'
|
|
},
|
|
},
|
|
{
|
|
label: '故障类型',
|
|
field: 'faultType',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isSearch: true,
|
|
dictType: DICT_TYPE.FAULT_TYPE,
|
|
dictClass: 'string',
|
|
form: {
|
|
component: 'Select'
|
|
},
|
|
},
|
|
{
|
|
label: '描述',
|
|
field: 'describes',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
form: {
|
|
component: 'Input',
|
|
componentProps: {
|
|
type: 'textarea',
|
|
}
|
|
|
|
},
|
|
},
|
|
{
|
|
label: '状态',
|
|
field: 'status',
|
|
sort: 'custom',
|
|
table: {
|
|
width: '150',
|
|
},
|
|
isSearch: false,
|
|
isTable: true,
|
|
isForm: false,
|
|
dictType: DICT_TYPE.WEI_XIU_ORDER_STATUS,
|
|
dictClass: 'string',
|
|
form: {
|
|
component: 'Select',
|
|
componentProps: {
|
|
disabled: false,
|
|
}
|
|
},
|
|
tableForm: {
|
|
type: 'Select',
|
|
componentProps: {
|
|
disabled: false,
|
|
}
|
|
},
|
|
},
|
|
// {
|
|
// label: '完成方式',
|
|
// field: 'result',
|
|
// sort: 'custom',
|
|
// table: {
|
|
// width: '150',
|
|
// },
|
|
// isSearch: false,
|
|
// isTable: true,
|
|
// isForm: false,
|
|
// dictType: DICT_TYPE.ORDER_COMPLETE_RESULT,
|
|
// dictClass: 'string',
|
|
// },
|
|
{
|
|
label: '操作',
|
|
field: 'action',
|
|
isForm: false,
|
|
table: {
|
|
width: 300,
|
|
fixed: 'right'
|
|
},
|
|
isDetail: false
|
|
}
|
|
]))
|