|
|
@ -380,6 +380,25 @@ export const ScrapRecordMain = useCrudSchemas( |
|
|
|
width: 150 |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '是否已撤销', |
|
|
|
field: 'revokeFlag', |
|
|
|
sort: 'custom', |
|
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
detail:{ |
|
|
|
// dictType:'primary',
|
|
|
|
// valueFilter:(value)=>{
|
|
|
|
// if(value=='TRUE'){
|
|
|
|
// return `是`
|
|
|
|
// }else{
|
|
|
|
// return '否'
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '创建时间', |
|
|
|
field: 'createTime', |
|
|
@ -462,22 +481,6 @@ export const ScrapRecordMain = useCrudSchemas( |
|
|
|
// width: 150
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
{ |
|
|
|
label: '是否可用', |
|
|
|
field: 'available', |
|
|
|
dictType: DICT_TYPE.TRUE_FALSE, |
|
|
|
dictClass: 'string', |
|
|
|
isSearch: false, |
|
|
|
isTable: true, |
|
|
|
form: { |
|
|
|
component: 'Switch', |
|
|
|
value: 'TRUE', |
|
|
|
componentProps: { |
|
|
|
inactiveValue: 'FALSE', |
|
|
|
activeValue: 'TRUE' |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '操作', |
|
|
|
field: 'action', |
|
|
@ -732,6 +735,24 @@ export const ScrapRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '是否已撤销', |
|
|
|
field: 'revokeFlag', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
}, |
|
|
|
detail:{ |
|
|
|
dictType:'primary', |
|
|
|
valueFilter:(value)=>{ |
|
|
|
if(value=='TRUE'){ |
|
|
|
return `是` |
|
|
|
}else{ |
|
|
|
return '否' |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '接口类型', |
|
|
|
field: 'interfaceType', |
|
|
|