123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <template>
- <view class="content">
- <view class="card">
- <view class="title">
- 总资产
- </view>
- <view class="row">
- <view class="big">
- {{userInfo.money}}
- </view>
- <view class="btn" @click="withdrawal">
- 提现
- </view>
- </view>
- </view>
- <view class="list">
- <view class="title">
- 余额明细
- </view>
- <view class="list-box">
- <view class="row" v-for="(item,index) in history" :key="index">
- <view class="icon">
- <image src="http://pet.hdlkeji.com/assets/static/1/79.png" class="mine-icon"></image>
- </view>
- <view class="text">
- <view class="">
- {{item.type_text}}
- </view>
- <view class="">
- {{item.createtime}}
- </view>
- </view>
- <view class="number">
- {{item.money}}
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- // 用户信息
- userInfo: {},
- // 钱包历史
- history: [],
- page: 1,
- limit: 20
- }
- },
- onLoad() {
- this.getUserInfo()
- this.getHistory()
- },
- methods: {
- // 获取会员信息
- getUserInfo() {
- this.request("/user/index", {}, "GET").then(res => {
- if (res.code === 1) {
- this.userInfo = res.data
- }
- })
- },
- // 获取金额日志
- getHistory() {
- this.request("/user_money_controller/log", {
- page: this.page,
- limit: this.limit
- }, "GET").then(res => {
- if (res.code === 1) {
- this.history = res.data.data
- }
- })
- },
- // 点击提现
- withdrawal() {
- uni.navigateTo({
- url: './Withdrawal'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .content {
- padding-top: 40rpx;
- }
- .card {
- width: 93%;
- height: 300rpx;
- margin: 0 auto;
- border: 1px #999 solid;
- border-radius: 40rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- padding: 40rpx;
- .title {
- width: 100%;
- font-weight: bold;
- }
- .big {
- font-size: 50rpx;
- }
- .btn {
- background-color: #111111;
- color: #F6B301;
- padding: 10rpx 30rpx;
- border-radius: 20rpx;
- }
- }
- .list {
- width: 93%;
- margin: 0 auto;
- margin-top: 30rpx;
- .title {
- font-size: 40rpx;
- font-weight: bold;
- }
- .row {
- border-bottom: 1rpx #eee solid;
- padding: 10rpx 0;
- }
- .list-box {
- .icon {
- width: 10%;
- }
- .text {
- width: 70%;
- }
- .money {
- width: 20%;
- }
- }
- }
- </style>
|