82 lines
2.3 KiB
Vue
82 lines
2.3 KiB
Vue
<template>
|
||
<view>
|
||
<!-- 顶部操作条 -->
|
||
<cu-custom :bgColor="'bg-main-color'" :isBack="true">
|
||
<block slot="backText">返回</block>
|
||
<block slot="content">我的钱包</block>
|
||
</cu-custom>
|
||
<view class="margin-sm shadow-warp">
|
||
<view class="padding-tb-lg padding-lr bg-gradual-color light">
|
||
<view>账户余额(元)</view>
|
||
<view class="flex justify-between margin-top-sm">
|
||
<view class="text-xxl">{{myMoneyBag.balance}}</view>
|
||
<view class="cu-btn bg-white radius">充值</view>
|
||
</view>
|
||
</view>
|
||
<view class="padding bg-white flex justify-between">
|
||
<view>可提现金额:<text class="text-price text-black">{{myMoneyBag.balanceToExtract}}</text></view>
|
||
<view>
|
||
<text>提现</text>
|
||
<text class="cuIcon-right"></text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="margin-bottom-lg">
|
||
<view v-for="(billItem, index) in myMoneyBag.bill">
|
||
<uni-collapse v-model="openStatusArr[index]">
|
||
<uni-collapse-item>
|
||
<template v-slot:title>
|
||
<view class="padding bg-white">
|
||
<view class="margin-bottom-xs">{{billItem.duration}}</view>
|
||
<view>
|
||
<text class="margin-right"><text>支出:</text><text class="text-price text-black">{{billItem.outgoings}}</text></text>
|
||
<text><text>收入:</text><text class="text-price text-black">{{billItem.income}}</text></text>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
<view>
|
||
<view v-for="(item, index1) in billItem.statement" class="bg-white padding flex justify-between align-center" @click="showDetail">
|
||
<view>
|
||
<view class="margin-bottom-xs">{{item.name}}</view>
|
||
<view>{{item.createTime}}</view>
|
||
</view>
|
||
<view class="text-price text-black">{{item.inOutMoney}}</view>
|
||
</view>
|
||
</view>
|
||
</uni-collapse-item>
|
||
</uni-collapse>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
openStatusArr: [['0']], //0打开,1收起
|
||
myMoneyBag: {}
|
||
}
|
||
},
|
||
onLoad() {
|
||
this.loadData();
|
||
},
|
||
methods: {
|
||
async loadData() {
|
||
this.myMoneyBag = await this.$api.data('myMoneyBag');
|
||
for(let i = 0; i < this.myMoneyBag.bill.length - 1; i++) {
|
||
this.openStatusArr.concat(['1']);
|
||
}
|
||
},
|
||
showDetail() {
|
||
uni.navigateTo({
|
||
url: '/pages/my/statement-desc'
|
||
})
|
||
}
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
</style>
|