feat: MML管理功能

This commit is contained in:
TsMask
2023-10-11 17:20:20 +08:00
parent b2f7e1d69b
commit 0853e29a04
7 changed files with 982 additions and 980 deletions

View File

@@ -0,0 +1,52 @@
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { request } from '@/plugins/http-fetch';
import { parseObjLineToHump } from '@/utils/parse-utils';
/**
* 查询网元可用cmd命令
* @param neType 网元类型
* @returns object
*/
export async function getMMLByNE(neType: string) {
// 发起请求
const result = await request({
url: `/databaseManagement/v1/elementType/omc_db/objectType/mml_system`,
method: 'get',
params: {
SQL: `select * from mml_system where ne_type = '${neType}'`,
},
});
// 解析数据
if (result.code === RESULT_CODE_SUCCESS && Array.isArray(result.data.data)) {
let data = result.data.data[0];
return Object.assign(result, {
data: parseObjLineToHump(data['mml_system']),
});
}
return result;
}
/**
* 发送网元的mml命令
* @param neType 网元类型
* @param neId 网元ID
* @param cmdStr 命令串
* @returns
*/
export async function sendMMlByNE(
neType: string,
neId: string,
cmdStr: string
) {
// 发起请求
const result = await request({
url: `/operationManagement/v1/elementType/${neType}/objectType/mml?ne_id=${neId}`,
method: 'post',
data: { mml: [cmdStr] },
});
// 解析数据
if (result.code === RESULT_CODE_SUCCESS && Array.isArray(result.data.data)) {
result.data = result.data.data[0];
}
return result;
}

View File

@@ -0,0 +1,46 @@
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { request } from '@/plugins/http-fetch';
import { parseObjLineToHump } from '@/utils/parse-utils';
/**
* 查询OMC可用cmd命令
* @returns object
*/
export async function getMMLByOMC() {
// 发起请求
const result = await request({
url: `/databaseManagement/v1/elementType/omc_db/objectType/mml_command`,
method: 'get',
params: {
SQL: `select * from mml_command where ne_type = 'OMC'`,
},
});
// 解析数据
if (result.code === RESULT_CODE_SUCCESS && Array.isArray(result.data.data)) {
let data = result.data.data[0];
return Object.assign(result, {
data: parseObjLineToHump(data['mml_command']),
});
}
return result;
}
/**
* 发送OMC的mml命令
* @param neId 网元ID
* @param cmdStr 命令串
* @returns
*/
export async function sendMMlByOMC(neId: string, cmdStr: string) {
// 发起请求
const result = await request({
url: `/operationManagement/v1/elementType/OMC/objectType/mml?ne_id=${neId}`,
method: 'post',
data: { mml: [cmdStr] },
});
// 解析数据
if (result.code === RESULT_CODE_SUCCESS && Array.isArray(result.data.data)) {
result.data = result.data.data[0];
}
return result;
}

View File

