|
|
@@ -201,7 +201,7 @@ const { columns, data, loading, getData, mobilePagination } = useNaivePaginatedT
|
|
|
key: 'operate',
|
|
|
title: $t('common.operate'),
|
|
|
align: 'center',
|
|
|
- width: 130,
|
|
|
+ width: 150,
|
|
|
fixed: 'right',
|
|
|
render: row => {
|
|
|
return (
|
|
|
@@ -332,9 +332,12 @@ function handleRefsh() {
|
|
|
async function handleExport() {
|
|
|
loading.value = true;
|
|
|
try {
|
|
|
- await commonExport('/platform/order/export', getFieldsValue(), '正常订单列表.xlsx');
|
|
|
- loading.value = false;
|
|
|
- } catch {
|
|
|
+ await commonExport(
|
|
|
+ '/platform/order/export',
|
|
|
+ { ...getFieldsValue(), orderStatus: activeTab.value },
|
|
|
+ '正常订单列表.xlsx'
|
|
|
+ );
|
|
|
+ } finally {
|
|
|
loading.value = false;
|
|
|
}
|
|
|
}
|