123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- <template>
- <app-layout>
- <app-user-center-top
- :top-style="userCenter.top_style"
- :top-pic-url="userCenter.top_pic_url"
- :member-pic-url="userCenter.member_pic_url"
- :is_icon_super_vip="is_icon_super_vip"
- ></app-user-center-top>
- <view class="u-foot-box main-center" v-if="userCenter.is_foot_bar_status == 1">
- <view @click="router(item.name)" class="u-foot-item main-center" v-for="(item, key) in foot_bar" :key="key">
- <image class="u-icon" :src="item.icon_url"></image>
- <view class="u-foot-info">
- <view class="u-foot-num">{{item.name | showNum(userInfo)}}</view>
- <view>{{item.name}}</view>
- </view>
- </view>
- <view class="u-line"></view>
- </view>
- <view style="padding: 0 24rpx">
- <app-vip-card></app-vip-card>
- </view>
- <app-account-balance
- v-if="userCenter.account_bar.status == 1"
- :margin="true"
- :round="true"
- :input-user-center="userCenter"
- ></app-account-balance>
- <app-my-order
- v-if="userCenter.is_order_bar_status == 1"
- :margin="true"
- :round="true"
- :theme="getTheme"
- :order_bar="userCenter.order_bar"
- ></app-my-order>
- <view class="app-my-service" v-if="userCenter.is_menu_status == 1">
- <view class="title" v-if="userCenter.menu_title">{{userCenter.menu_title}}</view>
- <view class="list" :class="[listStyle]">
- <view class="item" v-for="(item, index) in userCenter.menus" :key="index" >
-
- <app-jump-button form
- :url="item.link_url"
- :open_type="item.open_type"
- :item="item"
- :arrangement="`${userCenter.menu_style === '1' ? 'row' : userCenter.menu_style === '2' ? 'column' : ''}`">
- <view style="width: 100%"
- class="item-container"
- :class="[
- userCenter.menu_style=='1'?'dir-left-nowrap cross-center':'',
- userCenter.menu_style=='2'?'dir-top-nowrap cross-center':'',
- ]">
- <view class="box-grow-0">
- <image :src="item.icon_url" class="icon"></image>
- </view>
- <view class="box-grow-1" style="max-width: 100%">
- <view class="name">{{item.name}}</view>
- </view>
- <view class="box-grow-0" v-if="userCenter.menu_style=='1'">
- <image src="/static/image/icon/arrow-right.png" class="arrow"></image>
- </view>
- </view>
- </app-jump-button>
- </view>
- </view>
- </view>
- <view class="app-my-service" v-if="userCenter.is_menu_status == 1">
- <view class="list" :class="[listStyle]">
- <view class="item" @click="goUrl">
- <app-jump-button form
- url="pages/sp/index/index"
- open_type="item.open_type"
- item="item"
- arrangement="`${userCenter.menu_style === '1' ? 'row' : userCenter.menu_style === '2' ? 'column' : ''}`">
- <view style="width: 100%" class="item-container dir-left-nowrap cross-center">
- <view class="box-grow-0">
- <image src="https://t12.9026.com/web/statics/img/mall/pick-link/icon-user-card.png" class="icon"></image>
- </view>
- <view class="box-grow-1" style="max-width: 100%">
- <view class="name">碎屏险中心</view>
- </view>
- <view class="box-grow-0">
- <image src="/static/image/icon/arrow-right.png" class="arrow"></image>
- </view>
- </view>
- </app-jump-button>
- </view>
- </view>
- </view>
- <app-copyright
- v-if="copyright && copyright.status == '1'"
- background-color="transparent"
- :link="copyrightLink"
- :pic-url="copyright.pic_url"
- :text="copyright.description"
- ></app-copyright>
- </app-layout>
- </template>
- <script>
- import {mapGetters, mapState} from 'vuex';
- import AppUserCenterTop from '../../components/page-component/app-user-center-top/app-user-center-top.vue';
- import AppAccountBalance from '../../components/page-component/app-account-balance/app-account-balance.vue';
- import AppMyOrder from '../../components/page-component/app-my-order/app-my-order.vue';
- import AppCopyright from '../../components/page-component/app-copyright/app-copyright.vue';
- import AppVipCard from '../../components/page-component/app-vip-card/app-vip-card.vue';
- export default {
- name: 'user-center',
- components: {
- AppCopyright,
- AppUserCenterTop,
- AppAccountBalance,
- AppMyOrder,
- AppVipCard,
- },
- computed: {
- ...mapState({
- copyright: state => state.mallConfig.copyright,
- userCenter: state => state.userCenter.data,
- userInfo: state => state.user.info,
- is_icon_super_vip: function (state) {
- return state.mallConfig.mall.setting.is_icon_super_vip;
- },
- foot_bar: function(state) {
- return state.userCenter.data.foot_bar;
- }
- }),
- copyrightLink() {
- if (!this.copyright) return {};
- let { open_type, new_link_url, params } = this.copyright.link;
- return {
- openType: open_type,
- url: new_link_url,
- params: params ? params : []
- };
- },
- ...mapGetters('mallConfig', {
- getTheme: 'getTheme'
- }),
- listStyle() {
- if (this.userCenter.menu_style == 1) return 'row';
- if (this.userCenter.menu_style == 2) return 'grid dir-left-wrap';
- return '';
- }
- },
- onShow() {
- this.$event.on(this.$const.EVENT_USER_LOGIN).then(() => {
- uni.redirectTo({
- url: `/pages/user-center/user-center`
- });
- });
- if (this.$user.isLogin()) {
- this.$store.dispatch('user/refresh');
- }
- this.$nextTick().then(() => {
- this.$store.dispatch('userCenter/data');
- });
- },
- methods: {
- goUrl(){
- uni.redirectTo({
- url: '/pages/sp/index/index'
- })
- },
- router(name) {
- let url = '';
- if (name === '我的收藏') {
- url = `/pages/favorite/favorite`;
- } else {
- url = `/pages/foot/index/index`;
- }
- uni.navigateTo({
- url: url
- });
- }
- },
- filters: {
- showNum(name, userInfo) {
- if (name === '我的收藏') {
- return userInfo && userInfo.favorite ? userInfo.favorite : 0;
- } else {
- return userInfo && userInfo.footprint ? userInfo.footprint : 0;
- }
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .app-my-service {
- width: #{702rpx};
- border-radius: #{16rpx};
- margin: #{24rpx} auto;
- box-shadow: 0 0 #{8rpx} rgba(0, 0, 0, .05);
- background: #fff;
- .title {
- padding: #{32rpx} #{32rpx} #{16rpx};
- }
- .list {
- .item {
- .icon {
- width: #{50rpx};
- height: #{50rpx};
- display: block;
- }
- .arrow {
- width: #{12rpx};
- height: #{22rpx};
- }
- }
- }
- .list.row {
- .item-container {
- padding: #{20rpx} #{32rpx};
- }
- .icon {
- margin-right: #{16rpx};
- }
- }
- .list.grid {
- .item {
- width: 25%;
- .icon {
- margin-bottom: #{28rpx};
- }
- .name {
- padding: 0 #{12rpx};
- font-size: $uni-font-size-weak-one;
- color: $uni-general-color-one;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- .item-container {
- padding: #{24rpx} 0;
- }
- }
- }
- .u-foot-box {
- position: relative;
- height: 104upx;
- }
- .u-icon {
- margin-top: 44upx;
- width: 40upx;
- height: 40upx;
- margin-right: 17upx;
- }
- .u-foot-item {
- font-size: #{26rpx};
- color: #666666;
- padding-top: #{14rpx};
- width: 50%;
- }
- .u-foot-info {
- text-align: center;
- }
- .u-foot-num {
- font-size: 32upx;
- margin-bottom: 10upx;
- }
- .u-line {
- height: 40upx;
- width: 2upx;
- background-color: #666666;
- position: absolute;
- top: 45upx;
- left: 50%;
- margin-left: -2upx;
- }
- </style>
|