Commit d34566a5 by wusiyi

fix: 修复订单跟踪导出内容为空的bug #1001054

parent 498bd9da
...@@ -437,6 +437,7 @@ const submitExportForm = async () => { ...@@ -437,6 +437,7 @@ const submitExportForm = async () => {
...searchForm.value, ...searchForm.value,
startTime: timeRange.value?.[0] || null, startTime: timeRange.value?.[0] || null,
endTime: timeRange.value?.[1] || null, endTime: timeRange.value?.[1] || null,
orderTracking: true,
} }
: {}), : {}),
}) })
......
...@@ -466,6 +466,7 @@ const submitExportForm = async () => { ...@@ -466,6 +466,7 @@ const submitExportForm = async () => {
...searchForm.value, ...searchForm.value,
startTime: timeRange.value?.[0] || null, startTime: timeRange.value?.[0] || null,
endTime: timeRange.value?.[1] || null, endTime: timeRange.value?.[1] || null,
orderTracking: true,
} }
: {}), : {}),
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment