nebula/pages/wallet.vue

235 lines
7.2 KiB
Vue
Raw Normal View History

<template>
<el-row class="wrapper">
<el-col>
<h1>账户信息</h1>
</el-col>
2021-06-28 11:59:22 +08:00
<el-col class="bank-account-item">
<span style="font-size: 24px;"> 账号:</span> <span style="color: red;">{{ bankAccount.bankAccount }}</span>
</el-col>
<el-col class="bank-account-item">
<span style="font-size: 24px;"> 余额:</span> <span style="color: red;">{{ bankAccount.accountBalance }}</span> <span
style="font-size: 24px;">巴旦木</span>
</el-col>
<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
:data="records"
style="width: 100%">
<el-table-column
2021-06-28 11:59:22 +08:00
label="流水号"
prop="transactionNo"
width="200">
</el-table-column>
<el-table-column
label="支付账号">
<template slot-scope="scope">
<el-popover
placement="right"
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>
2021-06-28 11:59:22 +08:00
<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 }}
2021-06-28 11:59:22 +08:00
</el-col>
<el-col style="padding: 5px;">
银行账号: {{ scope.row.toBankAccountInfo.bankAccount }}
2021-06-28 11:59:22 +08:00
</el-col>
<el-col style="padding: 5px;">
所属用户: {{ scope.row.toBankAccountInfo.accountOwnerName }}
2021-06-28 11:59:22 +08:00
</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
2020-12-10 22:30:57 +08:00
label="金额 (巴旦木)">
<template slot-scope="scope">
<span v-if="scope.row.formBankAccount === bankAccount.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"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="pagination.currentPage"
:page-sizes="[10, 20, 50, 100]"
:page-size="pagination.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="pagination.total">
</el-pagination>
</el-col>
</el-row>
</template>
<script>
import {mapState} from 'vuex';
export default {
name: "wallet",
fetch({store, error}) {
return Promise.all([
store
.dispatch('wallet/fetchDetail', {idUser: store.state.oauth.idUser})
.catch(err => error({statusCode: 404})),
store
.dispatch('wallet/fetchTransactionRecordList', {idUser: store.state.oauth.idUser})
.catch(err => error({statusCode: 404}))
])
},
computed: {
...mapState({
bankAccount: state => state.wallet.detail.data,
records: state => state.wallet.list.data.records,
pagination: state => state.wallet.list.data.pagination
})
},
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: {
handleSizeChange(pageSize) {
let _ts = this;
let startDate = _ts.searchDate[0]
let endDate = _ts.searchDate[1]
_ts.$store.dispatch('wallet/fetchTransactionRecordList', {
idUser: _ts.$store.state.oauth.idUser,
startDate: startDate,
endDate: endDate,
page: _ts.pagination.currentPage,
rows: pageSize
})
},
handleCurrentChange(page) {
let _ts = this;
let startDate = _ts.searchDate[0]
let endDate = _ts.searchDate[1]
_ts.$store.dispatch('wallet/fetchTransactionRecordList', {
idUser: _ts.$store.state.oauth.idUser,
startDate: startDate,
endDate: endDate,
page: page,
rows: _ts.pagination.pageSize
})
},
searchTransactionRecord(dates) {
let _ts = this
let startDate = dates[0]
let endDate = dates[1]
_ts.$store.dispatch('wallet/fetchTransactionRecordList', {
idUser: _ts.$store.state.oauth.idUser,
startDate: startDate,
endDate: endDate
})
}
},
mounted() {
this.$store.commit('setActiveMenu', 'wallet');
const end = new Date();
const start = new Date();
start.setMonth(start.getMonth() - 1);
let searchDate = [start, end]
this.searchDate = searchDate
}
}
</script>
<style scoped>
.bank-account-item {
font-size: 32px;
padding-left: 15vw;
}
</style>