|
|
@ -185,6 +185,7 @@ export const ScrapRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'departmentCode', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isTable:false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
@ -208,17 +209,17 @@ export const ScrapRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
label: '备注', |
|
|
|
field: 'remark', |
|
|
|
sort: 'custom', |
|
|
|
isTable:false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isTable: false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '自动提交', |
|
|
|
field: 'autoCommit', |
|
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
|
dictClass: 'string', |
|
|
|
isTable: true, |
|
|
|
isTable: false, |
|
|
|
isForm: false, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
@ -239,7 +240,7 @@ export const ScrapRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'autoAgree', |
|
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
|
dictClass: 'string', |
|
|
|
isTable: true, |
|
|
|
isTable: false, |
|
|
|
isForm: false, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
@ -260,7 +261,7 @@ export const ScrapRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'autoExecute', |
|
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
|
dictClass: 'string', |
|
|
|
isTable: true, |
|
|
|
isTable: false, |
|
|
|
isForm: false, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
@ -317,6 +318,7 @@ export const ScrapRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
valueFormat: 'x', |
|
|
|
} |
|
|
|
}, |
|
|
|
isTable:false, |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|
{ |
|
|
@ -326,6 +328,7 @@ export const ScrapRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isTable:false, |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|
{ |
|
|
@ -348,6 +351,7 @@ export const ScrapRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
valueFormat: 'x', |
|
|
|
} |
|
|
|
}, |
|
|
|
isTable:false, |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|
{ |
|
|
@ -357,6 +361,7 @@ export const ScrapRequestMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
isTable:false, |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|
{ |
|
|
@ -404,6 +409,7 @@ export const ScrapRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
hiddenInMain:true, |
|
|
|
isTableForm: false, |
|
|
|
form: { |
|
|
|
componentProps: { |
|
|
@ -765,6 +771,7 @@ export const ScrapRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
width: 150, |
|
|
|
fixed: 'right' |
|
|
|
}, |
|
|
|
hiddenInMain:true, |
|
|
|
isTableForm:false, |
|
|
|
} |
|
|
|
])) |
|
|
|