diff --git a/src/i18n/locales/en-US.ts b/src/i18n/locales/en-US.ts
index 7d73869a..bf908436 100644
--- a/src/i18n/locales/en-US.ts
+++ b/src/i18n/locales/en-US.ts
@@ -1215,7 +1215,7 @@ export default {
dirCd: "Enter Dir",
viewAs: 'View Action',
reload: "Reload",
- follow: 'Monitoring Content',
+ follow: 'Enable Instant Update',
tailChar: 'End Characters',
tailLines: 'End Lines',
},
diff --git a/src/views/dashboard/sgwcCDR/index.vue b/src/views/dashboard/sgwcCDR/index.vue
index b54704fd..9f5c6a25 100644
--- a/src/views/dashboard/sgwcCDR/index.vue
+++ b/src/views/dashboard/sgwcCDR/index.vue
@@ -768,12 +768,18 @@ onBeforeUnmount(() => {
{{ record.cdrJSON.servedMSISDN }}
- PGW Address Used:
- {{ record.cdrJSON.pGWAddressUsed }}
+ GGSN Address:
+
+ {{
+ record.cdrJSON.pGWAddressUsed || record.cdrJSON.GGSNAddress
+ }}
+
- SGW Address:
- {{ record.cdrJSON.sGWAddress }}
+ SGSN Address:
+
+ {{ record.cdrJSON.sGWAddress || record.cdrJSON.SGSNAddress }}
+
RAT Type:
diff --git a/src/views/perfManage/goldTarget/index.vue b/src/views/perfManage/goldTarget/index.vue
index f56dfd12..5e27a4b2 100644
--- a/src/views/perfManage/goldTarget/index.vue
+++ b/src/views/perfManage/goldTarget/index.vue
@@ -1084,7 +1084,7 @@ onBeforeUnmount(() => {
:scroll="{ y: 250 }"
size="small"
:custom-row="
- record => ({
+ (record:any) => ({
onClick: () => handleRowClick(record),
class: selectedRow.includes(record.kpiId) ? 'selected-row' : '',
})
diff --git a/src/views/perfManage/kpiCReport/index.vue b/src/views/perfManage/kpiCReport/index.vue
index f53e45f3..7dc3d6ca 100644
--- a/src/views/perfManage/kpiCReport/index.vue
+++ b/src/views/perfManage/kpiCReport/index.vue
@@ -757,7 +757,7 @@ const selectedUnit = ref
(null);
// 添加处理行点击的方法
function handleRowClick(record: any) {
const index = selectedRow.value.indexOf(record.kpiId);
- console.log(record)
+ console.log(record);
// 如果已经选中,取消选中
if (index > -1) {
selectedRow.value.splice(index, 1);
@@ -766,12 +766,12 @@ function handleRowClick(record: any) {
if (selectedRow.value.length === 0) {
selectedUnit.value = null;
}
-
} else {
-
// 检查单位是否一致
if (selectedUnit.value && selectedUnit.value !== record.unit) {
- message.error(`${t('views.perfManage.customTarget.unitSelect')} ${selectedUnit.value}`);
+ message.error(
+ `${t('views.perfManage.customTarget.unitSelect')} ${selectedUnit.value}`
+ );
return;
}
@@ -940,28 +940,50 @@ onBeforeUnmount(() => {
-
+
-
+
-
-
+
+
-
+
@@ -978,7 +1000,11 @@ onBeforeUnmount(() => {
-
+
@@ -988,8 +1014,12 @@ onBeforeUnmount(() => {
: t('views.perfManage.goldTarget.kpiTableTitle')
}}
-
+
@@ -1009,8 +1039,12 @@ onBeforeUnmount(() => {
-
+
{{ t('common.sizeText') }}
@@ -1020,7 +1054,10 @@ onBeforeUnmount(() => {
-
+
{{ t('common.size.default') }}
@@ -1049,32 +1086,60 @@ onBeforeUnmount(() => {
size="small"
/>
-->
-
-
+
+
- (col.width = w)" :show-expand-column="false" @change="fnTableChange">
+ (col.width = w)"
+ :show-expand-column="false"
+ @change="fnTableChange"
+ >
-
+
-
+ "
+ >
diff --git a/src/views/perfManage/kpiKeyTarget/index.vue b/src/views/perfManage/kpiKeyTarget/index.vue
index 2b3931e2..2aa67c6d 100644
--- a/src/views/perfManage/kpiKeyTarget/index.vue
+++ b/src/views/perfManage/kpiKeyTarget/index.vue
@@ -1333,7 +1333,7 @@ const handleTabChange = async (activeKey: string, type: AllChartType) => {
:scroll="{ y: 'true' }"
:loading="chartStates[type].tableState.loading"
:custom-row="
- record => ({
+ (record:any) => ({
onClick: () => handleRowClick(record, type),
class: selectedRows[type]?.includes(record.kpiId)
? 'selected-row'
@@ -1348,7 +1348,9 @@ const handleTabChange = async (activeKey: string, type: AllChartType) => {
- {{ t('views.perfManage.kpiOverView.totalValueTip') }}
+ {{
+ t('views.perfManage.kpiOverView.totalValueTip')
+ }}
@@ -1361,7 +1363,9 @@ const handleTabChange = async (activeKey: string, type: AllChartType) => {
- {{ t('views.perfManage.kpiOverView.avgValueTip') }}
+ {{
+ t('views.perfManage.kpiOverView.avgValueTip')
+ }}
@@ -1374,7 +1378,9 @@ const handleTabChange = async (activeKey: string, type: AllChartType) => {
- {{ t('views.perfManage.kpiOverView.maxValueTip') }}
+ {{
+ t('views.perfManage.kpiOverView.maxValueTip')
+ }}
@@ -1387,7 +1393,9 @@ const handleTabChange = async (activeKey: string, type: AllChartType) => {
- {{ t('views.perfManage.kpiOverView.minValueTip') }}
+ {{
+ t('views.perfManage.kpiOverView.minValueTip')
+ }}