From 1eec47f41012effc7e1eb962ba75c2e64131b260 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Thu, 25 Sep 2025 15:30:28 +0800 Subject: [PATCH] =?UTF-8?q?style:=20UDM=E6=95=B0=E6=8D=AE=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E5=88=9B=E5=BB=BA=E6=97=B6=E9=97=B4=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/neData/udm-auth/index.vue | 11 ++++++++ src/views/neData/udm-sub/index.vue | 23 ++++++++++++++-- src/views/neData/udm-voip/index.vue | 40 ++++++++++++++++++++++----- src/views/neData/udm-volte/index.vue | 41 +++++++++++++++++++++++----- 4 files changed, 99 insertions(+), 16 deletions(-) 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(() => {