|
|
@ -196,6 +196,46 @@ export const Packageunit = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
formatter: dateFormatter, |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '创建者', |
|
|
|
field: 'creator', |
|
|
|
isForm: false, |
|
|
|
isTable: true |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '最后更新时间', |
|
|
|
field: 'updateTime', |
|
|
|
sort: 'custom', |
|
|
|
isDetail: true, |
|
|
|
isForm: false, |
|
|
|
isTable: false, |
|
|
|
formatter: dateFormatter, |
|
|
|
detail: { |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
|
}, |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
form: { |
|
|
|
component: 'DatePicker', |
|
|
|
componentProps: { |
|
|
|
style: {width:'100%'}, |
|
|
|
type: 'datetime', |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
|
valueFormat: 'x', |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '最后更新者', |
|
|
|
field: 'updater', |
|
|
|
isDetail: true, |
|
|
|
isForm: false, |
|
|
|
isTable: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '备注', |
|
|
|
field: 'remark', |
|
|
@ -210,6 +250,7 @@ export const Packageunit = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isTable: false, |
|
|
|
isDetail: false, |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
@ -226,6 +267,7 @@ export const Packageunit = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
label: '删除者', |
|
|
|
field: 'deleterId', |
|
|
|
sort: 'custom', |
|
|
|
isDetail: false, |
|
|
|
isForm: false, |
|
|
|
isTable: false, |
|
|
|
table: { |
|
|
@ -237,6 +279,7 @@ export const Packageunit = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'extraProperties', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isDetail: false, |
|
|
|
isTable: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
@ -247,6 +290,7 @@ export const Packageunit = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'concurrencyStamp', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isDetail: false, |
|
|
|
isTable: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
@ -261,6 +305,7 @@ export const Packageunit = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'siteId', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
isDetail: false, |
|
|
|
isTable: false, |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
@ -270,6 +315,7 @@ export const Packageunit = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
label: '操作', |
|
|
|
field: 'action', |
|
|
|
isForm: false, |
|
|
|
isDetail: false, |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
fixed: 'right' |
|
|
|