Compare commits
No commits in common. "2fdf565679f5669585eec0198c936eecfd297d97" and "a73e9d2bee7e8b9cefe3944d534d7cb3538e4516" have entirely different histories.
2fdf565679
...
a73e9d2bee
|
@ -2,17 +2,6 @@
|
||||||
<div style="padding: 20px;">
|
<div style="padding: 20px;">
|
||||||
<h1 style="text-align: center; margin-bottom: 30px;">充值明细</h1>
|
<h1 style="text-align: center; margin-bottom: 30px;">充值明细</h1>
|
||||||
<el-divider></el-divider>
|
<el-divider></el-divider>
|
||||||
<el-col :span="1.5">
|
|
||||||
<el-button
|
|
||||||
v-hasPermi="['system:pay:export']"
|
|
||||||
icon="el-icon-download"
|
|
||||||
plain
|
|
||||||
size="mini"
|
|
||||||
type="warning"
|
|
||||||
@click="handleExport"
|
|
||||||
>导出
|
|
||||||
</el-button>
|
|
||||||
</el-col>
|
|
||||||
<el-table
|
<el-table
|
||||||
:data="listDate"
|
:data="listDate"
|
||||||
style="width: 100%; border-collapse: collapse;">
|
style="width: 100%; border-collapse: collapse;">
|
||||||
|
@ -51,7 +40,7 @@
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="充值时间"
|
label="充值时间"
|
||||||
width="300"
|
width="300"
|
||||||
style="border: 1px solid #ca8a8a; padding: 10px; text-align: center;">
|
style="border: 1px solid #ccc; padding: 10px; text-align: center;">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.createTime }}
|
{{ scope.row.createTime }}
|
||||||
</template>
|
</template>
|
||||||
|
@ -87,12 +76,6 @@ export default {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 导出按钮操作 */
|
|
||||||
handleExport() {
|
|
||||||
this.download('system/user/export', {
|
|
||||||
...this.queryParams
|
|
||||||
}, `pay_${new Date().getTime()}.xlsx`)
|
|
||||||
},
|
|
||||||
getList() {
|
getList() {
|
||||||
userPayinfo(this.addDateRange(this.queryParams)).then(response => {
|
userPayinfo(this.addDateRange(this.queryParams)).then(response => {
|
||||||
this.listDate = response.data.rows;
|
this.listDate = response.data.rows;
|
||||||
|
|
Loading…
Reference in New Issue