Compare commits
No commits in common. "2fdf565679f5669585eec0198c936eecfd297d97" and "a73e9d2bee7e8b9cefe3944d534d7cb3538e4516" have entirely different histories.
2fdf565679
...
a73e9d2bee
|
@ -2,17 +2,6 @@
|
|||
<div style="padding: 20px;">
|
||||
<h1 style="text-align: center; margin-bottom: 30px;">充值明细</h1>
|
||||
<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
|
||||
:data="listDate"
|
||||
style="width: 100%; border-collapse: collapse;">
|
||||
|
@ -51,7 +40,7 @@
|
|||
<el-table-column
|
||||
label="充值时间"
|
||||
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">
|
||||
{{ scope.row.createTime }}
|
||||
</template>
|
||||
|
@ -87,12 +76,6 @@ export default {
|
|||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('system/user/export', {
|
||||
...this.queryParams
|
||||
}, `pay_${new Date().getTime()}.xlsx`)
|
||||
},
|
||||
getList() {
|
||||
userPayinfo(this.addDateRange(this.queryParams)).then(response => {
|
||||
this.listDate = response.data.rows;
|
||||
|
|
Loading…
Reference in New Issue