@@ -6,7 +6,7 @@ import { parseObjLineToHump } from '@/utils/parse-utils';
* 查询UDM可用cmd命令 * 查询UDM可用cmd命令
* @returns object * @returns object
*/ */
export async function getSubscriberByUDM() { export async function getMMLByUDM() {
// 发起请求 // 发起请求
const result = await request({ const result = await request({
url: `/databaseManagement/v1/elementType/omc_db/objectType/mml_subscriber`, url: `/databaseManagement/v1/elementType/omc_db/objectType/mml_subscriber`,

View File

@@ -1163,6 +1163,7 @@ onMounted(() => {
v-else-if="record['type'] === 'enum'" v-else-if="record['type'] === 'enum'"
v-model:value="tableState.editRecord['value']" v-model:value="tableState.editRecord['value']"
:placeholder="record['filter']" :placeholder="record['filter']"
:allow-clear="true"
> >
<a-select-option <a-select-option
:value="+v" :value="+v"
@@ -1330,6 +1331,7 @@ onMounted(() => {
tableState.editRecord[text.name]['value'] tableState.editRecord[text.name]['value']
" "
:placeholder="text['filter']" :placeholder="text['filter']"
:allow-clear="true"
> >
<a-select-option <a-select-option
:value="v" :value="v"
@@ -1506,6 +1508,7 @@ onMounted(() => {
] ]
" "
:placeholder="text['filter']" :placeholder="text['filter']"
:allow-clear="true"
> >
<a-select-option <a-select-option
:value="v" :value="v"

View File

@@ -1,536 +1,485 @@
<script setup lang="ts"> <script setup lang="ts">
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import { reactive, ref, onMounted, toRaw, nextTick } from 'vue'; import { reactive, ref, onMounted, toRaw } from 'vue';
import { PageContainer } from '@ant-design-vue/pro-layout'; import { PageContainer } from '@ant-design-vue/pro-layout';
import { message, Modal } from 'ant-design-vue/lib'; import { message } from 'ant-design-vue/lib';
import { SizeType } from 'ant-design-vue/lib/config-provider'; import CodemirrorEdite from '@/components/CodemirrorEdite/index.vue';
import { MenuInfo } from 'ant-design-vue/lib/menu/src/interface';
import { ColumnsType } from 'ant-design-vue/lib/table';
import { parseDateToStr } from '@/utils/date-utils';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants'; import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { saveAs } from 'file-saver'; import useNeInfoStore from '@/store/modules/neinfo';
import { regExpIPv4, regExpIPv6 } from '@/utils/regular-utils';
import useI18n from '@/hooks/useI18n'; import useI18n from '@/hooks/useI18n';
import { getTraceRawInfo, listTraceData } from '@/api/traceManage/analysis'; import { getMMLByNE, sendMMlByNE } from '@/api/mmlManage/neOperate';
const { t } = useI18n(); const { t } = useI18n();
const route = useRoute(); const route = useRoute();
/**路由标题 */ /**路由标题 */
let title = ref<string>((route.meta.title as string) ?? '标题'); let title = ref<string>((route.meta.title as string) ?? '标题');
/**查询参数 */ /**网元参数 */
let queryParams = reactive({ let neCascaderOtions = ref<Record<string, any>[]>([]);
/**移动号 */
imsi: '',
/**移动号 */
msisdn: '',
/**当前页数 */
pageNum: 1,
/**每页条数 */
pageSize: 20,
});
/**查询参数重置 */ /**对象信息状态类型 */
function fnQueryReset() { type StateType = {
queryParams = Object.assign(queryParams, { /**网元类型 */
imsi: '', neType: string[];
pageNum: 1, /**命令网元类型 */
pageSize: 20, mmlNeType: string;
}); /**命令数据 tree */
tablePagination.current = 1; mmlTreeData: any[];
tablePagination.pageSize = 20; /**命令选中 */
fnGetList(); mmlSelect: Record<string, any>;
}
/**表格状态类型 */
type TabeStateType = {
/**加载等待 */
loading: boolean;
/**紧凑型 */
size: SizeType;
/**搜索栏 */
seached: boolean;
/**记录数据 */
data: object[];
};
/**表格状态 */
let tableState: TabeStateType = reactive({
loading: false,
size: 'middle',
seached: true,
data: [],
});
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('views.traceManage.analysis.trackTaskId'),
dataIndex: 'taskId',
align: 'center',
},
{
title: t('views.traceManage.analysis.imsi'),
dataIndex: 'imsi',
align: 'center',
},
{
title: t('views.traceManage.analysis.msisdn'),
dataIndex: 'msisdn',
align: 'center',
},
{
title: t('views.traceManage.analysis.srcIp'),
dataIndex: 'srcAddr',
align: 'center',
},
{
title: t('views.traceManage.analysis.dstIp'),
dataIndex: 'dstAddr',
align: 'center',
},
{
title: t('views.traceManage.analysis.signalType'),
dataIndex: 'ifType',
align: 'center',
},
{
title: t('views.traceManage.analysis.msgType'),
dataIndex: 'msgType',
align: 'center',
},
{
title: t('views.traceManage.analysis.msgDirect'),
dataIndex: 'msgDirect',
align: 'center',
},
{
title: t('views.traceManage.analysis.rowTime'),
dataIndex: 'timestamp',
align: 'center',
customRender(opt) {
if (!opt.value) return '';
return parseDateToStr(opt.value);
},
},
{
title: t('common.operate'),
key: 'id',
align: 'center',
},
];
/**表格分页器参数 */
let tablePagination = reactive({
/**当前页数 */
current: 1,
/**每页条数 */
pageSize: 20,
/**默认的每页条数 */
defaultPageSize: 20,
/**指定每页可以显示多少条 */
pageSizeOptions: ['10', '20', '50', '100'],
/**只有一页时是否隐藏分页器 */
hideOnSinglePage: false,
/**是否可以快速跳转至某页 */
showQuickJumper: true,
/**是否可以改变 pageSize */
showSizeChanger: true,
/**数据总数 */
total: 0,
showTotal: (total: number) => t('common.tablePaginationTotal', { total }),
onChange: (page: number, pageSize: number) => {
tablePagination.current = page;
tablePagination.pageSize = pageSize;
queryParams.pageNum = page;
queryParams.pageSize = pageSize;
fnGetList();
},
});
/**表格紧凑型变更操作 */
function fnTableSize({ key }: MenuInfo) {
tableState.size = key as SizeType;
}
/**查询备份信息列表 */
function fnGetList() {
if (tableState.loading) return;
tableState.loading = true;
listTraceData(toRaw(queryParams)).then(res => {
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) {
tablePagination.total = res.total;
tableState.data = res.rows;
}
tableState.loading = false;
});
}
/**抽屉对象信息状态类型 */
type ModalStateType = {
/**抽屉框是否显示 */
visible: boolean;
/**标题 */
title: string;
/**表单数据 */ /**表单数据 */
from: Record<string, any>; from: Record<string, any>;
/**命令发送日志 */
mmlCmdLog: string;
}; };
/**抽屉对象信息状态 */ /**对象信息状态 */
let modalState: ModalStateType = reactive({ let state: StateType = reactive({
visible: false, neType: [],
title: '', mmlNeType: '',
mmlTreeData: [],
mmlSelect: {},
from: { from: {
rawData: '', sendLoading: false,
rawDataHTML: '',
downBtn: false,
}, },
mmlCmdLog: '',
}); });
/** /**查询可选命令列表 */
* 对话框弹出显示 function fnTreeSelect(_: any, info: any) {
* @param row 记录信息 state.mmlSelect = info.node.dataRef;
*/ state.from = {};
function fnModalVisible(row: Record<string, any>) { // state.mmlCmdLog = '';
// 进制转数据 }
const hexString = parseBase64Data(row.rawMsg);
const rawData = convertToReadableFormat(hexString); /**清空控制台日志 */
modalState.from.rawData = rawData; function fnCleanCmdLog() {
// RAW解析HTML state.mmlCmdLog = '';
getTraceRawInfo(row.id).then(res => { }
/**清空表单 */
function fnCleanFrom() {
state.from = {};
}
/**命令发送 */
function fnSendMML() {
if (state.from.sendLoading) {
return;
}
const operation = state.mmlSelect.operation;
const object = state.mmlSelect.object;
let cmdStr = '';
// 根据参数取值
let argsArr: string[] = [];
const param = toRaw(state.mmlSelect.param) || [];
const from = toRaw(state.from);
for (const item of param) {
const value = from[item.name];
// 是否必填项且有效值
const notV = value === null || value === undefined || value === '';
if (item.optional === 'false' && notV) {
message.warning(`必填参数:${item.display}`, 2);
return;
}
// 检查是否存在值
if (!Reflect.has(from, item.name) || notV) {
continue;
}
// 检查规则
const [ok, msg] = ruleVerification(item, from[item.name]);
if (!ok) {
message.warning({
content: `${msg}`,
duration: 3,
});
return;
}
argsArr.push(`${item.name}=${from[item.name]}`);
}
// 拼装命令
const argsStr = argsArr.join(',');
if (object && argsStr) {
cmdStr = `${operation} ${object}:${argsStr}`;
} else if (object) {
cmdStr = `${operation} ${object}`;
} else {
cmdStr = `${operation} ${argsStr}`;
}
cmdStr = cmdStr.trim();
// 发送
state.mmlCmdLog += `$> ${cmdStr}\n`;
state.from.sendLoading = true;
const [neType, neId] = state.neType;
sendMMlByNE(neType, neId, cmdStr).then(res => {
state.from.sendLoading = false;
if (res.code === RESULT_CODE_SUCCESS) { if (res.code === RESULT_CODE_SUCCESS) {
const htmlString = rawDataHTMLScript(res.msg); let resultStr = res.data;
modalState.from.rawDataHTML = htmlString; resultStr = resultStr.replace(/(\r\n|\n)/g, '\n$> ');
modalState.from.downBtn = true; state.mmlCmdLog += `$> ${resultStr}\n`;
} else { } else {
modalState.from.rawDataHTML = t('views.traceManage.analysis.noData'); state.mmlCmdLog += `$> ${res.msg}\n`;
} }
}); });
modalState.title = t('views.traceManage.analysis.taskTitle', {
num: row.imsi,
});
modalState.visible = true;
} }
/** /**规则校验 */
* 对话框弹出关闭 function ruleVerification(
*/ row: Record<string, any>,
function fnModalVisibleClose() { value: any
modalState.visible = false; ): (string | boolean)[] {
modalState.from.downBtn = false; let result = [true, ''];
modalState.from.rawDataHTML = ''; const type = row.type;
modalState.from.rawData = ''; const filter = row.filter;
} const display = row.display;
// 将Base64编码解码为字节数组 switch (type) {
function parseBase64Data(hexData: string) { case 'int':
// 将Base64编码解码为字节数组 if (filter && filter.indexOf('~') !== -1) {
const byteString = atob(hexData); const filterArr = filter.split('~');
const byteArray = new Uint8Array(byteString.length); const minInt = parseInt(filterArr[0]);
for (let i = 0; i < byteString.length; i++) { const maxInt = parseInt(filterArr[1]);
byteArray[i] = byteString.charCodeAt(i); const valueInt = parseInt(value);
if (valueInt < minInt || valueInt > maxInt) {
return [false, `${display} 参数值不在合理范围 ${filter}`];
}
}
break;
case 'ipv4':
if (!regExpIPv4.test(value)) {
return [false, `${display} 不是合法的IPV4地址`];
}
break;
case 'ipv6':
if (!regExpIPv6.test(value)) {
return [false, `${display} 不是合法的IPV6地址`];
}
break;
case 'enum':
if (filter && filter.indexOf('{') === 1) {
let filterJson: Record<string, any> = {};
try {
filterJson = JSON.parse(filter); //string---json
} catch (error) {
console.error(error);
}
if (!Object.keys(filterJson).includes(`${value}`)) {
return [false, `${display} 不是合理的枚举值`];
}
}
break;
case 'bool':
if (filter && filter.indexOf('{') === 1) {
let filterJson: Record<string, any> = {};
try {
filterJson = JSON.parse(filter); //string---json
} catch (error) {
console.error(error);
}
if (!Object.values(filterJson).includes(`${value}`)) {
return [false, `${display} 不是合理的布尔类型的值`];
}
}
break;
case 'string':
if (filter && filter.indexOf('~') !== -1) {
try {
const filterArr = filter.split('~');
let rule = new RegExp(
'^\\S{' + filterArr[0] + ',' + filterArr[1] + '}$'
);
if (!rule.test(value)) {
return [false, `${display} 参数值不合理`];
}
} catch (error) {
console.error(error);
}
}
break;
case 'regex':
if (filter) {
try {
let regex = new RegExp(filter);
if (!regex.test(value)) {
return [false, `${display} 参数值不合理`];
}
} catch (error) {
console.error(error);
}
}
break;
default:
console.warn('未知类型', type);
return [false, `${display} 输入值是未知类型`];
} }
return result;
// 将每一个字节转换为2位16进制数表示并拼接起来
let hexString = '';
for (let i = 0; i < byteArray.length; i++) {
const hex = byteArray[i].toString(16);
hexString += hex.length === 1 ? '0' + hex : hex;
}
return hexString;
} }
// 转换十六进制字节流为可读格式和ASCII码表示 /**网元类型选择对应修改 */
function convertToReadableFormat(hexString: string) { function fnNeChange(keys: any, _: any) {
let result = ''; // 不是同类型时需要重新加载
let asciiResult = ''; if (state.mmlNeType !== keys[0]) {
let arr = []; state.mmlTreeData = [];
let row = 100; state.mmlSelect = {};
for (let i = 0; i < hexString.length; i += 2) { fnGetList();
const hexChars = hexString.substring(i, i + 2); }
const decimal = parseInt(hexChars, 16); }
const asciiChar =
decimal >= 32 && decimal <= 126 ? String.fromCharCode(decimal) : '.';
result += hexChars + ' '; /**查询可选命令列表 */
asciiResult += asciiChar; function fnGetList() {
const neType = state.neType[0];
state.mmlNeType = neType;
getMMLByNE(neType).then(res => {
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
// 构建树结构
const treeArr: Record<string, any>[] = [];
for (const item of res.data) {
const id = item['id'];
const object = item['object'];
const operation = item['operation'];
const mmlDisplay = item['mmlDisplay'];
// 可选属性参数
let param = [];
try {
param = JSON.parse(item['paramJson']);
} catch (error) {
console.error(error);
}
if ((i + 2) % 32 === 0) { // 遍历检查大类
arr.push({ const treeItem = treeArr.find(i => i.key == item['category']);
row: row, if (!treeItem) {
code: result, treeArr.push({
asciiText: asciiResult, title: item['catDisplay'],
key: item['category'],
selectable: false,
children: [
{ key: id, title: mmlDisplay, object, operation, param },
],
});
} else {
treeItem.children.push({
key: id,
title: mmlDisplay,
object,
operation,
param,
});
}
}
state.mmlTreeData = treeArr;
} else {
message.warning({
content: `${neType} 无可选命令操作`,
duration: 2,
}); });
result = '';
asciiResult = '';
row += 10;
} }
if (2 + i == hexString.length) {
arr.push({
row: row,
code: result,
asciiText: asciiResult,
});
result = '';
asciiResult = '';
row += 10;
}
}
return arr;
}
// 信息详情HTMl内容处理
function rawDataHTMLScript(htmlString: string) {
// 删除所有 <a> 标签
// const withoutATags = htmlString.replace(/<a\b[^>]*>(.*?)<\/a>/gi, '');
// 删除所有 <script> 标签
let withoutScriptTags = htmlString.replace(
/<script\b[^>]*>([\s\S]*?)<\/script>/gi,
''
);
// 默认全展开
// const withoutHiddenElements = withoutScriptTags.replace(
// /style="display:none"/gi,
// 'style="background:#ffffff"'
// );
function set_node(node: any, str: string) {
if (!node) return;
node.style.display = str;
node.style.background = '#ffffff';
}
Reflect.set(window, 'set_node', set_node);
function toggle_node(node: any) {
node = document.getElementById(node);
if (!node) return;
set_node(node, node.style.display != 'none' ? 'none' : 'block');
}
Reflect.set(window, 'toggle_node', toggle_node);
function hide_node(node: any) {
node = document.getElementById(node);
if (!node) return;
set_node(node, 'none');
}
Reflect.set(window, 'hide_node', hide_node);
// 展开第一个
withoutScriptTags = withoutScriptTags.replace(
'id="f1c" style="display:none"',
'id="f1c" style="display:block"'
);
return withoutScriptTags;
}
/**信息文件下载 */
function fnDownloadFile() {
Modal.confirm({
title: t('common.tipTitle'),
content: t('views.traceManage.analysis.taskDownTip'),
onOk() {
const blob = new Blob([modalState.from.rawDataHTML], {
type: 'text/plain',
});
saveAs(blob, `${modalState.title}_${Date.now()}.html`);
},
}); });
} }
onMounted(() => { onMounted(() => {
// 获取列表数据 // 获取网元网元列表
fnGetList(); useNeInfoStore()
.fnNelist()
.then(res => {
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
if (res.data.length > 0) {
const info = res.data[0];
state.neType = [info.neType, info.neId];
// 过滤不可用的网元
neCascaderOtions.value = useNeInfoStore().getNeCascaderOtions.filter(
(item: any) => {
return !['OMC'].includes(item.value);
}
);
fnGetList();
}
} else {
message.warning({
content: 'No Data',
duration: 2,
});
}
});
}); });
</script> </script>
<template> <template>
<PageContainer :title="title"> <PageContainer :title="title">
<a-card <a-row :gutter="16">
v-show="tableState.seached" <a-col :span="6">
:bordered="false" <!-- 命令导航 -->
:body-style="{ marginBottom: '24px', paddingBottom: 0 }" <a-card size="small" :bordered="false" title="命令导航">
> <a-form layout="vertical" autocomplete="off">
<!-- 表格搜索栏 --> <a-form-item name="neType">
<a-form :model="queryParams" name="queryParams" layout="horizontal"> <a-cascader
<a-row :gutter="16"> v-model:value="state.neType"
<a-col :lg="6" :md="12" :xs="24"> :options="neCascaderOtions"
<a-form-item @change="fnNeChange"
:label="t('views.traceManage.analysis.imsi')" :allow-clear="false"
name="imsi" placeholder="请选择网元"
> />
<a-input
v-model:value="queryParams.imsi"
:allow-clear="true"
:placeholder="t('views.traceManage.analysis.imsiPlease')"
></a-input>
</a-form-item> </a-form-item>
</a-col> <a-form-item name="listeningPort">
<a-col :lg="6" :md="12" :xs="24"> <a-tree :tree-data="state.mmlTreeData" @select="fnTreeSelect" />
<a-form-item
:label="t('views.traceManage.analysis.msisdn')"
name="imsi"
>
<a-input
v-model:value="queryParams.msisdn"
:allow-clear="true"
:placeholder="t('views.traceManage.analysis.msisdnPlease')"
></a-input>
</a-form-item> </a-form-item>
</a-col> </a-form>
<a-col :lg="6" :md="12" :xs="24"> </a-card>
<a-form-item> </a-col>
<a-space :size="8"> <a-col :span="18">
<a-button type="primary" @click.prevent="fnGetList"> <!-- 命令参数输入 -->
<template #icon><SearchOutlined /></template> <a-card
{{ t('common.search') }} size="small"
</a-button> :bordered="false"
<a-button type="default" @click.prevent="fnQueryReset"> :loading="!state.mmlSelect.title"
<template #icon><ClearOutlined /></template> >
{{ t('common.reset') }} <template #title>
</a-button> <a-typography-text strong v-if="state.mmlSelect.title">
</a-space> {{ state.mmlSelect.title }}
</a-form-item> </a-typography-text>
</a-col> <a-typography-text type="danger" v-else>
</a-row> 左侧命令导航中选择要操作项
</a-form> </a-typography-text>
</a-card> </template>
<!-- 插槽-卡片右侧 -->
<a-card :bordered="false" :body-style="{ padding: '0px' }"> <template #extra>
<!-- 插槽-卡片左侧侧 --> <a-space :size="8">
<template #title> </template> <a-button
type="default"
<!-- 插槽-卡片右侧 --> size="small"
<template #extra> @click.prevent="fnCleanFrom"
<a-space :size="8" align="center"> v-if="!!state.mmlSelect.param"
<a-tooltip> >
<template #title>{{ t('common.searchBarText') }}</template> <template #icon>
<a-switch <ClearOutlined />
v-model:checked="tableState.seached" </template>
:checked-children="t('common.switch.show')" 清除表单
:un-checked-children="t('common.switch.hide')" </a-button>
size="small" <a-button
/> type="primary"
</a-tooltip> size="small"
<a-tooltip> :disabled="!state.mmlSelect.title"
<template #title>{{ t('common.reloadText') }}</template> :loading="state.from.sendLoading"
<a-button type="text" @click.prevent="fnGetList"> @click.prevent="fnSendMML"
<template #icon><ReloadOutlined /></template> >
</a-button> <template #icon>
</a-tooltip> <SendOutlined />
<a-tooltip> </template>
<template #title>{{ t('common.sizeText') }}</template> 执行
<a-dropdown trigger="click">
<a-button type="text">
<template #icon><ColumnHeightOutlined /></template>
</a-button> </a-button>
<template #overlay>
<a-menu
:selected-keys="[tableState.size as string]"
@click="fnTableSize"
>
<a-menu-item key="default">{{
t('common.size.default')
}}</a-menu-item>
<a-menu-item key="middle">{{
t('common.size.middle')
}}</a-menu-item>
<a-menu-item key="small">{{
t('common.size.small')
}}</a-menu-item>
</a-menu>
</template>
</a-dropdown>
</a-tooltip>
</a-space>
</template>
<!-- 表格列表 -->
<a-table
class="table"
row-key="id"
:columns="tableColumns"
:loading="tableState.loading"
:data-source="tableState.data"
:size="tableState.size"
:pagination="tablePagination"
:scroll="{ x: true }"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'id'">
<a-space :size="8" align="center">
<a-tooltip>
<template #title>查看详情</template>
<a-button type="link" @click.prevent="fnModalVisible(record)">
<template #icon><ProfileOutlined /></template>
</a-button>
</a-tooltip>
</a-space> </a-space>
</template> </template>
</template>
</a-table>
</a-card>
<!-- 详情框 --> <a-form
<a-modal layout="vertical"
width="800px" autocomplete="off"
:title="modalState.title" :validate-on-rule-change="false"
:visible="modalState.visible" :validateTrigger="[]"
@cancel="fnModalVisibleClose" >
> <a-row :gutter="16">
<div class="raw-title"> <a-col
{{ t('views.traceManage.analysis.signalData') }} :lg="6"
</div> :md="12"
<a-row :xs="24"
class="raw" v-for="item in state.mmlSelect.param"
:gutter="16" >
v-for="v in modalState.from.rawData" <a-form-item
:key="v.row" :label="item.display"
> :name="item.name"
<a-col class="num" :span="2">{{ v.row }}</a-col> :required="item.optional === 'false'"
<a-col class="code" :span="12">{{ v.code }}</a-col> >
<a-col class="txt" :span="10">{{ v.asciiText }}</a-col> <a-tooltip>
</a-row> <template #title v-if="item.comment">
<a-divider /> {{ item.comment }}
<div class="raw-title"> </template>
{{ t('views.traceManage.analysis.signalDetail') }} <a-input
<a-button v-if="
type="dashed" ['string', 'ipv6', 'ipv4', 'regex'].includes(item.type)
"
v-model:value="state.from[item.name]"
:placeholder="item.filter"
></a-input>
<a-input-number
v-else-if="item.type === 'int'"
v-model:value="state.from[item.name]"
:min="0"
:max="65535"
:placeholder="item.filter"
style="width: 100%"
></a-input-number>
<a-switch
v-else-if="item.type === 'bool'"
v-model:checked="state.from[item.name]"
:checked-children="t('common.switch.open')"
:un-checked-children="t('common.switch.shut')"
></a-switch>
<a-select
v-else-if="item.type === 'enum'"
v-model:value="state.from[item.name]"
:placeholder="item.filter"
:allow-clear="true"
>
<a-select-option
:value="v"
:key="v"
v-for="(k, v) in JSON.parse(item.filter)"
>
{{ k }}
</a-select-option>
</a-select>
</a-tooltip>
</a-form-item>
</a-col>
</a-row>
</a-form>
</a-card>
<!-- 命令展示 -->
<a-card
title="控制台"
:bordered="false"
size="small" size="small"
@click.prevent="fnDownloadFile" :body-style="{ padding: 0 }"
v-if="modalState.from.downBtn" style="margin-top: 16px"
v-show="state.mmlSelect.title"
> >
<template #icon> <!-- 插槽-卡片右侧 -->
<DownloadOutlined /> <template #extra>
<a-space :size="8" align="center">
<a-button
type="default"
size="small"
@click.prevent="fnCleanCmdLog"
>
<template #icon>
<ClearOutlined />
</template>
清除日志
</a-button>
</a-space>
</template> </template>
{{ t('views.traceManage.analysis.taskDownText') }}
</a-button> <CodemirrorEdite
</div> v-model:value="state.mmlCmdLog"
<div class="raw-html" v-html="modalState.from.rawDataHTML"></div> :disabled="true"
</a-modal> :editor-style="{ height: '500px !important' }"
placeholder="等待发送命令"
></CodemirrorEdite>
</a-card>
</a-col>
</a-row>
</PageContainer> </PageContainer>
</template> </template>
<style lang="less" scoped> <style lang="less" scoped></style>
.table :deep(.ant-pagination) {
padding: 0 24px;
}
.raw {
&-title {
color: #000000d9;
font-size: 24px;
line-height: 1.8;
}
.num {
background-color: #e5e5e5;
}
.code {
background-color: #e7e6ff;
}
.txt {
background-color: #ffe3e5;
}
&-html {
max-height: 300px;
overflow-y: scroll;
}
}
</style>

View File

@@ -1,536 +1,479 @@
<script setup lang="ts"> <script setup lang="ts">
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import { reactive, ref, onMounted, toRaw, nextTick } from 'vue'; import { reactive, ref, onMounted, toRaw } from 'vue';
import { PageContainer } from '@ant-design-vue/pro-layout'; import { PageContainer } from '@ant-design-vue/pro-layout';
import { message, Modal } from 'ant-design-vue/lib'; import { message } from 'ant-design-vue/lib';
import { SizeType } from 'ant-design-vue/lib/config-provider'; import CodemirrorEdite from '@/components/CodemirrorEdite/index.vue';
import { MenuInfo } from 'ant-design-vue/lib/menu/src/interface';
import { ColumnsType } from 'ant-design-vue/lib/table';
import { parseDateToStr } from '@/utils/date-utils';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants'; import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { saveAs } from 'file-saver'; import useNeInfoStore from '@/store/modules/neinfo';
import { regExpIPv4, regExpIPv6 } from '@/utils/regular-utils';
import useI18n from '@/hooks/useI18n'; import useI18n from '@/hooks/useI18n';
import { getTraceRawInfo, listTraceData } from '@/api/traceManage/analysis'; import { getMMLByOMC, sendMMlByOMC } from '@/api/mmlManage/omcOperate';
const { t } = useI18n(); const { t } = useI18n();
const route = useRoute(); const route = useRoute();
/**路由标题 */ /**路由标题 */
let title = ref<string>((route.meta.title as string) ?? '标题'); let title = ref<string>((route.meta.title as string) ?? '标题');
/**查询参数 */ /**网元参数 */
let queryParams = reactive({ let neOtions = ref<Record<string, any>[]>([]);
/**移动号 */
imsi: '',
/**移动号 */
msisdn: '',
/**当前页数 */
pageNum: 1,
/**每页条数 */
pageSize: 20,
});
/**查询参数重置 */ /**对象信息状态类型 */
function fnQueryReset() { type StateType = {
queryParams = Object.assign(queryParams, { /**网元ID */
imsi: '', neId: string;
pageNum: 1, /**命令数据 loading */
pageSize: 20, mmlLoading: boolean;
}); /**命令数据 tree */
tablePagination.current = 1; mmlTreeData: any[];
tablePagination.pageSize = 20; /**命令选中 */
fnGetList(); mmlSelect: Record<string, any>;
}
/**表格状态类型 */
type TabeStateType = {
/**加载等待 */
loading: boolean;
/**紧凑型 */
size: SizeType;
/**搜索栏 */
seached: boolean;
/**记录数据 */
data: object[];
};
/**表格状态 */
let tableState: TabeStateType = reactive({
loading: false,
size: 'middle',
seached: true,
data: [],
});
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('views.traceManage.analysis.trackTaskId'),
dataIndex: 'taskId',
align: 'center',
},
{
title: t('views.traceManage.analysis.imsi'),
dataIndex: 'imsi',
align: 'center',
},
{
title: t('views.traceManage.analysis.msisdn'),
dataIndex: 'msisdn',
align: 'center',
},
{
title: t('views.traceManage.analysis.srcIp'),
dataIndex: 'srcAddr',
align: 'center',
},
{
title: t('views.traceManage.analysis.dstIp'),
dataIndex: 'dstAddr',
align: 'center',
},
{
title: t('views.traceManage.analysis.signalType'),
dataIndex: 'ifType',
align: 'center',
},
{
title: t('views.traceManage.analysis.msgType'),
dataIndex: 'msgType',
align: 'center',
},
{
title: t('views.traceManage.analysis.msgDirect'),
dataIndex: 'msgDirect',
align: 'center',
},
{
title: t('views.traceManage.analysis.rowTime'),
dataIndex: 'timestamp',
align: 'center',
customRender(opt) {
if (!opt.value) return '';
return parseDateToStr(opt.value);
},
},
{
title: t('common.operate'),
key: 'id',
align: 'center',
},
];
/**表格分页器参数 */
let tablePagination = reactive({
/**当前页数 */
current: 1,
/**每页条数 */
pageSize: 20,
/**默认的每页条数 */
defaultPageSize: 20,
/**指定每页可以显示多少条 */
pageSizeOptions: ['10', '20', '50', '100'],
/**只有一页时是否隐藏分页器 */
hideOnSinglePage: false,
/**是否可以快速跳转至某页 */
showQuickJumper: true,
/**是否可以改变 pageSize */
showSizeChanger: true,
/**数据总数 */
total: 0,
showTotal: (total: number) => t('common.tablePaginationTotal', { total }),
onChange: (page: number, pageSize: number) => {
tablePagination.current = page;
tablePagination.pageSize = pageSize;
queryParams.pageNum = page;
queryParams.pageSize = pageSize;
fnGetList();
},
});
/**表格紧凑型变更操作 */
function fnTableSize({ key }: MenuInfo) {
tableState.size = key as SizeType;
}
/**查询备份信息列表 */
function fnGetList() {
if (tableState.loading) return;
tableState.loading = true;
listTraceData(toRaw(queryParams)).then(res => {
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) {
tablePagination.total = res.total;
tableState.data = res.rows;
}
tableState.loading = false;
});
}
/**抽屉对象信息状态类型 */
type ModalStateType = {
/**抽屉框是否显示 */
visible: boolean;
/**标题 */
title: string;
/**表单数据 */ /**表单数据 */
from: Record<string, any>; from: Record<string, any>;
/**命令发送日志 */
mmlCmdLog: string;
}; };
/**抽屉对象信息状态 */ /**对象信息状态 */
let modalState: ModalStateType = reactive({ let state: StateType = reactive({
visible: false, neId: '',
title: '', mmlLoading: true,
mmlTreeData: [],
mmlSelect: {},
from: { from: {
rawData: '', sendLoading: false,
rawDataHTML: '',
downBtn: false,
}, },
mmlCmdLog: '',
}); });
/** /**查询可选命令列表 */
* 对话框弹出显示 function fnTreeSelect(_: any, info: any) {
* @param row 记录信息 state.mmlSelect = info.node.dataRef;
*/ state.from = {};
function fnModalVisible(row: Record<string, any>) { // state.mmlCmdLog = '';
// 进制转数据 }
const hexString = parseBase64Data(row.rawMsg);
const rawData = convertToReadableFormat(hexString); /**清空控制台日志 */
modalState.from.rawData = rawData; function fnCleanCmdLog() {
// RAW解析HTML state.mmlCmdLog = '';
getTraceRawInfo(row.id).then(res => { }
/**清空表单 */
function fnCleanFrom() {
state.from = {};
}
/**命令发送 */
function fnSendMML() {
if (state.from.sendLoading) {
return;
}
const operation = state.mmlSelect.operation;
const object = state.mmlSelect.object;
let cmdStr = '';
// 根据参数取值
let argsArr: string[] = [];
const param = toRaw(state.mmlSelect.param) || [];
const from = toRaw(state.from);
for (const item of param) {
const value = from[item.name];
// 是否必填项且有效值
const notV = value === null || value === undefined || value === '';
if (item.optional === 'false' && notV) {
message.warning(`必填参数:${item.display}`, 2);
return;
}
// 检查是否存在值
if (!Reflect.has(from, item.name) || notV) {
continue;
}
// 检查规则
const [ok, msg] = ruleVerification(item, from[item.name]);
if (!ok) {
message.warning({
content: `${msg}`,
duration: 3,
});
return;
}
argsArr.push(`${item.name}=${from[item.name]}`);
}
// 拼装命令
const argsStr = argsArr.join(',');
if (object && argsStr) {
cmdStr = `${operation} ${object}:${argsStr}`;
} else if (object) {
cmdStr = `${operation} ${object}`;
} else {
cmdStr = `${operation} ${argsStr}`;
}
cmdStr = cmdStr.trim();
// 发送
state.mmlCmdLog += `$> ${cmdStr}\n`;
state.from.sendLoading = true;
sendMMlByOMC(state.neId, cmdStr).then(res => {
state.from.sendLoading = false;
if (res.code === RESULT_CODE_SUCCESS) { if (res.code === RESULT_CODE_SUCCESS) {
const htmlString = rawDataHTMLScript(res.msg); let resultStr = res.data;
modalState.from.rawDataHTML = htmlString; resultStr = resultStr.replace(/(\r\n|\n)/g, '\n$> ');
modalState.from.downBtn = true; state.mmlCmdLog += `$> ${resultStr}\n`;
} else { } else {
modalState.from.rawDataHTML = t('views.traceManage.analysis.noData'); state.mmlCmdLog += `$> ${res.msg}\n`;
} }
}); });
modalState.title = t('views.traceManage.analysis.taskTitle', {
num: row.imsi,
});
modalState.visible = true;
} }
/** /**规则校验 */
* 对话框弹出关闭 function ruleVerification(
*/ row: Record<string, any>,
function fnModalVisibleClose() { value: any
modalState.visible = false; ): (string | boolean)[] {
modalState.from.downBtn = false; let result = [true, ''];
modalState.from.rawDataHTML = ''; const type = row.type;
modalState.from.rawData = ''; const filter = row.filter;
} const display = row.display;
// 将Base64编码解码为字节数组 switch (type) {
function parseBase64Data(hexData: string) { case 'int':
// 将Base64编码解码为字节数组 if (filter && filter.indexOf('~') !== -1) {
const byteString = atob(hexData); const filterArr = filter.split('~');
const byteArray = new Uint8Array(byteString.length); const minInt = parseInt(filterArr[0]);
for (let i = 0; i < byteString.length; i++) { const maxInt = parseInt(filterArr[1]);
byteArray[i] = byteString.charCodeAt(i); const valueInt = parseInt(value);
if (valueInt < minInt || valueInt > maxInt) {
return [false, `${display} 参数值不在合理范围 ${filter}`];
}
}
break;
case 'ipv4':
if (!regExpIPv4.test(value)) {
return [false, `${display} 不是合法的IPV4地址`];
}
break;
case 'ipv6':
if (!regExpIPv6.test(value)) {
return [false, `${display} 不是合法的IPV6地址`];
}
break;
case 'enum':
if (filter && filter.indexOf('{') === 1) {
let filterJson: Record<string, any> = {};
try {
filterJson = JSON.parse(filter); //string---json
} catch (error) {
console.error(error);
}
if (!Object.keys(filterJson).includes(`${value}`)) {
return [false, `${display} 不是合理的枚举值`];
}
}
break;
case 'bool':
if (filter && filter.indexOf('{') === 1) {
let filterJson: Record<string, any> = {};
try {
filterJson = JSON.parse(filter); //string---json
} catch (error) {
console.error(error);
}
if (!Object.values(filterJson).includes(`${value}`)) {
return [false, `${display} 不是合理的布尔类型的值`];
}
}
break;
case 'string':
if (filter && filter.indexOf('~') !== -1) {
try {
const filterArr = filter.split('~');
let rule = new RegExp(
'^\\S{' + filterArr[0] + ',' + filterArr[1] + '}$'
);
if (!rule.test(value)) {
return [false, `${display} 参数值不合理`];
}
} catch (error) {
console.error(error);
}
}
break;
case 'regex':
if (filter) {
try {
let regex = new RegExp(filter);
if (!regex.test(value)) {
return [false, `${display} 参数值不合理`];
}
} catch (error) {
console.error(error);
}
}
break;
default:
console.warn('未知类型', type);
return [false, `${display} 输入值是未知类型`];
} }
return result;
// 将每一个字节转换为2位16进制数表示并拼接起来
let hexString = '';
for (let i = 0; i < byteArray.length; i++) {
const hex = byteArray[i].toString(16);
hexString += hex.length === 1 ? '0' + hex : hex;
}
return hexString;
} }
// 转换十六进制字节流为可读格式和ASCII码表示 /**查询可选命令列表 */
function convertToReadableFormat(hexString: string) { function fnGetList() {
let result = ''; getMMLByOMC().then(res => {
let asciiResult = ''; if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
let arr = []; // 构建树结构
let row = 100; const treeArr: Record<string, any>[] = [];
for (let i = 0; i < hexString.length; i += 2) { for (const item of res.data) {
const hexChars = hexString.substring(i, i + 2); const id = item['id'];
const decimal = parseInt(hexChars, 16); const object = item['object'];
const asciiChar = const operation = item['operation'];
decimal >= 32 && decimal <= 126 ? String.fromCharCode(decimal) : '.'; const mmlDisplay = item['mmlDisplay'];
// 可选属性参数
let param = [];
try {
param = JSON.parse(item['paramJson']);
} catch (error) {
console.error(error);
}
result += hexChars + ' '; // 遍历检查大类
asciiResult += asciiChar; const treeItem = treeArr.find(i => i.key == item['category']);
if (!treeItem) {
if ((i + 2) % 32 === 0) { treeArr.push({
arr.push({ title: item['catDisplay'],
row: row, key: item['category'],
code: result, selectable: false,
asciiText: asciiResult, children: [
}); { key: id, title: mmlDisplay, object, operation, param },
result = ''; ],
asciiResult = ''; });
row += 10; } else {
treeItem.children.push({
key: id,
title: mmlDisplay,
object,
operation,
param,
});
}
}
state.mmlTreeData = treeArr;
} }
if (2 + i == hexString.length) { state.mmlLoading = false;
arr.push({
row: row,
code: result,
asciiText: asciiResult,
});
result = '';
asciiResult = '';
row += 10;
}
}
return arr;
}
// 信息详情HTMl内容处理
function rawDataHTMLScript(htmlString: string) {
// 删除所有 <a> 标签
// const withoutATags = htmlString.replace(/<a\b[^>]*>(.*?)<\/a>/gi, '');
// 删除所有 <script> 标签
let withoutScriptTags = htmlString.replace(
/<script\b[^>]*>([\s\S]*?)<\/script>/gi,
''
);
// 默认全展开
// const withoutHiddenElements = withoutScriptTags.replace(
// /style="display:none"/gi,
// 'style="background:#ffffff"'
// );
function set_node(node: any, str: string) {
if (!node) return;
node.style.display = str;
node.style.background = '#ffffff';
}
Reflect.set(window, 'set_node', set_node);
function toggle_node(node: any) {
node = document.getElementById(node);
if (!node) return;
set_node(node, node.style.display != 'none' ? 'none' : 'block');
}
Reflect.set(window, 'toggle_node', toggle_node);
function hide_node(node: any) {
node = document.getElementById(node);
if (!node) return;
set_node(node, 'none');
}
Reflect.set(window, 'hide_node', hide_node);
// 展开第一个
withoutScriptTags = withoutScriptTags.replace(
'id="f1c" style="display:none"',
'id="f1c" style="display:block"'
);
return withoutScriptTags;
}
/**信息文件下载 */
function fnDownloadFile() {
Modal.confirm({
title: t('common.tipTitle'),
content: t('views.traceManage.analysis.taskDownTip'),
onOk() {
const blob = new Blob([modalState.from.rawDataHTML], {
type: 'text/plain',
});
saveAs(blob, `${modalState.title}_${Date.now()}.html`);
},
}); });
} }
onMounted(() => { onMounted(() => {
// 获取列表数据 // 获取网元网元列表
fnGetList(); useNeInfoStore()
.fnNelist()
.then(res => {
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
if (res.data.length > 0) {
let arr: Record<string, any>[] = [];
res.data.forEach(i => {
if (i.neType === 'OMC') {
arr.push({ value: i.neId, label: i.neName });
}
});
neOtions.value = arr;
if (arr.length > 0) {
state.neId = arr[0].value;
// 获取列表数据
fnGetList();
}
} else {
message.warning({
content: `暂无OMC网元`,
duration: 5,
});
}
} else {
message.warning({
content: `暂无网元列表数据`,
duration: 2,
});
}
});
}); });
</script> </script>
<template> <template>
<PageContainer :title="title"> <PageContainer :title="title">
<a-card <a-row :gutter="16">
v-show="tableState.seached" <a-col :span="6">
:bordered="false" <!-- 命令导航 -->
:body-style="{ marginBottom: '24px', paddingBottom: 0 }" <a-card
> size="small"
<!-- 表格搜索栏 --> :bordered="false"
<a-form :model="queryParams" name="queryParams" layout="horizontal"> title="命令导航"
<a-row :gutter="16"> :loading="state.mmlLoading"
<a-col :lg="6" :md="12" :xs="24"> >
<a-form-item <a-form layout="vertical" autocomplete="off">
:label="t('views.traceManage.analysis.imsi')" <a-form-item name="neId ">
name="imsi" <a-select
> v-model:value="state.neId"
<a-input :options="neOtions"
v-model:value="queryParams.imsi" placeholder="请选择OMC操作命令"
:allow-clear="true" />
:placeholder="t('views.traceManage.analysis.imsiPlease')"
></a-input>
</a-form-item> </a-form-item>
</a-col> <a-form-item name="listeningPort">
<a-col :lg="6" :md="12" :xs="24"> <a-tree :tree-data="state.mmlTreeData" @select="fnTreeSelect" />
<a-form-item
:label="t('views.traceManage.analysis.msisdn')"
name="imsi"
>
<a-input
v-model:value="queryParams.msisdn"
:allow-clear="true"
:placeholder="t('views.traceManage.analysis.msisdnPlease')"
></a-input>
</a-form-item> </a-form-item>
</a-col> </a-form>
<a-col :lg="6" :md="12" :xs="24"> </a-card>
<a-form-item> </a-col>
<a-space :size="8"> <a-col :span="18">
<a-button type="primary" @click.prevent="fnGetList"> <!-- 命令参数输入 -->
<template #icon><SearchOutlined /></template> <a-card
{{ t('common.search') }} size="small"
</a-button> :bordered="false"
<a-button type="default" @click.prevent="fnQueryReset"> :loading="!state.mmlSelect.title"
<template #icon><ClearOutlined /></template> >
{{ t('common.reset') }} <template #title>
</a-button> <a-typography-text strong v-if="state.mmlSelect.title">
</a-space> {{ state.mmlSelect.title }}
</a-form-item> </a-typography-text>
</a-col> <a-typography-text type="danger" v-else>
</a-row> 左侧命令导航中选择要操作项
</a-form> </a-typography-text>
</a-card> </template>
<!-- 插槽-卡片右侧 -->
<a-card :bordered="false" :body-style="{ padding: '0px' }"> <template #extra>
<!-- 插槽-卡片左侧侧 --> <a-space :size="8">
<template #title> </template> <a-button
type="default"
<!-- 插槽-卡片右侧 --> size="small"
<template #extra> @click.prevent="fnCleanFrom"
<a-space :size="8" align="center"> v-if="!!state.mmlSelect.param"
<a-tooltip> >
<template #title>{{ t('common.searchBarText') }}</template> <template #icon>
<a-switch <ClearOutlined />
v-model:checked="tableState.seached" </template>
:checked-children="t('common.switch.show')" 清除表单
:un-checked-children="t('common.switch.hide')" </a-button>
size="small" <a-button
/> type="primary"
</a-tooltip> size="small"
<a-tooltip> :disabled="!state.mmlSelect.title"
<template #title>{{ t('common.reloadText') }}</template> :loading="state.from.sendLoading"
<a-button type="text" @click.prevent="fnGetList"> @click.prevent="fnSendMML"
<template #icon><ReloadOutlined /></template> >
</a-button> <template #icon>
</a-tooltip> <SendOutlined />
<a-tooltip> </template>
<template #title>{{ t('common.sizeText') }}</template> 执行
<a-dropdown trigger="click">
<a-button type="text">
<template #icon><ColumnHeightOutlined /></template>
</a-button> </a-button>
<template #overlay>
<a-menu
:selected-keys="[tableState.size as string]"
@click="fnTableSize"
>
<a-menu-item key="default">{{
t('common.size.default')
}}</a-menu-item>
<a-menu-item key="middle">{{
t('common.size.middle')
}}</a-menu-item>
<a-menu-item key="small">{{
t('common.size.small')
}}</a-menu-item>
</a-menu>
</template>
</a-dropdown>
</a-tooltip>
</a-space>
</template>
<!-- 表格列表 -->
<a-table
class="table"
row-key="id"
:columns="tableColumns"
:loading="tableState.loading"
:data-source="tableState.data"
:size="tableState.size"
:pagination="tablePagination"
:scroll="{ x: true }"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'id'">
<a-space :size="8" align="center">
<a-tooltip>
<template #title>查看详情</template>
<a-button type="link" @click.prevent="fnModalVisible(record)">
<template #icon><ProfileOutlined /></template>
</a-button>
</a-tooltip>
</a-space> </a-space>
</template> </template>
</template>
</a-table>
</a-card>
<!-- 详情框 --> <a-form
<a-modal layout="vertical"
width="800px" autocomplete="off"
:title="modalState.title" :validate-on-rule-change="false"
:visible="modalState.visible" :validateTrigger="[]"
@cancel="fnModalVisibleClose" >
> <a-row :gutter="16">
<div class="raw-title"> <a-col
{{ t('views.traceManage.analysis.signalData') }} :lg="6"
</div> :md="12"
<a-row :xs="24"
class="raw" v-for="item in state.mmlSelect.param"
:gutter="16" >
v-for="v in modalState.from.rawData" <a-form-item
:key="v.row" :label="item.display"
> :name="item.name"
<a-col class="num" :span="2">{{ v.row }}</a-col> :required="item.optional === 'false'"
<a-col class="code" :span="12">{{ v.code }}</a-col> >
<a-col class="txt" :span="10">{{ v.asciiText }}</a-col> <a-tooltip>
</a-row> <template #title v-if="item.comment">
<a-divider /> {{ item.comment }}
<div class="raw-title"> </template>
{{ t('views.traceManage.analysis.signalDetail') }} <a-input
<a-button v-if="
type="dashed" ['string', 'ipv6', 'ipv4', 'regex'].includes(item.type)
"
v-model:value="state.from[item.name]"
:placeholder="item.filter"
></a-input>
<a-input-number
v-else-if="item.type === 'int'"
v-model:value="state.from[item.name]"
:min="0"
:max="65535"
:placeholder="item.filter"
style="width: 100%"
></a-input-number>
<a-switch
v-else-if="item.type === 'bool'"
v-model:checked="state.from[item.name]"
:checked-children="t('common.switch.open')"
:un-checked-children="t('common.switch.shut')"
></a-switch>
<a-select
v-else-if="item.type === 'enum'"
v-model:value="state.from[item.name]"
:placeholder="item.filter"
:allow-clear="true"
>
<a-select-option
:value="v"
:key="v"
v-for="(k, v) in JSON.parse(item.filter)"
>
{{ k }}
</a-select-option>
</a-select>
</a-tooltip>
</a-form-item>
</a-col>
</a-row>
</a-form>
</a-card>
<!-- 命令展示 -->
<a-card
title="控制台"
:bordered="false"
size="small" size="small"
@click.prevent="fnDownloadFile" :body-style="{ padding: 0 }"
v-if="modalState.from.downBtn" style="margin-top: 16px"
v-show="state.mmlSelect.title"
> >
<template #icon> <!-- 插槽-卡片右侧 -->
<DownloadOutlined /> <template #extra>
<a-space :size="8" align="center">
<a-button
type="default"
size="small"
@click.prevent="fnCleanCmdLog"
>
<template #icon>
<ClearOutlined />
</template>
清除日志
</a-button>
</a-space>
</template> </template>
{{ t('views.traceManage.analysis.taskDownText') }}
</a-button> <CodemirrorEdite
</div> v-model:value="state.mmlCmdLog"
<div class="raw-html" v-html="modalState.from.rawDataHTML"></div> :disabled="true"
</a-modal> :editor-style="{ height: '500px !important' }"
placeholder="等待发送命令"
></CodemirrorEdite>
</a-card>
</a-col>
</a-row>
</PageContainer> </PageContainer>
</template> </template>
<style lang="less" scoped> <style lang="less" scoped></style>
.table :deep(.ant-pagination) {
padding: 0 24px;
}
.raw {
&-title {
color: #000000d9;
font-size: 24px;
line-height: 1.8;
}
.num {
background-color: #e5e5e5;
}
.code {
background-color: #e7e6ff;
}
.txt {
background-color: #ffe3e5;
}
&-html {
max-height: 300px;
overflow-y: scroll;
}
}
</style>

