增加导出时携带完整搜索条件

This commit is contained in:
lai
2024-10-17 14:51:55 +08:00
parent 41fa214137
commit 1ecefb91dc
2 changed files with 2 additions and 8 deletions

View File

@@ -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({ ...queryParams, ...{ type } })
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success(t('common.msgSuccess', { msg: t('common.export') }), 3);

View File

@@ -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({ ...queryParams, ...{ type } }).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
content: t('common.msgSuccess', { msg: t('common.export') }),