You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
674 lines
19 KiB
674 lines
19 KiB
<template>
|
|
<view v-if="!isFirstload" class="container">
|
|
<!-- 页面头部 -->
|
|
<view class="main-header" :style="{ height: platform == 'H5' ? '260rpx' : '546rpx', paddingTop: platform == 'H5' ? '0' : '80rpx' }">
|
|
<!-- <image class="bg-image" src="/static/background/user-header2.png" mode="scaleToFill"></image> -->
|
|
<!-- 用户信息 -->
|
|
<view v-if="isLogin" class="user-info">
|
|
<view class="user-avatar">
|
|
<avatar-image :url="userInfo.avatar_url" :width="110" />
|
|
</view>
|
|
<view class="user-content">
|
|
<!-- 会员昵称 -->
|
|
<view class="nick-name oneline-hide">{{ userInfo.nick_name }}</view>
|
|
<!-- 会员等级 -->
|
|
<view v-if="userInfo.grade_id > 0 && userInfo.grade" class="user-grade">
|
|
<view class="user-grade_icon">
|
|
<image class="image"
|
|
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAA0lBMVEUAAAD/tjL/tzH/uDP/uC7/tjH/tzH/tzL/tTH+tTL+tjP/tDD/tTD+tzD/tjL/szD/uDH/tjL/tjL+tjD/tjT/szb/tzL/tTL+uTH+tjL/tjL/tjL/tTT/tjL/tjL+tjH/uTL/vDD/tjL/tjH/tzL9uS//tTL/nBr/sS7/tjH/ujL/szD/uTv+rzf/tzL+tzH+vDP+uzL+tjP+ry7+tDL9ki/7szf/sEX/tTL/tjL+tjL/tTH/tTT/tzH/tzL/tjP/sTX/uTP/wzX+rTn/vDX9vC8m8ckhAAAAOXRSTlMAlnAMB/vjxKWGMh0S6drMiVxPRkEY9PLy0ru0sKagmo5+dGtgVCMgBP716eXWyMGxqJGRe2o5KSmFNjaYAAABP0lEQVQ4y8XS13KDMBAF0AWDDe4t7r3ETu9lVxJgJ/n/X8rKAzHG5TE+Twz3zki7I/g/KXdghIbGJewrU4yzn08Ebgl6TuZzzuOC6W5es3HX6qsSz3NFShRU0MpucytDmOSpu3yULx3CA9RD1HjVedc0jSjqm6ZzhUjDsFDQhSp/OKj5GQvg0+ZCOixsbtDLAeTTOm/yGi8GyIphIVsgH737FEDV44LJa88IRKK/SetrwT9G/GUIr6vXjoy4GXn7+RboVXnghuSjaoGecwQxL2su3CwAKlO+QFoqxI4FMctHQhQd2OhxTu184jWUlI+rMTBTn1/IQcJHQ6GQdZ7pWiDaNdhTt330efISeiqYwQEzQpTlsURJLhzkEmpCPsERfeIUVyXr6MNuIyp5uziW6xURtt7hhGwzmMNJExfO4Bd9X0ZPqAxdNwAAAABJRU5ErkJggg==">
|
|
</image>
|
|
</view>
|
|
<view class="user-grade_name">
|
|
<text>{{ userInfo.grade.name }}</text>
|
|
</view>
|
|
</view>
|
|
<!-- 会员无等级时显示手机号 -->
|
|
<view v-else class="mobile">{{ userInfo.mobile }}</view>
|
|
</view>
|
|
</view>
|
|
<!-- 未登录 -->
|
|
<view v-else class="user-info" @click="handleLogin">
|
|
<view class="user-avatar">
|
|
<avatar-image :width="100" />
|
|
</view>
|
|
<view class="user-content">
|
|
<view class="nick-name">未登录</view>
|
|
<view class="login-tips">点击登录账号</view>
|
|
</view>
|
|
</view>
|
|
<!-- 我的钱包 -->
|
|
<view class="my-asset">
|
|
<view class="asset-left flex-box dis-flex flex-x-around">
|
|
<view class="asset-left-item" @click="onTargetWallet">
|
|
<view class="item-value dis-flex flex-x-center">
|
|
<text>{{ isLogin ? assets.balance : '--' }}</text>
|
|
</view>
|
|
<view class="item-name dis-flex flex-x-center">
|
|
<text>余额</text>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="asset-left-item" @click="onTargetPoints">
|
|
<view class="item-value dis-flex flex-x-center">
|
|
<text>{{ isLogin ? assets.points : '--' }}</text>
|
|
</view>
|
|
<view class="item-name dis-flex flex-x-center">
|
|
<text>{{ setting[SettingKeyEnum.POINTS.value].points_name }}</text>
|
|
</view>
|
|
</view> -->
|
|
<view class="asset-left-item" @click="onTargetMyCoupon">
|
|
<view class="item-value dis-flex flex-x-center">
|
|
<text>{{ isLogin ? assets.coupon : '--' }}</text>
|
|
</view>
|
|
<view class="item-name dis-flex flex-x-center">
|
|
<text>优惠券</text>
|
|
</view>
|
|
|
|
</view>
|
|
<view class="asset-left-item" @click="onTargetWallet" style="border-left: 1rpx solid #eee;">
|
|
<view class="item-icon dis-flex flex-x-center">
|
|
<image src="../../static/qb.png" class="qb" mode=""></image>
|
|
</view>
|
|
<view class="item-name dis-flex flex-x-center" style="margin-top: 21rpx;">
|
|
<text>我的钱包</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="asset-right">
|
|
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 订单操作 -->
|
|
<view class="order-navbar">
|
|
<view class="myOrderTitle">
|
|
我的订单
|
|
</view>
|
|
<view class="orderTabList">
|
|
<view class="order-navbar-item" v-for="(item, index) in orderNavbar" :key="index" @click="onTargetOrder(item)">
|
|
<view class="item-icon">
|
|
<!-- <text class="iconfont" :class="[`icon-${item.icon}`]"></text> -->
|
|
<image :src="item.icon" style="width: 62rpx;height:62rpx;" mode=""></image>
|
|
</view>
|
|
<view class="item-name">{{ item.name }}</view>
|
|
<view class="item-badge" v-if="item.count && item.count > 0">
|
|
<text v-if="item.count <= 99" class="text">{{ item.count }}</text>
|
|
<text v-else class="text">99+</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 我的服务 -->
|
|
<view class="my-service">
|
|
<!-- <view class="myOrderTitle">
|
|
我的服务
|
|
</view> -->
|
|
|
|
<view class="service-content clearfix">
|
|
<block v-for="(item, index) in service" :key="index">
|
|
<view v-if="item.type == 'link'" class="service-item" @click="handleService(item)">
|
|
<view class="item-icon">
|
|
<image :src="item.icon" style="width:44rpx;height:auto" mode="widthFix"></image>
|
|
<!-- <text class="iconfont" :class="[`icon-${item.icon}`]"></text> -->
|
|
</view>
|
|
<view class="item-name">{{ item.name }}</view>
|
|
<view class="item-badge" v-if="item.count && item.count > 0">
|
|
<text v-if="item.count <= 99" class="text">{{ item.count }}</text>
|
|
<text v-else class="text">99+</text>
|
|
</view>
|
|
</view>
|
|
<view v-if="item.type == 'button' && platform == 'MP-WEIXIN'" class="service-item">
|
|
<button class="btn-normal" :open-type="item.openType">
|
|
<view class="item-icon">
|
|
<image :src="item.icon" style="width:44rpx;height:auto" mode="widthFix"></image>
|
|
<!-- <text class="iconfont" :class="[`icon-${item.icon}`]"></text> -->
|
|
</view>
|
|
<view class="item-name">{{ item.name }}</view>
|
|
</button>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 退出登录 -->
|
|
<view v-if="isLogin" class="my-logout">
|
|
<view class="logout-btn" @click="handleLogout()">
|
|
<text>退出登录</text>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import store from '@/store'
|
|
import AvatarImage from '@/components/avatar-image'
|
|
import { setCartTabBadge } from '@/core/app'
|
|
import SettingKeyEnum from '@/common/enum/setting/Key'
|
|
import SettingModel from '@/common/model/Setting'
|
|
import * as UserApi from '@/api/user'
|
|
import * as OrderApi from '@/api/order'
|
|
import { checkLogin } from '@/core/app'
|
|
|
|
// 订单操作
|
|
const orderNavbar = [
|
|
{ id: 'all', name: '全部', icon: '/static/3.png' },
|
|
{ id: 'payment', name: '待支付', icon: '/static/1.png', count: 0 },
|
|
{ id: 'delivery', name: '待发货', icon: '/static/2.png', count: 0 },
|
|
{ id: 'received', name: '待收货', icon: '/static/4.png', count: 0 },
|
|
]
|
|
|
|
/**
|
|
* 我的服务
|
|
* id: 标识; name: 标题名称; icon: 图标; type 类型(link和button); url: 跳转的链接
|
|
*/
|
|
const service = [
|
|
{ id: 'address', name: '收货地址', icon: '/static/m1.png', type: 'link', url: 'pages/address/index' },
|
|
{ id: 'coupon', name: '领券中心', icon: '/static/m2.png', type: 'link', url: 'pages/coupon/index' },
|
|
{ id: 'myCoupon', name: '优惠券', icon: '/static/m3.png', type: 'link', url: 'pages/my-coupon/index' },
|
|
{ id: 'help', name: '我的帮助', icon: '/static/m4.png', type: 'link', url: 'pages/help/index' },
|
|
{ id: 'contact', name: '在线客服', icon: '/static/m5.png', type: 'button', openType: 'contact' },
|
|
// { id: 'points', name: '我的积分', icon: 'jifen', type: 'link', url: 'pages/points/log' },
|
|
{ id: 'refund', name: '退换/售后', icon: '/static/m6.png', type: 'link', url: 'pages/refund/index', count: 0 },
|
|
{ id: 'recharge', name: '卡密兑换', icon: '/static/kami.png', type: 'link', url: 'pages/recharge/index' },
|
|
//隐私政策
|
|
{ id: 'recharge', name: '用户协议', icon: '/static/xieyi.png', type: 'link', url: 'pages/webview/webview?articleId=10001' },
|
|
{ id: 'recharge', name: '隐私政策', icon: '/static/yinsi.png', type: 'link', url: 'pages/webview/webview?articleId=10002' }
|
|
]
|
|
|
|
export default {
|
|
components: {
|
|
AvatarImage
|
|
},
|
|
data() {
|
|
return {
|
|
// 枚举类
|
|
SettingKeyEnum,
|
|
// 正在加载
|
|
isLoading: true,
|
|
// 首次加载
|
|
isFirstload: true,
|
|
// 是否已登录
|
|
isLogin: false,
|
|
// 系统设置
|
|
setting: {},
|
|
// 当前用户信息
|
|
userInfo: {},
|
|
// 账户资产
|
|
assets: { balance: '--', points: '--', coupon: '--' },
|
|
// 我的服务
|
|
service,
|
|
// 订单操作
|
|
orderNavbar,
|
|
// 当前用户待处理的订单数量
|
|
todoCounts: { payment: 0, deliver: 0, received: 0 }
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面显示
|
|
*/
|
|
onShow(options) {
|
|
this.onRefreshPage()
|
|
},
|
|
methods: {
|
|
|
|
// 刷新页面
|
|
onRefreshPage() {
|
|
// 更新购物车角标
|
|
setCartTabBadge()
|
|
// 判断是否已登录
|
|
this.isLogin = checkLogin()
|
|
// 获取页面数据
|
|
this.getPageData()
|
|
},
|
|
|
|
// 获取页面数据
|
|
getPageData(callback) {
|
|
const app = this
|
|
app.isLoading = true
|
|
Promise.all([app.getSetting(), app.getUserInfo(), app.getUserAssets(), app.getTodoCounts()])
|
|
.then(result => {
|
|
app.isFirstload = false
|
|
// 初始化我的服务数据
|
|
app.initService()
|
|
// 初始化订单操作数据
|
|
app.initOrderTabbar()
|
|
// 执行回调函数
|
|
callback && callback()
|
|
})
|
|
.catch(err => console.log('catch', err))
|
|
.finally(() => app.isLoading = false)
|
|
},
|
|
|
|
// 初始化我的服务数据
|
|
initService() {
|
|
const app = this
|
|
const newService = []
|
|
service.forEach(item => {
|
|
if (item.id === 'points') {
|
|
item.name = '我的' + app.setting[SettingKeyEnum.POINTS.value].points_name
|
|
}
|
|
// 数据角标
|
|
if (item.count != undefined) {
|
|
item.count = app.todoCounts[item.id]
|
|
}
|
|
newService.push(item)
|
|
})
|
|
app.service = newService
|
|
},
|
|
|
|
// 初始化订单操作数据
|
|
initOrderTabbar() {
|
|
const app = this
|
|
const newOrderNavbar = []
|
|
orderNavbar.forEach(item => {
|
|
if (item.count != undefined) {
|
|
item.count = app.todoCounts[item.id]
|
|
}
|
|
newOrderNavbar.push(item)
|
|
})
|
|
app.orderNavbar = newOrderNavbar
|
|
},
|
|
|
|
// 获取商城设置
|
|
getSetting() {
|
|
const app = this
|
|
return new Promise((resolve, reject) => {
|
|
SettingModel.data()
|
|
.then(setting => {
|
|
app.setting = setting
|
|
resolve(setting)
|
|
}).catch(reject)
|
|
})
|
|
},
|
|
|
|
// 获取当前用户信息
|
|
getUserInfo() {
|
|
const app = this
|
|
return new Promise((resolve, reject) => {
|
|
!app.isLogin ? resolve(null) : UserApi.info({}, { load: app.isFirstload })
|
|
.then(result => {
|
|
app.userInfo = result.data.userInfo
|
|
resolve(app.userInfo)
|
|
})
|
|
.catch(err => {
|
|
if (err.result && err.result.status == 401) {
|
|
app.isLogin = false
|
|
resolve(null)
|
|
} else {
|
|
reject(err)
|
|
}
|
|
})
|
|
})
|
|
},
|
|
|
|
// 获取账户资产
|
|
getUserAssets() {
|
|
const app = this
|
|
return new Promise((resolve, reject) => {
|
|
!app.isLogin ? resolve(null) : UserApi.assets({}, { load: app.isFirstload })
|
|
.then(result => {
|
|
app.assets = result.data.assets
|
|
resolve(app.assets)
|
|
})
|
|
.catch(err => {
|
|
if (err.result && err.result.status == 401) {
|
|
app.isLogin = false
|
|
resolve(null)
|
|
} else {
|
|
reject(err)
|
|
}
|
|
})
|
|
})
|
|
},
|
|
|
|
// 获取当前用户待处理的订单数量
|
|
getTodoCounts() {
|
|
const app = this
|
|
return new Promise((resolve, reject) => {
|
|
!app.isLogin ? resolve(null) : OrderApi.todoCounts({}, { load: app.isFirstload })
|
|
.then(result => {
|
|
app.todoCounts = result.data.counts
|
|
resolve(app.todoCounts)
|
|
})
|
|
.catch(err => {
|
|
if (err.result && err.result.status == 401) {
|
|
app.isLogin = false
|
|
resolve(null)
|
|
} else {
|
|
reject(err)
|
|
}
|
|
})
|
|
})
|
|
},
|
|
|
|
// 跳转到登录页
|
|
handleLogin() {
|
|
!this.isLogin && this.$navTo('pages/login/index')
|
|
},
|
|
|
|
// 退出登录
|
|
handleLogout() {
|
|
const app = this
|
|
uni.showModal({
|
|
title: '友情提示',
|
|
content: '您确定要退出登录吗?',
|
|
success(res) {
|
|
if (res.confirm) {
|
|
store.dispatch('Logout', {})
|
|
.then(result => app.onRefreshPage())
|
|
}
|
|
}
|
|
})
|
|
},
|
|
|
|
// 跳转到钱包页面
|
|
onTargetWallet() {
|
|
this.$navTo('pages/wallet/index')
|
|
},
|
|
|
|
// 跳转到订单页
|
|
onTargetOrder(item) {
|
|
this.$navTo('pages/order/index', { dataType: item.id })
|
|
},
|
|
|
|
// 跳转到我的积分页面
|
|
onTargetPoints() {
|
|
this.$navTo('pages/points/log')
|
|
},
|
|
|
|
// 跳转到我的优惠券页
|
|
onTargetMyCoupon() {
|
|
this.$navTo('pages/my-coupon/index')
|
|
},
|
|
|
|
// 跳转到服务页面
|
|
handleService({ url }) {
|
|
this.$navTo(url)
|
|
},
|
|
|
|
},
|
|
|
|
/**
|
|
* 下拉刷新
|
|
*/
|
|
onPullDownRefresh() {
|
|
// 获取首页数据
|
|
this.getPageData(() => {
|
|
uni.stopPullDownRefresh()
|
|
})
|
|
},
|
|
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
// 页面头部
|
|
.main-header {
|
|
background-color: #17C161;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 546rpx;
|
|
background-size: 100% 100%;
|
|
overflow: hidden;
|
|
// display: flex;
|
|
// align-items: center;
|
|
// padding-top: 40rpx;
|
|
// padding-left: 30rpx;
|
|
// padding:0 25rpx;
|
|
|
|
.bg-image {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 0;
|
|
}
|
|
|
|
.user-info {
|
|
display: flex;
|
|
height: 100rpx;
|
|
z-index: 1;
|
|
margin-top: 90rpx;
|
|
padding: 0 25rpx;
|
|
|
|
.user-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
margin-left: 30rpx;
|
|
color: #fff;
|
|
|
|
.nick-name {
|
|
font-size: 34rpx;
|
|
font-weight: bold;
|
|
// max-width: 270rpx;
|
|
color:#ffffff;
|
|
}
|
|
|
|
.mobile {
|
|
margin-top: 15rpx;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.user-grade {
|
|
align-self: baseline;
|
|
display: flex;
|
|
align-items: center;
|
|
background: #3c3c3c;
|
|
margin-top: 12rpx;
|
|
border-radius: 10rpx;
|
|
padding: 4rpx 12rpx;
|
|
|
|
.user-grade_icon .image {
|
|
display: block;
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
}
|
|
|
|
.user-grade_name {
|
|
margin-left: 5rpx;
|
|
font-size: 26rpx;
|
|
color: #EEE0C3;
|
|
}
|
|
|
|
}
|
|
|
|
.login-tips {
|
|
margin-top: 12rpx;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
// 角标组件
|
|
.item-badge {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 40rpx;
|
|
background: #FA2209;
|
|
color: #fff;
|
|
border-radius: 100%;
|
|
min-width: 38rpx;
|
|
height: 38rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 1rpx;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
// 我的钱包
|
|
.my-asset {
|
|
display: flex;
|
|
/* background: #fff; */
|
|
/* padding: 40rpx 0; */
|
|
|
|
margin-top: 40rpx;
|
|
|
|
// .asset-right {
|
|
// width: 200rpx;
|
|
// border-left: 1rpx solid #eee;
|
|
// }
|
|
.qb{
|
|
width:44rpx;
|
|
height:44rpx;
|
|
}
|
|
.asset-right-item {
|
|
text-align: center;
|
|
color: #545454;
|
|
|
|
.item-icon {
|
|
font-size: 44rpx;
|
|
}
|
|
|
|
.item-name {
|
|
margin-top: 14rpx;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
}
|
|
|
|
.asset-left-item {
|
|
text-align: center;
|
|
flex:1;
|
|
|
|
.item-value {
|
|
font-size: 36rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: bold;
|
|
color: #FFFFFF;
|
|
line-height: 36rpx;
|
|
}
|
|
|
|
.item-name {
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #FFFFFF;
|
|
margin-top:25rpx;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 订单操作
|
|
.order-navbar {
|
|
background: #fff;
|
|
margin: 0 25rpx;
|
|
border-radius: 20rpx;
|
|
position: relative;
|
|
margin-top: -111rpx;
|
|
z-index: 9;
|
|
padding:30rpx;
|
|
|
|
.orderTabList{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 30rpx;
|
|
}
|
|
|
|
&-item {
|
|
position: relative;
|
|
width: 25%;
|
|
|
|
.item-icon {
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
padding: 10rpx 0;
|
|
color: #545454;
|
|
font-size: 44rpx;
|
|
}
|
|
|
|
.item-name {
|
|
font-size: 28rpx;
|
|
color: #545454;
|
|
text-align: center;
|
|
margin-right: 10rpx;
|
|
}
|
|
|
|
}
|
|
}
|
|
.myOrderTitle{
|
|
font-size: 30rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #333333;
|
|
}
|
|
|
|
// 我的服务
|
|
.my-service {
|
|
background: #fff;
|
|
margin: 0 25rpx;
|
|
border-radius: 20rpx;
|
|
margin-top: 24rpx;
|
|
|
|
padding:30rpx;
|
|
|
|
.service-title {
|
|
padding-left: 24rpx;
|
|
margin-bottom: 20rpx;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.service-content {
|
|
|
|
margin-bottom: -20rpx;
|
|
|
|
.service-item {
|
|
position: relative;
|
|
width: 25%;
|
|
float: left;
|
|
margin-bottom: 30rpx;
|
|
|
|
.item-icon {
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
padding: 14rpx 0;
|
|
color: #ff3800;
|
|
font-size: 44rpx;
|
|
}
|
|
|
|
.item-name {
|
|
font-size: 28rpx;
|
|
color: #545454;
|
|
text-align: center;
|
|
margin-right: 10rpx;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
// 退出登录
|
|
.my-logout {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 60rpx;
|
|
padding-bottom: 60rpx;
|
|
|
|
.logout-btn {
|
|
width: 50%;
|
|
background: #F5F5F5;
|
|
border: 1px solid #CCCCCC;
|
|
border-radius: 40px;
|
|
padding:26rpx 0;
|
|
font-size: 30rpx;
|
|
font-family: Alibaba PuHuiTi;
|
|
font-weight: 400;
|
|
color: #999999;
|
|
text-align: center;
|
|
}
|
|
}
|
|
</style>
|
|
|