View File

@@ -2,15 +2,13 @@
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import { reactive, ref, onMounted, toRaw } from 'vue'; import { reactive, ref, onMounted, toRaw } from 'vue';
import { PageContainer } from '@ant-design-vue/pro-layout'; import { PageContainer } from '@ant-design-vue/pro-layout';
import { Form, message } from 'ant-design-vue/lib'; import { message } from 'ant-design-vue/lib';
import CodemirrorEdite from '@/components/CodemirrorEdite/index.vue'; import CodemirrorEdite from '@/components/CodemirrorEdite/index.vue';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants'; import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { getOperationSet, updateOperationSet } from '@/api/mmlManage/mmlSet';
import useNeInfoStore from '@/store/modules/neinfo'; import useNeInfoStore from '@/store/modules/neinfo';
import { regExpIPv4, regExpIPv6 } from '@/utils/regular-utils'; import { regExpIPv4, regExpIPv6 } from '@/utils/regular-utils';
import useI18n from '@/hooks/useI18n'; import useI18n from '@/hooks/useI18n';
import { getSubscriberByUDM, sendMMlByUDM } from '@/api/mmlManage/udmOperate'; import { getMMLByUDM, sendMMlByUDM } from '@/api/mmlManage/udmOperate';
import { number } from 'echarts/core';
const { t } = useI18n(); const { t } = useI18n();
const route = useRoute(); const route = useRoute();
@@ -78,12 +76,20 @@ function fnSendMML() {
const param = toRaw(state.mmlSelect.param) || []; const param = toRaw(state.mmlSelect.param) || [];
const from = toRaw(state.from); const from = toRaw(state.from);
for (const item of param) { for (const item of param) {
// 检查是否存在值 const value = from[item.name];
const hasV = Reflect.has(from, item.name) && !!from[item.name];
if (!hasV) { // 是否必填项且有效值
const notV = value === null || value === undefined || value === '';
if (item.optional === 'false' && notV) {
message.warning(`必填参数:${item.display}`, 2); message.warning(`必填参数:${item.display}`, 2);
return; return;
} }
// 检查是否存在值
if (!Reflect.has(from, item.name) || notV) {
continue;
}
// 检查规则 // 检查规则
const [ok, msg] = ruleVerification(item, from[item.name]); const [ok, msg] = ruleVerification(item, from[item.name]);
if (!ok) { if (!ok) {
@@ -93,6 +99,7 @@ function fnSendMML() {
}); });
return; return;
} }
argsArr.push(`${item.name}=${from[item.name]}`); argsArr.push(`${item.name}=${from[item.name]}`);
} }
@@ -105,6 +112,7 @@ function fnSendMML() {
} else { } else {
cmdStr = `${operation} ${argsStr}`; cmdStr = `${operation} ${argsStr}`;
} }
cmdStr = cmdStr.trim();
// 发送 // 发送
state.mmlCmdLog += `$> ${cmdStr}\n`; state.mmlCmdLog += `$> ${cmdStr}\n`;
@@ -137,7 +145,6 @@ function ruleVerification(
const filterArr = filter.split('~'); const filterArr = filter.split('~');
const minInt = parseInt(filterArr[0]); const minInt = parseInt(filterArr[0]);
const maxInt = parseInt(filterArr[1]); const maxInt = parseInt(filterArr[1]);
debugger;
const valueInt = parseInt(value); const valueInt = parseInt(value);
if (valueInt < minInt || valueInt > maxInt) { if (valueInt < minInt || valueInt > maxInt) {
return [false, `${display} 参数值不在合理范围 ${filter}`]; return [false, `${display} 参数值不在合理范围 ${filter}`];
@@ -220,7 +227,7 @@ function ruleVerification(
/**查询可选命令列表 */ /**查询可选命令列表 */
function fnGetList() { function fnGetList() {
getSubscriberByUDM().then(res => { getMMLByUDM().then(res => {
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) { if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
// 构建树结构 // 构建树结构
const treeArr: Record<string, any>[] = []; const treeArr: Record<string, any>[] = [];
@@ -395,14 +402,14 @@ onMounted(() => {
['string', 'ipv6', 'ipv4', 'regex'].includes(item.type) ['string', 'ipv6', 'ipv4', 'regex'].includes(item.type)
" "
v-model:value="state.from[item.name]" v-model:value="state.from[item.name]"
:placeholder="state.from[item.filter]" :placeholder="item.filter"
></a-input> ></a-input>
<a-input-number <a-input-number
v-else-if="item.type === 'int'" v-else-if="item.type === 'int'"
v-model:value="state.from[item.name]" v-model:value="state.from[item.name]"
:min="0" :min="0"
:max="65535" :max="65535"
:placeholder="state.from[item.filter]" :placeholder="item.filter"
style="width: 100%" style="width: 100%"
></a-input-number> ></a-input-number>
<a-switch <a-switch
@@ -414,12 +421,13 @@ onMounted(() => {
<a-select <a-select
v-else-if="item.type === 'enum'" v-else-if="item.type === 'enum'"
v-model:value="state.from[item.name]" v-model:value="state.from[item.name]"
:placeholder="state.from[item.filter]" :placeholder="item.filter"
:allow-clear="true"
> >
<a-select-option <a-select-option
:value="+v" :value="v"
:key="+v" :key="v"
v-for="(k, v) in JSON.parse(state.from[item.filter])" v-for="(k, v) in JSON.parse(item.filter)"
> >
{{ k }} {{ k }}
</a-select-option> </a-select-option>
@@ -459,6 +467,7 @@ onMounted(() => {
<CodemirrorEdite <CodemirrorEdite
v-model:value="state.mmlCmdLog" v-model:value="state.mmlCmdLog"
:disabled="true" :disabled="true"
:editor-style="{ height: '500px !important' }"
placeholder="等待发送命令" placeholder="等待发送命令"
></CodemirrorEdite> ></CodemirrorEdite>
</a-card> </a-card>