diff --git a/src/components/table/setting/ProfilesTable.vue b/src/components/table/setting/ProfilesTable.vue index 6376197d..b2adbff8 100644 --- a/src/components/table/setting/ProfilesTable.vue +++ b/src/components/table/setting/ProfilesTable.vue @@ -33,7 +33,7 @@
- + {{ dateFormatByAppearance(scope.row[item.prop]) || '-' }} @@ -83,13 +83,13 @@ export default { prop: 'entitySource', show: true, sortable: 'custom', - minWidth: 200 + minWidth: 100 }, { label: this.$t('setting.entityTypes'), prop: 'entities', show: true, - minWidth: 200 + minWidth: 150 }, { label: this.$t('setting.relationTypes'), @@ -99,14 +99,15 @@ export default { }, { label: this.$t('config.user.createTime'), - prop: 'create_time', + prop: 'ctime', show: true, - minWidth: 200 + minWidth: 150 }, { label: this.$t('overall.updateTime'), - prop: 'update_time', - show: true + prop: 'utime', + show: true, + minWidth: 150 } ] } diff --git a/src/components/table/setting/SourcesTable.vue b/src/components/table/setting/SourcesTable.vue index aa82ebca..3609bc0d 100644 --- a/src/components/table/setting/SourcesTable.vue +++ b/src/components/table/setting/SourcesTable.vue @@ -33,7 +33,7 @@ - + {{ dateFormatByAppearance(scope.row[item.prop]) || '-' }} @@ -144,7 +144,7 @@ export default { }, { label: this.$t('config.user.createTime'), - prop: 'create_time', + prop: 'ctime', show: true, minWidth: 150 }, diff --git a/src/views/setting/entitySetting/EntitySettingForm.vue b/src/views/setting/entitySetting/EntitySettingForm.vue index 76813f26..ecf7dafa 100644 --- a/src/views/setting/entitySetting/EntitySettingForm.vue +++ b/src/views/setting/entitySetting/EntitySettingForm.vue @@ -182,10 +182,10 @@