fix: 网元软件包类型支持adb,mf,rtproxy

This commit is contained in:
TsMask
2024-05-27 17:08:56 +08:00
parent 38cb406687
commit 9f2b80718e
6 changed files with 75 additions and 59 deletions

View File

@@ -29,10 +29,10 @@ let tableColumns: ColumnsType = [
width: 50,
},
{
title: t('views.ne.common.neType'),
dataIndex: 'neType',
title: t('views.ne.neSoftware.type'),
dataIndex: 'type',
align: 'left',
width: 100,
width: 120,
},
{
title: t('views.ne.neSoftware.version'),
@@ -275,7 +275,7 @@ function fnStepPrev() {
function fnStepNext() {
Modal.confirm({
title: t('common.tipTitle'),
content: t('views.ne.neQuickSetup.neInfoSoftwareInstallStepNext'),
content: t('views.ne.neQuickSetup.installStepNext'),
onOk() {
fnToStepName('NeInfoSoftwareLicense');
},
@@ -285,7 +285,7 @@ function fnStepNext() {
onMounted(() => {
const { neType, neId } = stepState.neInfo;
if (neId) {
tableState.queryParams.neType = neType;
tableState.queryParams.type = neType;
state.from.neType = neType;
state.from.neId = neId;
fnGetList(1);