Compare commits
No commits in common. "6a6cd790cff0d042fe62590333d57ae5e4b0dc41" and "57470589d60c550a6ff152b39fa4fe361ac76d7d" have entirely different histories.
6a6cd790cf
...
57470589d6
|
@ -1,43 +1,38 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<h1>充值明细</h1>
|
|
||||||
<el-divider></el-divider>
|
|
||||||
<el-table
|
<el-table
|
||||||
:data="listDate"
|
:data="tableData"
|
||||||
style="width: 150%">
|
style="width: 100%">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="序号"
|
label="日期"
|
||||||
width="180">
|
width="180">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span style="margin-left: 10px">{{ scope.row.id }}</span>
|
<i class="el-icon-time"></i>
|
||||||
|
<span style="margin-left: 10px">{{ scope.row.date }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="充值编号"
|
label="姓名"
|
||||||
width="180">
|
width="180">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span style="margin-left: 10px">{{ scope.row.outTradeNo }}</span>
|
<el-popover trigger="hover" placement="top">
|
||||||
|
<p>姓名: {{ scope.row.name }}</p>
|
||||||
|
<p>住址: {{ scope.row.address }}</p>
|
||||||
|
<div slot="reference" class="name-wrapper">
|
||||||
|
<el-tag size="medium">{{ scope.row.name }}</el-tag>
|
||||||
|
</div>
|
||||||
|
</el-popover>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column label="操作">
|
||||||
label="充值金额"
|
|
||||||
width="180">
|
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span style="margin-left: 10px">{{ scope.row.totalAmount }}</span>
|
<el-button
|
||||||
</template>
|
size="mini"
|
||||||
</el-table-column>
|
@click="handleEdit(scope.$index, scope.row)">编辑</el-button>
|
||||||
<el-table-column
|
<el-button
|
||||||
label="充值类型"
|
size="mini"
|
||||||
width="180">
|
type="danger"
|
||||||
<template slot-scope="scope">
|
@click="handleDelete(scope.$index, scope.row)">删除</el-button>
|
||||||
<span style="margin-left: 10px">{{ scope.row.productCode }}</span>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="充值时间"
|
|
||||||
width="180">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<span style="margin-left: 10px">{{ scope.row.createTime }}</span>
|
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
@ -45,28 +40,34 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { userPayinfo } from "@/api/system/user";
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
listDate: [],
|
tableData: [{
|
||||||
total: 0,
|
date: '2016-05-02',
|
||||||
queryParams: {
|
name: '王小虎',
|
||||||
pageNum: 1,
|
address: '上海市普陀区金沙江路 1518 弄'
|
||||||
pageSize: 10,
|
}, {
|
||||||
}
|
date: '2016-05-04',
|
||||||
|
name: '王小虎',
|
||||||
|
address: '上海市普陀区金沙江路 1517 弄'
|
||||||
|
}, {
|
||||||
|
date: '2016-05-01',
|
||||||
|
name: '王小虎',
|
||||||
|
address: '上海市普陀区金沙江路 1519 弄'
|
||||||
|
}, {
|
||||||
|
date: '2016-05-03',
|
||||||
|
name: '王小虎',
|
||||||
|
address: '上海市普陀区金沙江路 1516 弄'
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
|
||||||
this.getList();
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
getList() {
|
handleEdit(index, row) {
|
||||||
userPayinfo(this.addDateRange(this.queryParams)).then(response => {
|
console.log(index, row);
|
||||||
this.listDate = response.data.rows;
|
},
|
||||||
this.total = response.data.total;
|
handleDelete(index, row) {
|
||||||
}
|
console.log(index, row);
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue