1582 lines
46 KiB
Vue
1582 lines
46 KiB
Vue
<script setup lang="ts">
|
|
import { reactive, ref, onMounted, toRaw, nextTick, watch } from 'vue';
|
|
import { PageContainer } from 'antdv-pro-layout';
|
|
import { Modal, message } from 'ant-design-vue/lib';
|
|
import useI18n from '@/hooks/useI18n';
|
|
import TableColumnsDnd from '@/components/TableColumnsDnd/index.vue';
|
|
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
|
import {
|
|
getParamConfigTopTab,
|
|
getParamConfigInfoForm,
|
|
updateParamConfigInfo,
|
|
delParamConfigInfo,
|
|
addParamConfigInfo,
|
|
} from '@/api/configManage/configParam';
|
|
import useNeInfoStore from '@/store/modules/neinfo';
|
|
import useOptions from './hooks/useOptions';
|
|
import useSMFOptions from './hooks/useSMFOptions';
|
|
import { SizeType } from 'ant-design-vue/lib/config-provider';
|
|
import { DataNode } from 'ant-design-vue/lib/tree';
|
|
const neInfoStore = useNeInfoStore();
|
|
const { t } = useI18n();
|
|
const { ruleVerification } = useOptions();
|
|
const { initUPFIds, optionsUPFIds } = useSMFOptions();
|
|
|
|
/**网元参数 */
|
|
let neCascaderOptions = ref<Record<string, any>[]>([]);
|
|
|
|
/**网元类型选择 type,id */
|
|
let neTypeSelect = ref<string[]>(['', '']);
|
|
|
|
/**左侧导航是否可收起 */
|
|
let collapsible = ref<boolean>(true);
|
|
|
|
/**改变收起状态 */
|
|
function changeCollapsible() {
|
|
collapsible.value = !collapsible.value;
|
|
}
|
|
|
|
/**对象信息状态类型 */
|
|
type TreeStateType = {
|
|
/**网元 loading */
|
|
loading: boolean;
|
|
/**网元配置 tree */
|
|
data: DataNode[];
|
|
/**选择对应Node一级 tree */
|
|
selectNode: Record<string, any>;
|
|
/**选择 loading */
|
|
selectLoading: boolean;
|
|
};
|
|
|
|
let treeState: TreeStateType = reactive({
|
|
loading: true,
|
|
data: [],
|
|
selectNode: {
|
|
topDisplay: '' as string,
|
|
topTag: '' as string,
|
|
method: [] as string[],
|
|
//
|
|
title: '' as string,
|
|
key: '' as string,
|
|
type: 'list' as 'list' | 'array',
|
|
},
|
|
selectLoading: true,
|
|
});
|
|
|
|
/**查询可选命令列表 */
|
|
function fnSelectConfigNode(_: any, info: any) {
|
|
const { title, key, method } = info.node;
|
|
treeState.selectNode.topDisplay = title;
|
|
treeState.selectNode.topTag = key;
|
|
if (method) {
|
|
treeState.selectNode.method = method.split(',');
|
|
} else {
|
|
treeState.selectNode.method = ['post', 'put', 'delete'];
|
|
}
|
|
treeState.selectNode.title = title;
|
|
treeState.selectNode.key = key;
|
|
fnActiveConfigNode(key);
|
|
}
|
|
|
|
/**tab标签栏标签点击监听 */
|
|
function fnActiveConfigNode(key: string | number) {
|
|
listState.data = [];
|
|
arrayState.data = [];
|
|
treeState.selectLoading = true;
|
|
if (key !== '#') {
|
|
treeState.selectNode.topTag = key as string;
|
|
}
|
|
|
|
// 获取数据
|
|
const neType = neTypeSelect.value[0];
|
|
const neId = neTypeSelect.value[1];
|
|
const topTag = treeState.selectNode.topTag;
|
|
getParamConfigInfoForm(neType, topTag, neId).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS && res.data.type) {
|
|
treeState.selectLoading = false;
|
|
treeState.selectNode.topTag = topTag;
|
|
treeState.selectNode.type = res.data.type;
|
|
if (res.data.type === 'list') {
|
|
listState.data = res.data.data;
|
|
listEditClose();
|
|
}
|
|
if (res.data.type === 'array') {
|
|
arrayState.data = res.data.data;
|
|
arrayState.dataRule = res.data.dataRule;
|
|
|
|
// 列表数据
|
|
const columnsData: Record<string, any>[] = [];
|
|
for (const v of arrayState.data) {
|
|
const row: Record<string, any> = {};
|
|
for (const item of v.record) {
|
|
row[item.name] = item;
|
|
}
|
|
columnsData.push(row);
|
|
}
|
|
arrayState.columnsData = columnsData;
|
|
|
|
// 列表字段
|
|
const columns: Record<string, any>[] = [];
|
|
for (const rule of arrayState.dataRule.record) {
|
|
columns.push({
|
|
title: rule.display,
|
|
dataIndex: rule.name,
|
|
align: 'left',
|
|
resizable: true,
|
|
width: 150,
|
|
minWidth: 100,
|
|
maxWidth: 350,
|
|
});
|
|
}
|
|
columns.push({
|
|
title: t('common.operate'),
|
|
dataIndex: 'index',
|
|
key: 'index',
|
|
align: 'center',
|
|
fixed: 'right',
|
|
width: 100,
|
|
});
|
|
arrayState.columns = columns;
|
|
|
|
arrayEditClose();
|
|
}
|
|
} else {
|
|
message.warning({
|
|
content: t('common.noData'),
|
|
duration: 3,
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
/**查询配置Tag标签 */
|
|
function fnGetParamConfigTopTab() {
|
|
const neType = neTypeSelect.value[0];
|
|
if (!neType) {
|
|
message.warning({
|
|
content: t('views.configManage.configParamForm.neTypePleace'),
|
|
duration: 3,
|
|
});
|
|
return;
|
|
}
|
|
|
|
treeState.loading = true;
|
|
// 获取数据
|
|
getParamConfigTopTab(neType).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
|
|
treeState.data = res.data.map(item => ({
|
|
children: undefined,
|
|
title: item.topDisplay,
|
|
key: item.topTag,
|
|
...item,
|
|
}));
|
|
treeState.loading = false;
|
|
// 取首个tag
|
|
if (res.data.length > 0) {
|
|
const itemOne = res.data[0];
|
|
treeState.selectNode = {
|
|
title: itemOne.topDisplay,
|
|
key: itemOne.topTag,
|
|
type: 'list',
|
|
...itemOne,
|
|
};
|
|
fnActiveConfigNode(itemOne.topTag);
|
|
}
|
|
} else {
|
|
message.warning({
|
|
content: t('views.configManage.configParamForm.noConfigData'),
|
|
duration: 3,
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
/**单列表状态类型 */
|
|
type ListStateType = {
|
|
/**紧凑型 */
|
|
size: SizeType;
|
|
/**单列记录字段 */
|
|
columns: Record<string, any>[];
|
|
/**单列记录数据 */
|
|
data: Record<string, any>[];
|
|
/**编辑行记录 */
|
|
editRecord: Record<string, any>;
|
|
};
|
|
|
|
/**单列表状态 */
|
|
let listState: ListStateType = reactive({
|
|
size: 'small',
|
|
columns: [
|
|
{
|
|
title: 'Key',
|
|
dataIndex: 'display',
|
|
align: 'left',
|
|
width: '30%',
|
|
},
|
|
{
|
|
title: 'Value',
|
|
dataIndex: 'value',
|
|
align: 'left',
|
|
width: '70%',
|
|
},
|
|
],
|
|
data: [],
|
|
editRecord: {},
|
|
});
|
|
|
|
/**单列表编辑 */
|
|
function listEdit(row: Record<string, any>) {
|
|
listState.editRecord = Object.assign({}, row);
|
|
}
|
|
|
|
/**单列表编辑关闭 */
|
|
function listEditClose() {
|
|
listState.editRecord = {};
|
|
}
|
|
|
|
/**单列表编辑确认 */
|
|
function listEditOk() {
|
|
const from = toRaw(listState.editRecord);
|
|
// 检查规则
|
|
const [ok, msg] = ruleVerification(from);
|
|
if (!ok) {
|
|
message.warning({
|
|
content: `${msg}`,
|
|
duration: 3,
|
|
});
|
|
return;
|
|
}
|
|
|
|
// 发送
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
let data = {
|
|
[from['name']]: from['value'],
|
|
};
|
|
updateParamConfigInfo(
|
|
'list',
|
|
{
|
|
neType: neTypeSelect.value[0],
|
|
neId: neTypeSelect.value[1],
|
|
topTag: treeState.selectNode.topTag,
|
|
},
|
|
data
|
|
)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('views.configManage.configParamForm.updateValue', {
|
|
num: from['display'],
|
|
}),
|
|
duration: 3,
|
|
});
|
|
// 改变表格数据
|
|
const item = listState.data.filter(
|
|
(item: Record<string, any>) => from['name'] === item['name']
|
|
)[0];
|
|
if (item) {
|
|
Object.assign(item, listState.editRecord);
|
|
}
|
|
} else {
|
|
message.warning({
|
|
content: t('views.configManage.configParamForm.updateValueErr'),
|
|
duration: 3,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
listState.editRecord = {};
|
|
});
|
|
}
|
|
|
|
/**表格分页器参数 */
|
|
let tablePagination = reactive({
|
|
/**当前页数 */
|
|
current: 1,
|
|
/**每页条数 */
|
|
pageSize: 20,
|
|
/**默认的每页条数 */
|
|
defaultPageSize: 20,
|
|
/**指定每页可以显示多少条 */
|
|
pageSizeOptions: ['10', '20', '50', '100'],
|
|
/**只有一页时是否隐藏分页器 */
|
|
hideOnSinglePage: true,
|
|
/**是否可以快速跳转至某页 */
|
|
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;
|
|
},
|
|
});
|
|
|
|
/**多列列表状态类型 */
|
|
type ArrayStateType = {
|
|
/**紧凑型 */
|
|
size: SizeType;
|
|
/**多列嵌套记录字段 */
|
|
columns: Record<string, any>[];
|
|
/**表格字段列排序 */
|
|
columnsDnd: Record<string, any>[];
|
|
/**多列记录数据 */
|
|
columnsData: Record<string, any>[];
|
|
/**多列嵌套展开key */
|
|
arrayChildExpandKeys: any[];
|
|
|
|
/**多列记录数据 */
|
|
data: Record<string, any>[];
|
|
/**多列记录规则 */
|
|
dataRule: Record<string, any>;
|
|
};
|
|
|
|
/**多列列表状态 */
|
|
let arrayState: ArrayStateType = reactive({
|
|
size: 'small',
|
|
columns: [],
|
|
columnsDnd: [],
|
|
columnsData: [],
|
|
arrayChildExpandKeys: [],
|
|
data: [],
|
|
dataRule: {},
|
|
});
|
|
|
|
/**多列表编辑 */
|
|
function arrayEdit(rowIndex: Record<string, any>) {
|
|
const item = arrayState.data.find((s: any) => s.key === rowIndex.value);
|
|
if (!item) return;
|
|
const from = arrayEditInit(item, arrayState.dataRule);
|
|
// 处理信息
|
|
const row: Record<string, any> = {};
|
|
for (const v of from.record) {
|
|
if (Array.isArray(v.array)) {
|
|
continue;
|
|
}
|
|
row[v.name] = Object.assign({}, v);
|
|
}
|
|
|
|
modalState.from = row;
|
|
modalState.type = 'arrayEdit';
|
|
modalState.title = `${treeState.selectNode.topDisplay} ${from.title}`;
|
|
modalState.key = from.key;
|
|
modalState.data = from.record.filter((v: any) => !Array.isArray(v.array));
|
|
modalState.visible = true;
|
|
|
|
// 关闭嵌套
|
|
arrayChildExpandClose();
|
|
}
|
|
|
|
/**多列表编辑关闭 */
|
|
function arrayEditClose() {
|
|
arrayChildExpandClose();
|
|
fnModalCancel();
|
|
}
|
|
|
|
/**多列表编辑确认 */
|
|
function arrayEditOk(from: Record<string, any>) {
|
|
const loc = from['index']['value'];
|
|
const neType = neTypeSelect.value[0];
|
|
// 遍历提取属性和值
|
|
let data: Record<string, any> = {};
|
|
for (const key in from) {
|
|
// 子嵌套的不插入
|
|
if (from[key]['array']) {
|
|
continue;
|
|
}
|
|
// 检查规则
|
|
const [ok, msg] = ruleVerification(from[key]);
|
|
if (!ok) {
|
|
message.warning({
|
|
content: `${msg}`,
|
|
duration: 3,
|
|
});
|
|
return;
|
|
}
|
|
data[key] = from[key]['value'];
|
|
}
|
|
|
|
// 发送
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
updateParamConfigInfo(
|
|
'array',
|
|
{
|
|
neType: neType,
|
|
neId: neTypeSelect.value[1],
|
|
topTag: treeState.selectNode.topTag,
|
|
loc,
|
|
},
|
|
data
|
|
)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('views.configManage.configParamForm.updateItem', {
|
|
num: modalState.title,
|
|
}),
|
|
duration: 3,
|
|
});
|
|
fnActiveConfigNode('#');
|
|
} else {
|
|
message.warning({
|
|
content: t('views.configManage.configParamForm.updateItemErr'),
|
|
duration: 3,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
arrayEditClose();
|
|
});
|
|
}
|
|
|
|
/**多列表删除单行 */
|
|
function arrayDelete(rowIndex: Record<string, any>) {
|
|
const index = rowIndex.value;
|
|
const title = `${treeState.selectNode.topDisplay} Index-${index}`;
|
|
|
|
Modal.confirm({
|
|
title: t('common.tipTitle'),
|
|
content: t('views.configManage.configParamForm.delItemTip', {
|
|
num: title,
|
|
}),
|
|
onOk() {
|
|
delParamConfigInfo({
|
|
neType: neTypeSelect.value[0],
|
|
neId: neTypeSelect.value[1],
|
|
topTag: treeState.selectNode.topTag,
|
|
loc: index,
|
|
}).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('views.configManage.configParamForm.delItemOk', {
|
|
num: title,
|
|
}),
|
|
duration: 2,
|
|
});
|
|
arrayEditClose();
|
|
fnActiveConfigNode('#');
|
|
} else {
|
|
message.error({
|
|
content: `${res.msg}`,
|
|
duration: 2,
|
|
});
|
|
}
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
/**多列表新增单行 */
|
|
function arrayAdd() {
|
|
const from = arrayAddInit(arrayState.data, arrayState.dataRule);
|
|
|
|
// 处理信息
|
|
const row: Record<string, any> = {};
|
|
for (const v of from.record) {
|
|
if (Array.isArray(v.array)) {
|
|
continue;
|
|
}
|
|
row[v.name] = Object.assign({}, v);
|
|
}
|
|
|
|
modalState.from = row;
|
|
modalState.type = 'arrayAdd';
|
|
modalState.title = `${treeState.selectNode.topDisplay} ${from.title}`;
|
|
modalState.key = from.key;
|
|
modalState.data = from.record.filter((v: any) => !Array.isArray(v.array));
|
|
modalState.visible = true;
|
|
}
|
|
|
|
/**多列表新增单行确认 */
|
|
function arrayAddOk(from: Record<string, any>) {
|
|
const index = from['index']['value'];
|
|
const neType = neTypeSelect.value[0];
|
|
// 遍历提取属性和值
|
|
let data: Record<string, any> = {};
|
|
for (const key in from) {
|
|
// 子嵌套的不插入
|
|
if (from[key]['array']) {
|
|
continue;
|
|
}
|
|
// 检查规则
|
|
const [ok, msg] = ruleVerification(from[key]);
|
|
if (!ok) {
|
|
message.warning({
|
|
content: `${msg}`,
|
|
duration: 3,
|
|
});
|
|
return;
|
|
}
|
|
data[key] = from[key]['value'];
|
|
}
|
|
|
|
// 发送
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
addParamConfigInfo(
|
|
{
|
|
neType: neType,
|
|
neId: neTypeSelect.value[1],
|
|
topTag: treeState.selectNode.topTag,
|
|
loc: index,
|
|
},
|
|
data
|
|
)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('views.configManage.configParamForm.addItemOk', {
|
|
num: modalState.title,
|
|
}),
|
|
duration: 3,
|
|
});
|
|
fnActiveConfigNode('#');
|
|
} else {
|
|
message.warning({
|
|
content: t('views.configManage.configParamForm.addItemErr'),
|
|
duration: 3,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
arrayEditClose();
|
|
});
|
|
}
|
|
|
|
/**多列嵌套列表状态类型 */
|
|
type ArrayChildStateType = {
|
|
/**标题 */
|
|
title: string;
|
|
/**层级index */
|
|
loc: string;
|
|
/**紧凑型 */
|
|
size: SizeType;
|
|
/**多列嵌套记录字段 */
|
|
columns: Record<string, any>[];
|
|
/**表格字段列排序 */
|
|
columnsDnd: Record<string, any>[];
|
|
/**多列记录数据 */
|
|
columnsData: Record<string, any>[];
|
|
|
|
/**多列嵌套记录数据 */
|
|
data: Record<string, any>[];
|
|
/**多列嵌套记录规则 */
|
|
dataRule: Record<string, any>;
|
|
};
|
|
|
|
/**表格状态 */
|
|
let arrayChildState: ArrayChildStateType = reactive({
|
|
title: '',
|
|
loc: '',
|
|
size: 'small',
|
|
columns: [],
|
|
columnsDnd: [],
|
|
columnsData: [],
|
|
data: [],
|
|
dataRule: {},
|
|
});
|
|
|
|
/**多列表展开嵌套行 */
|
|
function arrayChildExpand(
|
|
indexRow: Record<string, any>,
|
|
row: Record<string, any>
|
|
) {
|
|
const loc = indexRow.value;
|
|
if (arrayChildState.loc === `${loc}/${row.name}`) {
|
|
arrayChildState.loc = '';
|
|
arrayState.arrayChildExpandKeys = [];
|
|
return;
|
|
}
|
|
arrayChildState.loc = '';
|
|
arrayState.arrayChildExpandKeys = [];
|
|
const from = Object.assign({}, JSON.parse(JSON.stringify(row)));
|
|
// 无数据时
|
|
if (!Array.isArray(from.value)) {
|
|
from.value = [];
|
|
}
|
|
const dataArr = Object.freeze(from.value);
|
|
const ruleArr = Object.freeze(from.array);
|
|
|
|
// 列表项数据
|
|
const dataArray: Record<string, any>[] = [];
|
|
for (const item of dataArr) {
|
|
const index = item['index'];
|
|
let record: Record<string, any>[] = [];
|
|
for (const key of Object.keys(item)) {
|
|
// 规则为准
|
|
for (const rule of ruleArr) {
|
|
if (rule['name'] === key) {
|
|
const ruleItem = Object.assign({ optional: 'true' }, rule, {
|
|
value: item[key],
|
|
});
|
|
record.push(ruleItem);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
// dataArray.push(record);
|
|
dataArray.push({ title: `Index-${index}`, key: index, record });
|
|
}
|
|
arrayChildState.data = dataArray;
|
|
|
|
// 无数据时,用于新增
|
|
arrayChildState.dataRule = {
|
|
title: `Index-0`,
|
|
key: 0,
|
|
record: ruleArr,
|
|
};
|
|
|
|
// 列表数据
|
|
const columnsData: Record<string, any>[] = [];
|
|
for (const v of arrayChildState.data) {
|
|
const row: Record<string, any> = {};
|
|
for (const item of v.record) {
|
|
row[item.name] = item;
|
|
}
|
|
columnsData.push(row);
|
|
}
|
|
arrayChildState.columnsData = columnsData;
|
|
|
|
// 列表字段
|
|
const columns: Record<string, any>[] = [];
|
|
for (const rule of arrayChildState.dataRule.record) {
|
|
columns.push({
|
|
title: rule.display,
|
|
dataIndex: rule.name,
|
|
align: 'left',
|
|
resizable: true,
|
|
width: 50,
|
|
minWidth: 50,
|
|
maxWidth: 250,
|
|
});
|
|
}
|
|
columns.push({
|
|
title: t('common.operate'),
|
|
dataIndex: 'index',
|
|
key: 'index',
|
|
align: 'center',
|
|
fixed: 'right',
|
|
width: 100,
|
|
});
|
|
arrayChildState.columns = columns;
|
|
|
|
nextTick(() => {
|
|
// 设置展开key
|
|
arrayState.arrayChildExpandKeys = [indexRow];
|
|
// 层级标识
|
|
arrayChildState.loc = `${loc}/${from['name']}`;
|
|
// 设置展开列表标题
|
|
arrayChildState.title = `${from['display']}`;
|
|
});
|
|
}
|
|
|
|
/**多列表展开嵌套行 */
|
|
function arrayChildExpandClose() {
|
|
arrayChildState.loc = '';
|
|
arrayState.arrayChildExpandKeys = [];
|
|
}
|
|
|
|
/**多列表嵌套行编辑 */
|
|
function arrayChildEdit(rowIndex: Record<string, any>) {
|
|
const item = arrayChildState.data.find((s: any) => s.key === rowIndex.value);
|
|
if (!item) return;
|
|
const from = arrayEditInit(item, arrayChildState.dataRule);
|
|
// 处理信息
|
|
const row: Record<string, any> = {};
|
|
for (const v of from.record) {
|
|
if (Array.isArray(v.array)) {
|
|
continue;
|
|
}
|
|
row[v.name] = Object.assign({}, v);
|
|
}
|
|
|
|
modalState.from = row;
|
|
modalState.type = 'arrayChildEdit';
|
|
modalState.title = `${arrayChildState.title} ${from.title}`;
|
|
modalState.key = from.key;
|
|
modalState.data = from.record.filter((v: any) => !Array.isArray(v.array));
|
|
modalState.visible = true;
|
|
}
|
|
|
|
/**多列表嵌套行编辑确认 */
|
|
function arrayChildEditOk(from: Record<string, any>) {
|
|
const index = from['index']['value'];
|
|
const loc = `${arrayChildState.loc}/${index}`;
|
|
const neType = neTypeSelect.value[0];
|
|
|
|
let data: Record<string, any> = {};
|
|
for (const key in from) {
|
|
// 子嵌套的不插入
|
|
if (from[key]['array']) {
|
|
continue;
|
|
}
|
|
// 检查规则
|
|
const [ok, msg] = ruleVerification(from[key]);
|
|
if (!ok) {
|
|
message.warning({
|
|
content: `${msg}`,
|
|
duration: 3,
|
|
});
|
|
return;
|
|
}
|
|
data[key] = from[key]['value'];
|
|
}
|
|
|
|
// 发送
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
updateParamConfigInfo(
|
|
'array',
|
|
{
|
|
neType: neType,
|
|
neId: neTypeSelect.value[1],
|
|
topTag: treeState.selectNode.topTag,
|
|
loc,
|
|
},
|
|
data
|
|
)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('views.configManage.configParamForm.updateItem', {
|
|
num: modalState.title,
|
|
}),
|
|
duration: 3,
|
|
});
|
|
fnActiveConfigNode('#');
|
|
} else {
|
|
message.warning({
|
|
content: t('views.configManage.configParamForm.updateItemErr'),
|
|
duration: 3,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
arrayEditClose();
|
|
});
|
|
}
|
|
|
|
/**多列表嵌套行删除单行 */
|
|
function arrayChildDelete(rowIndex: Record<string, any>) {
|
|
const index = rowIndex.value;
|
|
const loc = `${arrayChildState.loc}/${index}`;
|
|
const title = `${arrayChildState.title} Index-${index}`;
|
|
|
|
Modal.confirm({
|
|
title: t('common.tipTitle'),
|
|
content: t('views.configManage.configParamForm.delItemTip', {
|
|
num: title,
|
|
}),
|
|
onOk() {
|
|
delParamConfigInfo({
|
|
neType: neTypeSelect.value[0],
|
|
neId: neTypeSelect.value[1],
|
|
topTag: treeState.selectNode.topTag,
|
|
loc,
|
|
}).then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('views.configManage.configParamForm.delItemOk', {
|
|
num: title,
|
|
}),
|
|
duration: 2,
|
|
});
|
|
arrayEditClose();
|
|
fnActiveConfigNode('#');
|
|
} else {
|
|
message.error({
|
|
content: `${res.msg}`,
|
|
duration: 2,
|
|
});
|
|
}
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
/**多列表嵌套行新增单行 */
|
|
function arrayChildAdd() {
|
|
const from = arrayAddInit(arrayChildState.data, arrayChildState.dataRule);
|
|
// 处理信息
|
|
const row: Record<string, any> = {};
|
|
for (const v of from.record) {
|
|
if (Array.isArray(v.array)) {
|
|
continue;
|
|
}
|
|
row[v.name] = Object.assign({}, v);
|
|
}
|
|
|
|
modalState.from = row;
|
|
modalState.type = 'arrayChildAdd';
|
|
modalState.title = `${arrayChildState.title} ${from.title}`;
|
|
modalState.key = from.key;
|
|
modalState.data = from.record.filter((v: any) => !Array.isArray(v.array));
|
|
modalState.visible = true;
|
|
}
|
|
|
|
/**多列表新增单行确认 */
|
|
function arrayChildAddOk(from: Record<string, any>) {
|
|
const index = from['index']['value'];
|
|
const loc = `${arrayChildState.loc}/${index}`;
|
|
const neType = neTypeSelect.value[0];
|
|
|
|
let data: Record<string, any> = {};
|
|
for (const key in from) {
|
|
// 子嵌套的不插入
|
|
if (from[key]['array']) {
|
|
continue;
|
|
}
|
|
// 检查规则
|
|
const [ok, msg] = ruleVerification(from[key]);
|
|
if (!ok) {
|
|
message.warning({
|
|
content: `${msg}`,
|
|
duration: 3,
|
|
});
|
|
return;
|
|
}
|
|
data[key] = from[key]['value'];
|
|
}
|
|
|
|
// 发送
|
|
const hide = message.loading(t('common.loading'), 0);
|
|
addParamConfigInfo(
|
|
{
|
|
neType: neType,
|
|
neId: neTypeSelect.value[1],
|
|
topTag: treeState.selectNode.topTag,
|
|
loc,
|
|
},
|
|
data
|
|
)
|
|
.then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS) {
|
|
message.success({
|
|
content: t('views.configManage.configParamForm.addItemOk', {
|
|
num: modalState.title,
|
|
}),
|
|
duration: 3,
|
|
});
|
|
fnActiveConfigNode('#');
|
|
} else {
|
|
message.warning({
|
|
content: t('views.configManage.configParamForm.addItemErr'),
|
|
duration: 3,
|
|
});
|
|
}
|
|
})
|
|
.finally(() => {
|
|
hide();
|
|
arrayEditClose();
|
|
});
|
|
}
|
|
|
|
/**多列表编辑行数据初始化 */
|
|
function arrayEditInit(data: Record<string, any>, dataRule: any) {
|
|
const dataFrom = data.record;
|
|
const ruleFrom = Object.assign({}, JSON.parse(JSON.stringify(dataRule)));
|
|
for (const row of ruleFrom.record) {
|
|
// 子嵌套的不初始
|
|
if (row.array) {
|
|
row.value = [];
|
|
continue;
|
|
}
|
|
// 查找项的值
|
|
const item = dataFrom.find((s: any) => s.name === row.name);
|
|
if (!item) {
|
|
continue;
|
|
}
|
|
// 可选的
|
|
row.optional = 'true';
|
|
// 根据规则类型转值
|
|
if (['enum', 'int'].includes(row.type)) {
|
|
row.value = Number(item.value);
|
|
} else if ('bool' === row.type) {
|
|
row.value = Boolean(item.value);
|
|
} else {
|
|
row.value = item.value;
|
|
}
|
|
}
|
|
ruleFrom.key = data.key;
|
|
ruleFrom.title = data.title;
|
|
return ruleFrom;
|
|
}
|
|
|
|
/**多列表新增行数据初始化 */
|
|
function arrayAddInit(data: any[], dataRule: any) {
|
|
// 有数据时取得最后的index
|
|
let dataLastIndex = 0;
|
|
if (data.length !== 0) {
|
|
const lastFrom = Object.assign({}, JSON.parse(JSON.stringify(data.at(-1))));
|
|
if (lastFrom.record.length > 0) {
|
|
dataLastIndex = parseInt(lastFrom.key);
|
|
dataLastIndex += 1;
|
|
}
|
|
}
|
|
|
|
const ruleFrom = Object.assign({}, JSON.parse(JSON.stringify(dataRule)));
|
|
for (const row of ruleFrom.record) {
|
|
// 子嵌套的不初始
|
|
if (row.array) {
|
|
row.value = [];
|
|
continue;
|
|
}
|
|
// 可选的
|
|
row.optional = 'true';
|
|
// index值
|
|
if (row.name === 'index') {
|
|
let newIndex = dataLastIndex !== 0 ? dataLastIndex : parseInt(row.value);
|
|
if (isNaN(newIndex)) {
|
|
newIndex = 0;
|
|
}
|
|
row.value = newIndex;
|
|
ruleFrom.key = newIndex;
|
|
ruleFrom.title = `Index-${newIndex}`;
|
|
continue;
|
|
}
|
|
// 根据规则类型转值
|
|
if (['enum', 'int'].includes(row.type)) {
|
|
row.value = Number(row.value);
|
|
}
|
|
if ('bool' === row.type) {
|
|
row.value = Boolean(row.value);
|
|
}
|
|
}
|
|
return ruleFrom;
|
|
}
|
|
|
|
/**对话框对象信息状态类型 */
|
|
type ModalStateType = {
|
|
/**添加框是否显示 */
|
|
visible: boolean;
|
|
/**标题 */
|
|
title: string;
|
|
/**表单数据 */
|
|
from: Record<string, any>;
|
|
/**确定按钮 loading */
|
|
confirmLoading: boolean;
|
|
/**项类型 */
|
|
type: 'arrayAdd' | 'arrayEdit' | 'arrayChildAdd' | 'arrayChildEdit';
|
|
/**项Key */
|
|
key: string | number;
|
|
/**项数据 */
|
|
data: Record<string, any>[];
|
|
};
|
|
|
|
/**对话框对象信息状态 */
|
|
let modalState: ModalStateType = reactive({
|
|
visible: false,
|
|
title: 'Item',
|
|
from: {},
|
|
confirmLoading: false,
|
|
type: 'arrayAdd',
|
|
key: '',
|
|
data: [],
|
|
});
|
|
|
|
/**
|
|
* 对话框弹出确认执行函数
|
|
* 进行表达规则校验
|
|
*/
|
|
function fnModalOk() {
|
|
const from = toRaw(modalState.from);
|
|
if (modalState.type === 'arrayAdd') {
|
|
arrayAddOk(from);
|
|
}
|
|
if (modalState.type === 'arrayEdit') {
|
|
arrayEditOk(from);
|
|
}
|
|
if (modalState.type === 'arrayChildAdd') {
|
|
arrayChildAddOk(from);
|
|
}
|
|
if (modalState.type === 'arrayChildEdit') {
|
|
arrayChildEditOk(from);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 对话框弹出关闭执行函数
|
|
* 进行表达规则校验
|
|
*/
|
|
function fnModalCancel() {
|
|
modalState.visible = false;
|
|
modalState.from = {};
|
|
modalState.type = 'arrayAdd';
|
|
modalState.key = '';
|
|
modalState.data = [];
|
|
}
|
|
|
|
// 监听表格字段列排序变化关闭展开
|
|
watch(
|
|
() => arrayState.columnsDnd,
|
|
() => {
|
|
arrayEditClose();
|
|
}
|
|
);
|
|
|
|
// 监听新增编辑弹窗
|
|
watch(
|
|
() => modalState.visible,
|
|
val => {
|
|
// SMF需要选择配置的UPF id
|
|
if (val && neTypeSelect.value[0] === 'SMF') {
|
|
initUPFIds();
|
|
}
|
|
}
|
|
);
|
|
|
|
onMounted(() => {
|
|
// 获取网元网元列表
|
|
neInfoStore.fnNelist().then(res => {
|
|
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) {
|
|
if (res.data.length > 0) {
|
|
// 过滤不可用的网元
|
|
neCascaderOptions.value = neInfoStore.getNeCascaderOptions.filter(
|
|
(item: any) => {
|
|
return !['OMC'].includes(item.value);
|
|
}
|
|
);
|
|
if (neCascaderOptions.value.length === 0) {
|
|
message.warning({
|
|
content: t('common.noData'),
|
|
duration: 2,
|
|
});
|
|
return;
|
|
}
|
|
// 默认选择AMF
|
|
const item = neCascaderOptions.value.find(s => s.value === 'AMF');
|
|
if (item && item.children) {
|
|
const info = item.children[0];
|
|
neTypeSelect.value = [info.neType, info.neId];
|
|
} else {
|
|
const info = neCascaderOptions.value[0].children[0];
|
|
neTypeSelect.value = [info.neType, info.neId];
|
|
}
|
|
fnGetParamConfigTopTab();
|
|
}
|
|
} else {
|
|
message.warning({
|
|
content: t('common.noData'),
|
|
duration: 2,
|
|
});
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<PageContainer>
|
|
<a-row :gutter="16">
|
|
<a-col
|
|
:lg="6"
|
|
:md="6"
|
|
:xs="24"
|
|
style="margin-bottom: 24px"
|
|
v-show="collapsible"
|
|
>
|
|
<!-- 网元类型 -->
|
|
<a-card
|
|
size="small"
|
|
:bordered="false"
|
|
:title="t('views.configManage.configParamForm.treeTitle')"
|
|
:loading="treeState.loading"
|
|
>
|
|
<a-form layout="vertical" autocomplete="off">
|
|
<a-form-item name="neId ">
|
|
<a-cascader
|
|
v-model:value="neTypeSelect"
|
|
:options="neCascaderOptions"
|
|
:allow-clear="false"
|
|
@change="fnGetParamConfigTopTab"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item name="listeningPort">
|
|
<a-tree
|
|
:tree-data="treeState.data"
|
|
:selected-keys="[treeState.selectNode.topTag]"
|
|
@select="fnSelectConfigNode"
|
|
>
|
|
</a-tree>
|
|
</a-form-item>
|
|
</a-form>
|
|
</a-card>
|
|
</a-col>
|
|
<a-col :lg="collapsible ? 18 : 24" :md="collapsible ? 18 : 24" :xs="24">
|
|
<a-card
|
|
size="small"
|
|
:bordered="false"
|
|
:body-style="{ maxHeight: '650px', 'overflow-y': 'auto' }"
|
|
:loading="treeState.selectLoading"
|
|
>
|
|
<template #title>
|
|
<a-button type="text" @click.prevent="changeCollapsible()">
|
|
<template #icon>
|
|
<MenuFoldOutlined v-show="collapsible" />
|
|
<MenuUnfoldOutlined v-show="!collapsible" />
|
|
</template>
|
|
</a-button>
|
|
|
|
<a-typography-text strong v-if="treeState.selectNode.topDisplay">
|
|
{{ treeState.selectNode.topDisplay }}
|
|
</a-typography-text>
|
|
<a-typography-text type="danger" v-else>
|
|
{{ t('views.configManage.configParamForm.treeSelectTip') }}
|
|
</a-typography-text>
|
|
</template>
|
|
<template #extra>
|
|
<a-space :size="8" align="center" v-show="!treeState.selectLoading">
|
|
<a-tooltip>
|
|
<template #title>{{ t('common.reloadText') }}</template>
|
|
<a-button
|
|
type="default"
|
|
@click.prevent="fnActiveConfigNode('#')"
|
|
>
|
|
<template #icon>
|
|
<ReloadOutlined />
|
|
</template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
</a-space>
|
|
</template>
|
|
|
|
<!-- 单列表格列表 -->
|
|
<a-table
|
|
v-if="treeState.selectNode.type === 'list'"
|
|
class="table"
|
|
row-key="name"
|
|
:size="listState.size"
|
|
:columns="listState.columns"
|
|
:data-source="listState.data"
|
|
:pagination="tablePagination"
|
|
:bordered="true"
|
|
:scroll="{ x: true, y: '500px' }"
|
|
>
|
|
<template #bodyCell="{ column, text, record }">
|
|
<template v-if="column.dataIndex === 'value'">
|
|
<a-tooltip placement="topLeft">
|
|
<template #title v-if="record.comment">
|
|
{{ record.comment }}
|
|
</template>
|
|
<div class="editable-cell">
|
|
<div
|
|
v-if="
|
|
listState.editRecord['display'] === record['display']
|
|
"
|
|
class="editable-cell__input-wrapper"
|
|
>
|
|
<a-input-number
|
|
v-if="record['type'] === 'int'"
|
|
v-model:value="listState.editRecord['value']"
|
|
style="width: 100%"
|
|
></a-input-number>
|
|
<a-switch
|
|
v-else-if="record['type'] === 'bool'"
|
|
v-model:checked="listState.editRecord['value']"
|
|
:checked-children="t('common.switch.open')"
|
|
:un-checked-children="t('common.switch.shut')"
|
|
></a-switch>
|
|
<a-select
|
|
v-else-if="record['type'] === 'enum'"
|
|
v-model:value="listState.editRecord['value']"
|
|
:allow-clear="true"
|
|
style="width: 100%"
|
|
>
|
|
<a-select-option
|
|
:value="+v"
|
|
:key="+v"
|
|
v-for="(k, v) in JSON.parse(record['filter'])"
|
|
>
|
|
{{ k }}
|
|
</a-select-option>
|
|
</a-select>
|
|
<a-input
|
|
v-else
|
|
v-model:value="listState.editRecord['value']"
|
|
></a-input>
|
|
<a-space :size="16" align="center" direction="horizontal">
|
|
<a-tooltip placement="bottomRight">
|
|
<template #title> {{ t('common.ok') }} </template>
|
|
<a-popconfirm
|
|
:title="
|
|
t(
|
|
'views.configManage.configParamForm.editOkTip',
|
|
{ num: record['display'] }
|
|
)
|
|
"
|
|
placement="topRight"
|
|
@confirm="listEditOk()"
|
|
>
|
|
<a-button
|
|
type="text"
|
|
class="editable-cell__icon-edit"
|
|
>
|
|
<template #icon><CheckOutlined /></template>
|
|
</a-button>
|
|
</a-popconfirm>
|
|
</a-tooltip>
|
|
<a-tooltip placement="bottomRight">
|
|
<template #title>
|
|
{{ t('common.cancel') }}
|
|
</template>
|
|
<a-button
|
|
type="text"
|
|
class="editable-cell__icon-edit"
|
|
@click.prevent="listEditClose()"
|
|
>
|
|
<template #icon><CloseOutlined /></template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
</a-space>
|
|
</div>
|
|
<div v-else class="editable-cell__text-wrapper">
|
|
<template v-if="record['type'] === 'enum'">
|
|
{{ JSON.parse(record['filter'])[text] }}
|
|
</template>
|
|
<template v-else>{{ `${text}` || ' ' }}</template>
|
|
<EditOutlined
|
|
class="editable-cell__icon"
|
|
@click="listEdit(record)"
|
|
v-if="
|
|
!['read-only', 'read', 'ro'].includes(record.access)
|
|
"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</a-tooltip>
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
|
|
<!-- array类型 -->
|
|
<template v-if="treeState.selectNode.type === 'array'">
|
|
<a-table
|
|
class="table"
|
|
row-key="index"
|
|
:columns="treeState.selectNode.method.includes('get') ? arrayState.columnsDnd.filter((s:any)=>s.key !== 'index') : arrayState.columnsDnd"
|
|
:data-source="arrayState.columnsData"
|
|
:size="arrayState.size"
|
|
:pagination="tablePagination"
|
|
:bordered="true"
|
|
:scroll="{ x: arrayState.columnsDnd.length * 200, y: 480 }"
|
|
@resizeColumn="(w:number, col:any) => (col.width = w)"
|
|
:show-expand-column="false"
|
|
v-model:expanded-row-keys="arrayState.arrayChildExpandKeys"
|
|
>
|
|
<!-- 多列新增操作 -->
|
|
<template #title>
|
|
<a-space :size="16" align="center">
|
|
<a-button
|
|
type="primary"
|
|
@click.prevent="arrayAdd()"
|
|
size="small"
|
|
v-if="treeState.selectNode.method.includes('post')"
|
|
>
|
|
<template #icon> <PlusOutlined /> </template>
|
|
{{ t('common.addText') }}
|
|
</a-button>
|
|
<TableColumnsDnd
|
|
type="ghost"
|
|
:cache-id="treeState.selectNode.key"
|
|
:columns="treeState.selectNode.method.includes('get') ? [...arrayState.columns.filter((s:any)=>s.key !== 'index')] : arrayState.columns"
|
|
v-model:columns-dnd="arrayState.columnsDnd"
|
|
></TableColumnsDnd>
|
|
</a-space>
|
|
</template>
|
|
|
|
<!-- 多列数据渲染 -->
|
|
<template #bodyCell="{ column, text, record }">
|
|
<template v-if="column?.key === 'index'">
|
|
<a-space :size="16" align="center">
|
|
<a-tooltip
|
|
v-if="treeState.selectNode.method.includes('put')"
|
|
>
|
|
<template #title>{{ t('common.editText') }}</template>
|
|
<a-button type="link" @click.prevent="arrayEdit(text)">
|
|
<template #icon><FormOutlined /></template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
<a-tooltip
|
|
v-if="treeState.selectNode.method.includes('delete')"
|
|
>
|
|
<template #title>{{ t('common.deleteText') }}</template>
|
|
<a-button type="link" @click.prevent="arrayDelete(text)">
|
|
<template #icon><DeleteOutlined /></template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
</a-space>
|
|
</template>
|
|
<template v-else-if="text">
|
|
<a-tooltip placement="topLeft">
|
|
<template #title v-if="text.comment">
|
|
{{ text.comment }}
|
|
</template>
|
|
<div class="editable-cell">
|
|
<template v-if="text.array">
|
|
<a-button
|
|
type="default"
|
|
size="small"
|
|
@click.prevent="
|
|
arrayChildExpand(record['index'], text)
|
|
"
|
|
>
|
|
<template #icon><BarsOutlined /></template>
|
|
{{
|
|
t('views.configManage.configParamForm.arrayMore')
|
|
}}
|
|
</a-button>
|
|
<!--特殊字段拓展显示-->
|
|
<span
|
|
v-if="
|
|
text.name === 'dnnList' && Array.isArray(text.value)
|
|
"
|
|
>
|
|
({{
|
|
text.value.length > 4
|
|
? `${text.value
|
|
.slice(0, 3)
|
|
.map((s: any) => s.dnn)
|
|
.join()}...${text.value.length}`
|
|
: text.value.map((s: any) => s.dnn).join()
|
|
}})
|
|
</span>
|
|
</template>
|
|
|
|
<div v-else class="editable-cell__text-wrapper">
|
|
<template v-if="text['type'] === 'enum'">
|
|
{{ JSON.parse(text['filter'])[text.value] }}
|
|
</template>
|
|
<template v-else>
|
|
{{ `${text.value}` || ' ' }}
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</a-tooltip>
|
|
</template>
|
|
</template>
|
|
|
|
<!-- 多列嵌套类型 -->
|
|
<template #expandedRowRender>
|
|
<a-table
|
|
class="table"
|
|
row-key="index"
|
|
:columns="arrayChildState.columnsDnd"
|
|
:data-source="arrayChildState.columnsData"
|
|
:size="arrayChildState.size"
|
|
:pagination="tablePagination"
|
|
:bordered="true"
|
|
:scroll="{
|
|
x: arrayChildState.columnsDnd.length * 200,
|
|
y: 200,
|
|
}"
|
|
@resizeColumn="(w:number, col:any) => (col.width = w)"
|
|
>
|
|
<template #title>
|
|
<a-space :size="16" align="center">
|
|
<a-button
|
|
type="primary"
|
|
@click.prevent="arrayChildAdd"
|
|
size="small"
|
|
>
|
|
<template #icon> <PlusOutlined /> </template>
|
|
{{ t('common.addText') }} {{ arrayChildState.title }}
|
|
</a-button>
|
|
<TableColumnsDnd
|
|
type="ghost"
|
|
:cache-id="`${treeState.selectNode.key}:${arrayChildState.loc}`"
|
|
:columns="[...arrayChildState.columns]"
|
|
v-model:columns-dnd="arrayChildState.columnsDnd"
|
|
v-if="arrayChildState.loc"
|
|
></TableColumnsDnd>
|
|
</a-space>
|
|
</template>
|
|
<template #bodyCell="{ column, text, record }">
|
|
<template v-if="column?.key === 'index'">
|
|
<a-space :size="8" align="center">
|
|
<a-tooltip>
|
|
<template #title>{{ t('common.editText') }}</template>
|
|
<a-button
|
|
type="link"
|
|
@click.prevent="arrayChildEdit(text)"
|
|
>
|
|
<template #icon><FormOutlined /></template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
<a-tooltip>
|
|
<template #title>
|
|
{{ t('common.deleteText') }}
|
|
</template>
|
|
<a-button
|
|
type="link"
|
|
@click.prevent="arrayChildDelete(text)"
|
|
>
|
|
<template #icon><DeleteOutlined /></template>
|
|
</a-button>
|
|
</a-tooltip>
|
|
</a-space>
|
|
</template>
|
|
<template v-else-if="text">
|
|
<a-tooltip placement="topLeft">
|
|
<template #title v-if="text.comment">
|
|
{{ text.comment }}
|
|
</template>
|
|
<div class="editable-cell">
|
|
<template v-if="text.array">
|
|
<a-button type="default" size="small">
|
|
<template #icon><BarsOutlined /></template>
|
|
{{
|
|
t(
|
|
'views.configManage.configParamForm.arrayMore'
|
|
)
|
|
}}
|
|
</a-button>
|
|
</template>
|
|
|
|
<div v-else>
|
|
<template v-if="text['type'] === 'enum'">
|
|
{{ JSON.parse(text['filter'])[text.value] }}
|
|
</template>
|
|
<template v-else>
|
|
{{ `${text.value}` || ' ' }}
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</a-tooltip>
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</template>
|
|
</a-table>
|
|
</template>
|
|
</a-card>
|
|
</a-col>
|
|
</a-row>
|
|
|
|
<!-- 新增框或修改框 -->
|
|
<DraggableModal
|
|
width="800px"
|
|
:body-style="{ maxHeight: '650px', 'overflow-y': 'auto' }"
|
|
:keyboard="false"
|
|
:mask-closable="false"
|
|
:visible="modalState.visible"
|
|
:title="modalState.title"
|
|
:confirm-loading="modalState.confirmLoading"
|
|
@ok="fnModalOk"
|
|
@cancel="fnModalCancel"
|
|
>
|
|
<a-form
|
|
class="form"
|
|
layout="horizontal"
|
|
autocomplete="off"
|
|
:validate-on-rule-change="false"
|
|
:validateTrigger="[]"
|
|
:label-col="{ span: 6 }"
|
|
:labelWrap="true"
|
|
>
|
|
<a-form-item
|
|
v-for="item in modalState.data"
|
|
:label="item.display"
|
|
:name="item.name"
|
|
:required="item.optional === 'false'"
|
|
style="margin-bottom: 4px"
|
|
>
|
|
<a-tooltip placement="topLeft">
|
|
<template #title v-if="item.comment">
|
|
{{ item.comment }}
|
|
</template>
|
|
|
|
<div>
|
|
<div
|
|
v-if="
|
|
!Array.isArray(item.array) &&
|
|
modalState.from[item.name] !== undefined
|
|
"
|
|
>
|
|
<!-- 特殊SMF-upfid选择 -->
|
|
<a-select
|
|
v-if="
|
|
neTypeSelect[0] === 'SMF' &&
|
|
modalState.from[item.name]['name'] === 'upfId'
|
|
"
|
|
v-model:value="modalState.from[item.name]['value']"
|
|
:options="optionsUPFIds"
|
|
:disabled="['read-only', 'read', 'ro'].includes(item.access)"
|
|
:allow-clear="true"
|
|
style="width: 100%"
|
|
>
|
|
</a-select>
|
|
<!-- 常规 -->
|
|
<a-input-number
|
|
v-else-if="item['type'] === 'int'"
|
|
v-model:value="modalState.from[item.name]['value']"
|
|
:disabled="['read-only', 'read', 'ro'].includes(item.access)"
|
|
style="width: 100%"
|
|
></a-input-number>
|
|
<a-switch
|
|
v-else-if="item['type'] === 'bool'"
|
|
v-model:checked="modalState.from[item.name]['value']"
|
|
:checked-children="t('common.switch.open')"
|
|
:un-checked-children="t('common.switch.shut')"
|
|
:disabled="['read-only', 'read', 'ro'].includes(item.access)"
|
|
></a-switch>
|
|
<a-select
|
|
v-else-if="item['type'] === 'enum'"
|
|
v-model:value="modalState.from[item.name]['value']"
|
|
:disabled="['read-only', 'read', 'ro'].includes(item.access)"
|
|
:allow-clear="true"
|
|
style="width: 100%"
|
|
>
|
|
<a-select-option
|
|
:value="+v"
|
|
:key="+v"
|
|
v-for="(k, v) in JSON.parse(item['filter'])"
|
|
>
|
|
{{ k }}
|
|
</a-select-option>
|
|
</a-select>
|
|
<a-input
|
|
v-else
|
|
v-model:value="modalState.from[item.name]['value']"
|
|
:disabled="['read-only', 'read', 'ro'].includes(item.access)"
|
|
></a-input>
|
|
</div>
|
|
<div v-else>
|
|
{{ `${item.value || ' '}` }}
|
|
</div>
|
|
</div>
|
|
</a-tooltip>
|
|
</a-form-item>
|
|
</a-form>
|
|
</DraggableModal>
|
|
</PageContainer>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
.editable-cell {
|
|
&__icon {
|
|
display: none;
|
|
cursor: pointer;
|
|
}
|
|
&__icon:hover {
|
|
color: var(--ant-primary-color);
|
|
}
|
|
&__icon-edit:hover {
|
|
color: var(--ant-primary-color);
|
|
}
|
|
&__text-wrapper {
|
|
font-size: 16px;
|
|
color: #333;
|
|
}
|
|
&__text-wrapper:hover &__icon {
|
|
display: inline-block;
|
|
}
|
|
&__input-wrapper {
|
|
display: flex;
|
|
justify-content: start;
|
|
align-items: center;
|
|
}
|
|
}
|
|
</style>
|