diff --git a/src/views/neData/udm-auth/index.vue b/src/views/neData/udm-auth/index.vue index 70c4edb5..fa70901e 100644 --- a/src/views/neData/udm-auth/index.vue +++ b/src/views/neData/udm-auth/index.vue @@ -26,6 +26,7 @@ import { } from '@/api/neData/udm_auth'; import { uploadFile } from '@/api/tool/file'; import { getNeViewFile } from '@/api/tool/neFile'; +import { parseDateToStr } from '@/utils/date-utils'; const { t } = useI18n(); const neListStore = useNeListStore(); /**网元参数 */ @@ -117,6 +118,16 @@ let tableColumns = ref([ align: 'center', width: 100, }, + { + title: 'Create Time', + dataIndex: 'createTime', + align: 'left', + width: 250, + customRender(opt) { + if (!opt.value) return ''; + return parseDateToStr(+opt.value); + }, + }, { title: t('common.operate'), key: 'imsi', diff --git a/src/views/neData/udm-sub/index.vue b/src/views/neData/udm-sub/index.vue index 2653d830..d76a4784 100644 --- a/src/views/neData/udm-sub/index.vue +++ b/src/views/neData/udm-sub/index.vue @@ -26,6 +26,7 @@ import { } from '@/api/neData/udm_sub'; import { uploadFile } from '@/api/tool/file'; import { getNeViewFile } from '@/api/tool/neFile'; +import { parseDateToStr } from '@/utils/date-utils'; const { t } = useI18n(); const neListStore = useNeListStore(); /**网元参数 */ @@ -155,6 +156,16 @@ let tableColumns = ref([ minWidth: 150, maxWidth: 500, }, + { + title: 'Create Time', + dataIndex: 'createTime', + align: 'left', + width: 250, + customRender(opt) { + if (!opt.value) return ''; + return parseDateToStr(+opt.value); + }, + }, { title: t('common.operate'), key: 'imsi', @@ -1220,7 +1231,11 @@ onMounted(() => {