根据条件导出

This commit is contained in:
lai
2024-10-17 12:02:25 +08:00
parent 249c9a5a6e
commit cf5c8906c3
3 changed files with 9 additions and 19 deletions

View File

@@ -945,13 +945,12 @@ function fnRecordExport(type: string = 'txt') {
/**列表导出 */
function fnExportList(type: string) {
const neID = queryParams.neId;
const imsi = queryParams.imsi;
const msisdn = queryParams.msisdn;
if (!neID) return;
const key = 'exportSub';
message.loading({ content: t('common.loading'), key });
exportUDMSub({
neId: neID,
type: type,
}).then(res => {
exportUDMSub({ ...queryParams, ...{ type } }).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
content: t('common.msgSuccess', { msg: t('common.export') }),