feat:控制台警告修复

This commit is contained in:
zhongzm
2025-09-11 10:38:13 +08:00
parent 5932662e7c
commit 6f9639d3d4
2 changed files with 16 additions and 6 deletions

View File

@@ -2,6 +2,7 @@
import { reactive, toRaw, watch, ref } from 'vue';
import { ProModal } from 'antdv-pro-modal';
import { message, Form, Progress } from 'ant-design-vue/es';
import { CheckCircleOutlined, CloseCircleOutlined } from '@ant-design/icons-vue';
import useI18n from '@/hooks/useI18n';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { getOAMFile, saveOAMFile, serviceNeAction } from '@/api/ne/neInfo';
@@ -385,9 +386,13 @@ watch(
>
<div style="display: flex; justify-content: space-between; align-items: center;">
<span>
<a-icon
:type="result.success ? 'check-circle' : 'close-circle'"
:style="{ color: result.success ? '#52c41a' : '#ff4d4f', marginRight: '8px' }"
<CheckCircleOutlined
v-if="result.success"
:style="{ color: '#52c41a', marginRight: '8px' }"
/>
<CloseCircleOutlined
v-else
:style="{ color: '#ff4d4f', marginRight: '8px' }"
/>
{{ result.neType }}-{{ result.neId }} ({{ result.neName }})
</span>

View File

@@ -4,6 +4,7 @@ import { ProModal } from 'antdv-pro-modal';
import { message, Form, Progress, Upload } from 'ant-design-vue/es';
import { UploadRequestOption } from 'ant-design-vue/es/vc-upload/interface';
import { FileType } from 'ant-design-vue/es/upload/interface';
import { UploadOutlined, CheckCircleOutlined, CloseCircleOutlined } from '@ant-design/icons-vue';
import useI18n from '@/hooks/useI18n';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { changeNeLicense, getNeLicenseByTypeAndID } from '@/api/ne/neLicense';
@@ -408,9 +409,13 @@ watch(
>
<div style="display: flex; justify-content: space-between; align-items: center;">
<span>
<a-icon
:type="result.success ? 'check-circle' : 'close-circle'"
:style="{ color: result.success ? '#52c41a' : '#ff4d4f', marginRight: '8px' }"
<CheckCircleOutlined
v-if="result.success"
:style="{ color: '#52c41a', marginRight: '8px' }"
/>
<CloseCircleOutlined
v-else
:style="{ color: '#ff4d4f', marginRight: '8px' }"
/>
{{ result.neType }}-{{ result.neId }} ({{ result.neName }})
</span>