|
@@ -18,7 +18,7 @@
|
|
|
import { ref } from 'vue';
|
|
|
import ListPage from '@/views/components/ListPage/index.vue';
|
|
|
import { list, walletTotal } from "@/api/finance/wallet.js";
|
|
|
-
|
|
|
+const { proxy } = getCurrentInstance();
|
|
|
const userTableRef = ref();
|
|
|
const listPageData = reactive({
|
|
|
tableColumn: [
|
|
@@ -85,11 +85,13 @@ const listPageData = reactive({
|
|
|
{
|
|
|
label: '导出',
|
|
|
func: (parmas) => {
|
|
|
+ console.log("TCL: parmas", parmas)
|
|
|
try {
|
|
|
proxy.download("core/volunteer/account/export/VolunteerAccountList", {
|
|
|
...parmas
|
|
|
}, `钱包管理_${new Date().getTime()}.xlsx`);
|
|
|
} catch (error) {
|
|
|
+ console.log("TCL: error", error)
|
|
|
}
|
|
|
},
|
|
|
key: 'export',
|