diff --git a/src/views/neUser/auth/index.vue b/src/views/neUser/auth/index.vue index 2ca30521..48b5ed9e 100644 --- a/src/views/neUser/auth/index.vue +++ b/src/views/neUser/auth/index.vue @@ -517,10 +517,7 @@ function fnExportList(type: string) { if (!neId) return; const hide = message.loading(t('common.loading'), 0); - exportUDMAuth({ - neId: neId, - type: type, - }) + exportUDMAuth(Object.assign({ type: type }, queryParams)) .then(res => { if (res.code === RESULT_CODE_SUCCESS) { message.success(t('common.msgSuccess', { msg: t('common.export') }), 3); diff --git a/src/views/neUser/sub/index.vue b/src/views/neUser/sub/index.vue index 0b14e595..43c4d54a 100644 --- a/src/views/neUser/sub/index.vue +++ b/src/views/neUser/sub/index.vue @@ -878,10 +878,7 @@ function fnExportList(type: string) { if (!neId) return; const key = 'exportSub'; message.loading({ content: t('common.loading'), key }); - exportUDMSub({ - neId: neId, - type: type, - }).then(res => { + exportUDMSub(Object.assign({ type: type }, queryParams)).then(res => { if (res.code === RESULT_CODE_SUCCESS) { message.success({ content: t('common.msgSuccess', { msg: t('common.export') }),