123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- <template>
- <view>
- <navbar :iSimmersive="true" title-color="#ffffff" :placeholder="false" title="我的钱包"></navbar>
- <view class="header">
- <image v-if="static" :src="static+'app/wallet-bg.png'"></image>
- <view class="header-warp">
- <view class="info">
- <view>总资产(元)</view>
- <view>{{amount}}</view>
- <view v-if="switch_1">
- <text>累计充值(元):{{rechange_amount||"0.00"}}</text>
- <text>|</text>
- <text>累计消费(元):{{consume_amount||"0.00"}}</text>
- </view>
- </view>
- </view>
- </view>
-
- <view class="log" v-if="switch_2">
- <view class="log-box" @click="$utils.navigateTo('bill/cashlist')">
- <view><image v-if="static" :src="static+'app/wallet/1.png'"></image></view>
- <view>申请提现</view>
- </view>
- <view class="log-box" @click="$utils.navigateTo('bill/fund')">
- <view><image v-if="static" :src="static+'app/wallet/2.png'"></image></view>
- <view>资金明细</view>
- </view>
- <view class="log-box" @click="$utils.navigateTo('ucenter/point')">
- <view><image v-if="static" :src="static+'app/wallet/3.png'"></image></view>
- <view>积分中心</view>
- </view>
- </view>
-
- <view class="receive">
- <view class="c" @click="$utils.navigateTo('point/index')">
- <view>
- <text>积分商品兑换</text>
- <text>赚积分抵现金</text>
- </view>
- </view>
- <view class="c" @click="$utils.navigateTo('coupon/index')">
- <view>
- <text>领取优惠券</text>
- <text>满减享优惠</text>
- </view>
- </view>
- </view>
-
- <view class="guide">
- <view class="guide-box" @click="$utils.navigateTo('group/index')">
- <view><image v-if="static" :src="static+'app/wallet/6.png'"></image></view>
- <view>拼团</view>
- </view>
- <view class="guide-box" @click="$utils.navigateTo('regiment/index')">
- <view><image v-if="static" :src="static+'app/wallet/7.png'"></image></view>
- <view>团购</view>
- </view>
- <view class="guide-box" @click="$utils.navigateTo('second/index')">
- <view><image v-if="static" :src="static+'app/wallet/8.png'"></image></view>
- <view>秒杀</view>
- </view>
- <!-- view class="guide-box" @click="$utils.navigateTo('point/index')">
- <view><image v-if="static" :src="static+'app/wallet/9.png'"></image></view>
- <view>积分商品</view>
- </view -->
- <view class="guide-box" @click="$utils.navigateTo('special/index')">
- <view><image v-if="static" :src="static+'app/wallet/10.png'"></image></view>
- <view>会员特价</view>
- </view>
- <!-- view class="guide-box" @click="$utils.navigateTo('special/index')">
- <view><image v-if="static" :src="static+'app/wallet/11.png'"></image></view>
- <view>购物满减</view>
- </view -->
- </view>
-
- </view>
- </template>
- <script>
- import navbar from "@/components/navbar/navbar";
- export default {
- components: {
- navbar
- },
- data() {
- return {
- static: "",
- amount:0.00,
- rechange_amount:0.00,
- consume_amount:0.00,
- switch_1: 0,
- switch_2: 0
- };
- },
- onLoad() {
- this.static = this.$static;
- },
- onShow() {
- this.$utils.navigateTo()
- let users = this.$storage.getJson("users");
- this.amount = users.amount;
- this.$http.getWallet().then((res)=>{
- if(res.status){
- this.amount = res.data.amount;
- this.rechange_amount = res.data.rechange_amount;
- this.consume_amount = res.data.consume_amount;
-
- // #ifdef MP
- this.switch_1 = res.data.switch_1;
- this.switch_2 = res.data.switch_2;
- // #endif
-
- // #ifdef H5 || APP-PLUS
- this.switch_1 = 1;
- this.switch_2 = 1;
- // #endif
- }
- });
- }
- }
- </script>
- <style lang="scss" scoped>
- .header{
- width: 100%;
- height: 400rpx;
- position: relative;
- z-index: 1;
- image {
- width: 100%;
- height: 400rpx;
- }
- .header-warp { position: absolute; top:0; left: 0; width: 100%; height: 400rpx; z-index: 2; }
- .rechange{
- position: absolute;
- top: 135rpx;
- right: 0;
- width: 180rpx;
- height: 60rpx;
- line-height: 60rpx;
- background-color: #6183db;
- color: #fff;
- border-top-left-radius: 100rpx;
- border-bottom-left-radius: 100rpx;
- text-align: center;
- z-index: 9999;
- }
- .info{
- position: absolute;
- top: 135rpx;
- left: 30rpx;
- color: #fff;
- view:nth-child(1){
- font-size: 35rpx;
- }
- view:nth-child(2){
- font-size: 58rpx;
- padding-top: 20rpx;
- }
- view:nth-child(3){
- font-size: 26rpx;
- padding-top: 30rpx;
- text:nth-child(2){
- padding: 0 10rpx;
- position: relative;
- top: -2rpx;
- }
- }
- }
- }
- .log{
- display: flex;
- flex-wrap: nowrap;
- flex-direction: row;
- background-color: #fff;
- .log-box {
- width: 33.333%;
- height: 200rpx;
- font-size: 30rpx;
- view {
- display: block;
- text-align: center;
- &:first-child{
- margin-top: 40rpx;
- }
- &:last-child {
- margin-top: 20rpx;
- }
- }
- &:nth-child(1){
- image { width: 62rpx; height: 58rpx; }
- }
- &:nth-child(2){
- image { width: 54rpx; height: 62rpx; }
- }
- &:nth-child(3){
- image { width: 72rpx; height: 56rpx; }
- }
- }
- }
- .receive{
- width: 100%;
- height: 180rpx;
- margin-top: 20rpx;
- background-color: #fff;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- .c {
- width: 50%;
- height: 180rpx;
- view{
- position: relative;
- margin-top: 40rpx;
- margin-left: 120rpx;
- text:first-child { font-size: 32rpx; color: #1b43c4 }
- text:last-child { padding-top: 8rpx; font-size: 24rpx; color: #999999; }
- }
- &:first-child view:before {
- position: absolute;
- left: -80rpx;
- top: 12rpx;
- content: " ";
- width: 60rpx;
- height: 66rpx;
- background-size: 100%;
- background-repeat: no-repeat;
- background-image: url(~@/static/images/wallet/4.png);
- }
- &:last-child view:before {
- position: absolute;
- left: -64rpx;
- top: -2rpx;
- content: " ";
- width: 46rpx;
- height: 82rpx;
- background-size: 100%;
- background-repeat: no-repeat;
- background-image: url(~@/static/images/wallet/5.png);
- }
- text {
- display: block;
- }
- }
- }
- .guide{
- width: 100%;
- margin-top: 20rpx;
- background-color: #fff;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- margin-bottom: 20rpx;
- .guide-box {
- width: 50%;
- height: 90rpx;
- line-height: 90rpx;
- border-bottom: 4rpx solid #f9f9f9;
- padding: 40rpx 0;
- font-size: 32rpx;
- image { width: 90rpx; height: 90rpx; display: block; }
- view {
- float: left;
- &:first-child { margin-left: 70rpx; }
- &:last-child { margin-left: 30rpx; }
- }
- }
- }
- </style>
|