diff --git a/src/locales/langs/zh-cn.ts b/src/locales/langs/zh-cn.ts index 44e3149..ec6c141 100644 --- a/src/locales/langs/zh-cn.ts +++ b/src/locales/langs/zh-cn.ts @@ -541,7 +541,7 @@ const local: App.I18n.Schema = { title: '告警通知列表', groupName: '组名称', businessName: '业务ID', - notifyName: '告警通知名称', + notifyName: '通知名称', notifyStatus: '通知状态', notifyType: '通知类型', notifyScene: '通知场景', diff --git a/src/views/notify/config/index.vue b/src/views/notify/config/index.vue index d3e3630..87c657f 100644 --- a/src/views/notify/config/index.vue +++ b/src/views/notify/config/index.vue @@ -46,8 +46,8 @@ const { columns, columnChecks, data, getData, loading, mobilePagination, searchP width: 64 }, { - key: 'businessName', - title: $t('page.notifyConfig.businessName'), + key: 'notifyName', + title: $t('page.notifyConfig.notifyName'), align: 'left', width: 120, render: row => { @@ -58,7 +58,7 @@ const { columns, columnChecks, data, getData, loading, mobilePagination, searchP return ( - {row.businessName} + {row.notifyName} ); } diff --git a/src/views/notify/config/modules/notify-config-detail-drawer.vue b/src/views/notify/config/modules/notify-config-detail-drawer.vue index 48c1579..1d0104d 100644 --- a/src/views/notify/config/modules/notify-config-detail-drawer.vue +++ b/src/views/notify/config/modules/notify-config-detail-drawer.vue @@ -22,8 +22,8 @@ const visible = defineModel('visible', {