mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
后管运营商vip会员页面新增导出功能
This commit is contained in:
@@ -148,3 +148,12 @@ export function getMemberBalanceChangesV2(data) {
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
// 导出会员钱包明细
|
||||
export function exportWalletList(data) {
|
||||
return request({
|
||||
url: '/member/info/exportWalletList',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
@@ -175,6 +175,12 @@
|
||||
</el-form-item>
|
||||
<el-form-item style="margin-left: 10px;">
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="getDetails">搜索</el-button>
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="Download"
|
||||
@click="handleExport"
|
||||
>导出</el-button>
|
||||
</el-form-item>
|
||||
<el-col :span="24">
|
||||
<el-form-item label="充值余额:"> {{ totalRechargeAmount }} </el-form-item>
|
||||
@@ -473,7 +479,7 @@ export default {
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('member/info/export', {
|
||||
this.download('member/info/exportWalletList', {
|
||||
...this.queryParams
|
||||
}, `info_${new Date().getTime()}.xlsx`)
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user