|
@@ -33,6 +33,8 @@ export function dataExportActionsModel () {
|
|
|
if (!listState.total) return
|
|
|
|
|
|
filterFormatParams.value = FilterHistoryViewModel2AjaxModel.formatAll(filter)
|
|
|
+ const _expand = filter._expand || {}
|
|
|
+ Object.assign(filterFormatParams.value, _expand)
|
|
|
exportLoading.value = true
|
|
|
// 查询是否需要弹窗
|
|
|
const { error_code: code, isPrompt } = await ajaxGetDontPromptAgain()
|
|
@@ -98,6 +100,8 @@ export function dataExportActionsModel () {
|
|
|
function toPayDataExport (config) {
|
|
|
const { listState, selectCheckboxCount, selectIds, filter } = config
|
|
|
filterFormatParams.value = FilterHistoryViewModel2AjaxModel.formatAll(filter)
|
|
|
+ const _expand = filter._expand || {}
|
|
|
+ filterFormatParams.value = Object.assign(filterFormatParams.value, _expand)
|
|
|
// 未登录跳转登录
|
|
|
if (!isLogin.value) {
|
|
|
$bus.$emit('bidding:goLogin')
|