|
|
@ -100,6 +100,9 @@ export const RelegateRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
|
|
} |
|
|
|
}, |
|
|
|
detail: { |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
|
}, |
|
|
|
isForm: false, |
|
|
|
isTable: false |
|
|
|
}, |
|
|
@ -130,21 +133,8 @@ export const RelegateRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
|
|
} |
|
|
|
}, |
|
|
|
isForm: false, |
|
|
|
isTable: false |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '截止时间', |
|
|
|
field: 'dueTime', |
|
|
|
sort: 'custom', |
|
|
|
formatter: dateFormatter, |
|
|
|
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')] |
|
|
|
} |
|
|
|
detail: { |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
|
}, |
|
|
|
isForm: false, |
|
|
|
isTable: false |
|
|
@ -153,7 +143,9 @@ export const RelegateRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
label: '部门', |
|
|
|
field: 'departmentCode', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isForm:false, |
|
|
|
isTableForm: false, |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '状态', |
|
|
@ -257,21 +249,24 @@ export const RelegateRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'concurrencyStamp', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isTable: false |
|
|
|
isTable: false, |
|
|
|
isDetail:false |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '权限所属人员id', |
|
|
|
field: 'ruleUserId', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isTable: false |
|
|
|
isTable: false, |
|
|
|
isDetail:false |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '工作流流水号', |
|
|
|
field: 'serialNumber', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isTable: false |
|
|
|
isTable: false, |
|
|
|
isDetail:false |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '原因', |
|
|
@ -285,7 +280,8 @@ export const RelegateRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
table: { |
|
|
|
width: 200, |
|
|
|
fixed: 'right' |
|
|
|
} |
|
|
|
}, |
|
|
|
isDetail:false |
|
|
|
} |
|
|
|
])) |
|
|
|
|
|
|
@ -311,7 +307,7 @@ export const RelegateRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
searchField: 'itemCode', |
|
|
|
searchTitle: '库存余额信息', |
|
|
|
searchAllSchemas: Balance.allSchemas, |
|
|
|
searchPage: BalanceApi.getBalancePageByBusinessTypeByItemType, |
|
|
|
searchPage: BalanceApi.getBalanceByBusinessTypeByItemType, |
|
|
|
searchCondition: [] |
|
|
|
} |
|
|
|
}, |
|
|
@ -321,7 +317,7 @@ export const RelegateRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
searchField: 'itemCode', // 查询弹窗赋值字段
|
|
|
|
searchTitle: '库存余额信息', // 查询弹窗标题
|
|
|
|
searchAllSchemas: Balance.allSchemas, // 查询弹窗所需类
|
|
|
|
searchPage: BalanceApi.getBalancePageByBusinessTypeByItemType, // 查询弹窗所需分页方法
|
|
|
|
searchPage: BalanceApi.getBalanceByBusinessTypeByItemType, // 查询弹窗所需分页方法
|
|
|
|
searchCondition:[ |
|
|
|
{ |
|
|
|
key: 'available', |
|
|
@ -596,14 +592,6 @@ export const RelegateRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
isTableForm: false, |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '扩展属性', |
|
|
|
field: 'extraProperties', |
|
|
|
sort: 'custom', |
|
|
|
isForm:false, |
|
|
|
isTableForm: false, |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '创建时间', |
|
|
|
field: 'createTime', |
|
|
@ -617,6 +605,9 @@ export const RelegateRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
|
|
} |
|
|
|
}, |
|
|
|
detail: { |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
|
}, |
|
|
|
isForm:false, |
|
|
|
isTableForm: false, |
|
|
|
isTable:false, |
|
|
|