2021-12-28 23:20:30 +08:00
|
|
|
<template>
|
|
|
|
<el-row>
|
|
|
|
<el-col>
|
|
|
|
<h1>交易记录</h1>
|
|
|
|
</el-col>
|
|
|
|
<el-col style="margin-bottom: 10px;">
|
|
|
|
<el-date-picker
|
|
|
|
v-model="searchDate"
|
|
|
|
type="daterange"
|
|
|
|
align="right"
|
|
|
|
unlink-panels
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
range-separator="至"
|
|
|
|
start-placeholder="开始月份"
|
|
|
|
end-placeholder="结束月份"
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
@change="searchTransactionRecord">
|
|
|
|
</el-date-picker>
|
|
|
|
</el-col>
|
|
|
|
<el-col>
|
|
|
|
<el-table
|
2022-07-25 06:45:33 +08:00
|
|
|
:data="records.list"
|
2021-12-28 23:20:30 +08:00
|
|
|
style="width: 100%">
|
|
|
|
<el-table-column
|
|
|
|
label="流水号"
|
|
|
|
prop="transactionNo"
|
|
|
|
width="200">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="支付账号">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-popover
|
|
|
|
placement="left"
|
|
|
|
trigger="hover">
|
|
|
|
<el-col style="padding: 5px;">
|
|
|
|
开户银行: {{ scope.row.formBankAccountInfo.bankName }}
|
|
|
|
</el-col>
|
|
|
|
<el-col style="padding: 5px;">
|
|
|
|
银行账号: {{ scope.row.formBankAccountInfo.bankAccount }}
|
|
|
|
</el-col>
|
|
|
|
<el-col style="padding: 5px;">
|
|
|
|
所属用户: {{ scope.row.formBankAccountInfo.accountOwnerName }}
|
|
|
|
</el-col>
|
|
|
|
<el-button slot="reference" type="text">{{ scope.row.formBankAccount }}</el-button>
|
|
|
|
</el-popover>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="收款账号">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-popover
|
|
|
|
placement="right"
|
|
|
|
trigger="hover">
|
|
|
|
<el-col style="padding: 5px;">
|
|
|
|
开户银行: {{ scope.row.toBankAccountInfo.bankName }}
|
|
|
|
</el-col>
|
|
|
|
<el-col style="padding: 5px;">
|
|
|
|
银行账号: {{ scope.row.toBankAccountInfo.bankAccount }}
|
|
|
|
</el-col>
|
|
|
|
<el-col style="padding: 5px;">
|
|
|
|
所属用户: {{ scope.row.toBankAccountInfo.accountOwnerName }}
|
|
|
|
</el-col>
|
|
|
|
<el-button slot="reference" type="text">{{ scope.row.toBankAccount }}</el-button>
|
|
|
|
</el-popover>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="款项"
|
|
|
|
width="180"
|
|
|
|
prop="funds">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="交易时间"
|
|
|
|
width="180"
|
|
|
|
prop="transactionTime">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="金额 (巴旦木)">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span v-if="scope.row.formBankAccount === bankAccount" style="color: red;font-weight: bold;">
|
|
|
|
- {{ scope.row.money }}
|
|
|
|
</span>
|
|
|
|
<span v-else style="color: springgreen;font-weight: bold;"> + {{ scope.row.money }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-col>
|
|
|
|
<el-col>
|
|
|
|
<el-pagination
|
|
|
|
:hide-on-single-page="true"
|
|
|
|
@current-change="currentChange"
|
2022-07-25 06:45:33 +08:00
|
|
|
:current-page="records.pageNum"
|
2021-12-28 23:20:30 +08:00
|
|
|
:page-sizes="[10, 20, 50, 100]"
|
2022-07-25 06:45:33 +08:00
|
|
|
:page-size="records.pageSize"
|
2021-12-28 23:20:30 +08:00
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
2022-07-25 06:45:33 +08:00
|
|
|
:total="records.total">
|
2021-12-28 23:20:30 +08:00
|
|
|
</el-pagination>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: "records",
|
|
|
|
props: {
|
|
|
|
bankAccount: '',
|
|
|
|
records: {
|
|
|
|
type: Object
|
|
|
|
}
|
|
|
|
},
|
2021-12-29 12:00:06 +08:00
|
|
|
watch: {
|
|
|
|
bankAccount() {
|
|
|
|
this.resetSearchDate()
|
|
|
|
}
|
|
|
|
},
|
2021-12-28 23:20:30 +08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
pickerOptions: {
|
|
|
|
shortcuts: [{
|
|
|
|
text: '本月',
|
|
|
|
onClick(picker) {
|
|
|
|
const end = new Date();
|
|
|
|
const start = new Date();
|
|
|
|
start.setDate(1);
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
text: '最近 30 天',
|
|
|
|
onClick(picker) {
|
|
|
|
const end = new Date();
|
|
|
|
const start = new Date();
|
|
|
|
start.setMonth(start.getMonth() - 1);
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
text: '最近三个月',
|
|
|
|
onClick(picker) {
|
|
|
|
const end = new Date();
|
|
|
|
const start = new Date();
|
|
|
|
start.setMonth(start.getMonth() - 3);
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
text: '最近六个月',
|
|
|
|
onClick(picker) {
|
|
|
|
const end = new Date();
|
|
|
|
const start = new Date();
|
|
|
|
start.setMonth(start.getMonth() - 6);
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
text: '今年至今',
|
|
|
|
onClick(picker) {
|
|
|
|
const end = new Date();
|
|
|
|
const start = new Date(new Date().getFullYear(), 0);
|
|
|
|
picker.$emit('pick', [start, end]);
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
searchDate: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
currentChange(page) {
|
|
|
|
let _ts = this;
|
|
|
|
let startDate = _ts.searchDate[0]
|
|
|
|
let endDate = _ts.searchDate[1]
|
|
|
|
let search = {
|
|
|
|
page: page,
|
|
|
|
startDate: startDate,
|
|
|
|
endDate: endDate
|
|
|
|
}
|
|
|
|
_ts.$emit('currentChange', search);
|
|
|
|
},
|
|
|
|
searchTransactionRecord(dates) {
|
|
|
|
this.$emit('searchTransactionRecord', dates);
|
2021-12-29 12:00:06 +08:00
|
|
|
},
|
|
|
|
resetSearchDate() {
|
|
|
|
const end = new Date();
|
|
|
|
const start = new Date();
|
|
|
|
start.setMonth(start.getMonth() - 1);
|
|
|
|
let searchDate = [start, end]
|
|
|
|
this.searchDate = searchDate
|
2021-12-28 23:20:30 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
2021-12-29 12:00:06 +08:00
|
|
|
this.resetSearchDate()
|
2021-12-28 23:20:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|