123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <template>
- <view class="clear">
- <!-- #ifndef H5 -->
- <navbar :iSimmersive="true" :isPrev="false" :placeholder="false"></navbar>
- <!-- #endif -->
- <view class="header">
- <view class="header-warp">
- <view class="info">
- <view class="avatar">
- <image v-if="avatar" :src="avatar"></image>
- <image v-if="avatar==''" :src="static+'avatar.png'"></image>
- </view>
- <view @click="login">{{username||"点击登录"}}</view>
- </view>
-
- <view class="amount">
- <view @click="jump('ucenter/wallet')">
- <text>¥{{amount||"0.00"}}</text>
- <text>我的余额</text>
- </view>
- <view @click="jump('ucenter/coupon')">
- <text>{{coupon||0}}</text>
- <text>优惠券</text>
- </view>
- </view>
- </view>
- </view>
- <view class="content">
- <view class="content-box">
- <view class="title">我的订单</view>
- <view class="list-box">
- <view class="box" @click="jump('order/list',{ id: 1 })">
- <view>
- <text class="iconfont ucenter-icon"></text>
- <text class="num" v-if="order_count.a">{{order_count.a}}</text>
- </view>
- <view>待付款</view>
- </view>
- <view class="box" @click="jump('order/list',{ id: 2 })">
- <view>
- <text class="iconfont ucenter-icon"></text>
- <text class="num" v-if="order_count.b">{{order_count.b}}</text>
- </view>
- <view>待发货</view>
- </view>
- <view class="box" @click="jump('order/list',{ id: 3 })">
- <view>
- <text class="iconfont ucenter-icon"></text>
- <text class="num" v-if="order_count.c">{{order_count.c}}</text>
- </view>
- <view>待收货</view>
- </view>
- <view class="box" @click="jump('order/list',{ id: 4 })">
- <view>
- <text class="iconfont ucenter-icon"></text>
- <text class="num" v-if="order_count.d">{{order_count.d}}</text>
- </view>
- <view>待评价</view>
- </view>
- <view class="box" @click="jump('order/service')">
- <view><text class="iconfont ucenter-icon"></text></view>
- <view>退换货</view>
- </view>
- </view>
- </view>
- <view class="content-box">
- <view class="title">我的服务</view>
- <view class="list-box service-box">
- <view class="box" @click="jump('ucenter/wallet')">
- <view><text class="iconfont ucenter-icon"></text></view>
- <view>我的钱包</view>
- </view>
- <view class="box" @click="jump('ucenter/collect')">
- <view><text class="iconfont ucenter-icon"></text></view>
- <view>我的收藏</view>
- </view>
- <view class="box" @click="jump('ucenter/address')">
- <view><text class="iconfont ucenter-icon"></text></view>
- <view>收货地址</view>
- </view>
- <view class="box" @click="jump('ucenter/coupon')">
- <view><text class="iconfont ucenter-icon"></text></view>
- <view>优惠券</view>
- </view>
- <view class="box" @click="jump('ucenter/point')">
- <view><text class="iconfont ucenter-icon"></text></view>
- <view>我的积分</view>
- </view>
- <view class="box" @click="jump('ucenter/setting')">
- <view><text class="iconfont ucenter-icon"></text></view>
- <view>会员设置</view>
- </view>
- <view class="box" @click="jump('ucenter/help')">
- <view><text class="iconfont ucenter-icon"></text></view>
- <view>帮助中心</view>
- </view>
- </view>
- </view>
- </view>
-
- <view class="copyright-logo"><image src="/static/images/logo.png"></image></view>
- <authorize v-model="isAuthShow"></authorize>
- </view>
- </template>
- <script>
- import authorize from "@/components/authorize/authorize";
- export default {
- components: {
- authorize
- },
- data() {
- return {
- isShop: 0,
- isAuthShow: false,
- static: '',
- username:'',
- amount:0.00,
- coupon:0,
- avatar: "",
- order_count: {}
- };
- },
- onLoad() {
- this.static = this.$static;
- },
- onShow() {
- this.$store.dispatch("usersStatus").then(()=>{
- this.isAuthShow = false;
- let users = this.$storage.getJson("users");
- this.username = users.nickname || users.username || users.mobile;
- this.amount = users.amount;
- this.coupon = users.coupon_count;
- this.avatar = users.avatar;
- this.$http.getUcenter().then((res)=>{
- if(res.status){
- this.username = res.data.nickname || res.data.username || res.data.mobile;
- this.amount = users.amount = res.data.amount;
- this.coupon = users.coupon_count = res.data.coupon_count;
- this.avatar = users.avatar = res.data.avatar;
- this.isShop = users.shop = res.data.shop;
- this.order_count = res.data.order_count;
- this.$store.commit("UPDATEUSERS",users);
- }
- });
- }).catch(()=>{
- this.isAuthShow = true;
- });
- },
- methods: {
- login(){
- this.$store.dispatch("usersStatus").then(()=>{
- this.isAuthShow = false;
- }).catch(()=>{
- this.isAuthShow = true;
- });
- },
- jump(value,param){
- let params = param || "";
- this.$store.dispatch("usersStatus").then(()=>{
- this.isAuthShow = false;
- if(params == ""){
- this.$utils.navigateTo(value);
- }else{
- this.$utils.navigateTo(value,params);
- }
- }).catch(()=>{
- this.isAuthShow = true;
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .header{
- width: 100%;
- height: 560rpx;
- position: relative;
- z-index: 1;
- background-image: url(~@/static/images/my.png);
- background-repeat: no-repeat;
- background-size: 100%;
- .header-warp {
- position: absolute;
- top:10rpx;
- /* #ifdef APP-PLUS */
- top:40rpx;
- /* #endif */
- left: 0;
- width: 100%;
- height: 510rpx;
- z-index: 2; }
- .info{
- position: absolute;
- top: 70rpx;
- left: 40rpx;
- view {
- float: left;
- image { width: 140rpx; height: 140rpx; display: block; border-radius: 50%; }
- &:last-child {
- height: 140rpx; line-height: 140rpx; padding-left: 24rpx; font-size: 36rpx; color: #fff;
- }
- }
- }
- .amount{
- position: absolute;
- top: 230rpx;
- width: 100%;
- view {
- width: 50%; float: left;
- text { display: block; color: #fff; text-align: center }
- text:first-child { font-size: 34rpx; }
- text:last-child { font-size: 26rpx; padding-top: 10rpx; }
- }
- }
- }
- .content {
- margin: -160rpx 40rpx 0 40rpx;
- position: relative; z-index: 100;
- .content-box{
- width: 100%;
- float: left;
- border-radius: 10rpx;
- background-color: #fff;
- &:last-child { margin-top: 30rpx; margin-bottom: 30rpx; }
- .title{
- font-size: 32rpx;
- color: #666;
- width: 100%;
- float: left;
- border-bottom: 2rpx solid #ebebeb;
- height: 100rpx;
- line-height: 100rpx;
- text-indent: 30rpx;
- }
- .list-box{
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- flex-direction: row;
- .box{
- width: 20%;
- padding: 20rpx 0;
- view {
- display: block; text-align: center; font-size: 26rpx; color: #666;
- &:first-child {
- position: relative;
- .num {
- position: absolute;
- top: 10rpx;
- right: 38rpx;
- box-sizing: border-box;
- min-width: 32rpx;
- padding: 0 6rpx;
- color: #fff;
- font-weight: 500;
- font-size: 24rpx;
- line-height: 28rpx;
- text-align: center;
- background-color: #ee0a24;
- border: 1px solid #fff;
- border-radius: 32rpx;
- transform: translate(50%,-50%);
- transform-origin: 100%;
- }
- }
- }
- .ucenter-icon {
- font-size: 50rpx;
- }
- }
- }
- .service-box{
- .box{
- width: 25%;
- padding: 20rpx 0;
- view { display: block; text-align: center; font-size: 26rpx; color: #666; }
- }
- }
- }
- }
- .copyright-logo {
- image {
- width: 150rpx; height: 50rpx; margin: 54rpx auto; display: block;
- }
- }
- </style>
|