---用户管理,网元管理等中英文
This commit is contained in:
@@ -367,7 +367,7 @@ function fnModalVisibleByEdit(imsi?: string) {
|
||||
modalState.visibleByEdit = true;
|
||||
} else {
|
||||
if (modalState.confirmLoading) return;
|
||||
const hide = message.loading('正在打开...', 0);
|
||||
const hide = message.loading(t('common.loading'), 0);
|
||||
modalState.confirmLoading = true;
|
||||
const neID = queryParams.neId || '-';
|
||||
getSub(neID, imsi).then(res => {
|
||||
@@ -653,11 +653,11 @@ function fnRecordDelete(imsi: string) {
|
||||
const neID = queryParams.neId;
|
||||
if (!neID) return;
|
||||
Modal.confirm({
|
||||
title: '提示',
|
||||
title: t('common.tipTitle'),
|
||||
content: `确认删除IMSI编号为: ${imsi} 的签约用户嘛?`,
|
||||
onOk() {
|
||||
const key = 'delSub';
|
||||
message.loading({ content: '请稍等...', key });
|
||||
message.loading({ content: t('common.loading'), key });
|
||||
delSub(neID, imsi).then(res => {
|
||||
if (res.code === RESULT_CODE_SUCCESS) {
|
||||
message.success({
|
||||
@@ -683,7 +683,7 @@ function fnExportList(type: string) {
|
||||
const neID = queryParams.neId;
|
||||
if (!neID) return;
|
||||
const key = 'exportSub';
|
||||
message.loading({ content: '请稍等...', key });
|
||||
message.loading({ content: t('common.loading'), key });
|
||||
exportSub({
|
||||
neId: neID,
|
||||
type: type,
|
||||
|
||||
Reference in New Issue
Block a user