143 lines
3.3 KiB
Vue
143 lines
3.3 KiB
Vue
<template>
|
||
<view class="user">
|
||
<view class="head" @click="toOthersPage('info')">
|
||
<view class="info" :key="num">
|
||
<image :src="info.member_avatar+'?'+new Date().getTime()"></image>
|
||
<view class="name">
|
||
<text>{{info.member_nickname==null?"新用户":info.member_nickname}}</text>
|
||
<text>账号:{{info.member_name}}</text>
|
||
<text>个性签名:{{info.signature==""?"该用户很懒没有签名!":info.signature}}</text>
|
||
</view>
|
||
</view>
|
||
<image src="/static/image/user/1.png"></image>
|
||
</view>
|
||
<view class="nav" @click="toOthersPage('fans')">
|
||
<text>我的粉丝</text>
|
||
<image src="/static/image/user/1.png"></image>
|
||
</view>
|
||
<view class="nav" @click="toOthersPage('content')">
|
||
<text>内容管理</text>
|
||
<image src="/static/image/user/1.png"></image>
|
||
</view>
|
||
<view class="nav" @click="toOthersPage('complaint')">
|
||
<text>骑手投诉</text>
|
||
<image src="/static/image/user/1.png"></image>
|
||
</view>
|
||
<view class="nav" @click="loginout()">
|
||
<text>退出登录</text>
|
||
<image src="/static/image/user/1.png"></image>
|
||
</view>
|
||
<u-toast ref="uToast" />
|
||
</view>
|
||
</template>
|
||
<script>
|
||
export default {
|
||
name:"user",
|
||
data() {
|
||
return {
|
||
info:{},
|
||
num:0
|
||
}
|
||
},
|
||
onLoad() {
|
||
},
|
||
onShow() {
|
||
this.getmyinfo()
|
||
},
|
||
methods: {
|
||
// 退出登陆
|
||
loginout(){
|
||
uni.clearStorage();
|
||
this.imService.disconnect()
|
||
this.$refs.uToast.show({
|
||
title: "退出登陆成功!",
|
||
type: 'success'
|
||
});
|
||
uni.reLaunch({
|
||
url:"../login/login"
|
||
})
|
||
},
|
||
// 获取个人信息
|
||
getmyinfo(){
|
||
let that = this;
|
||
this.$u.api.getshopinfo({}).then(res => {
|
||
console.log(res);
|
||
if (res.errCode != 0) {
|
||
this.$refs.uToast.show({
|
||
title: res.message,
|
||
type: 'error'
|
||
});
|
||
} else {
|
||
this.info = res.data.memberInfo
|
||
this.num++
|
||
}
|
||
});
|
||
},
|
||
toOthersPage(url) {
|
||
uni.navigateTo({
|
||
url: '/pages/user/' + url
|
||
});
|
||
}
|
||
},
|
||
}
|
||
</script>
|
||
<style lang="scss" scoped>
|
||
.user{
|
||
min-height: calc(100vh - var(--window-top));
|
||
background: #ececec;
|
||
.head{
|
||
width: 100%;
|
||
height: 220rpx;
|
||
background-color: #FF780F;
|
||
padding: 0 30rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
.info{
|
||
display: flex;
|
||
align-items: center;
|
||
|
||
>image{
|
||
width: 110rpx;
|
||
height: 110rpx;
|
||
border-radius: 50%;
|
||
}
|
||
.name{
|
||
font-size: 24rpx;
|
||
color: #fff;
|
||
display: flex;
|
||
flex-direction: column;
|
||
margin-left: 26rpx;
|
||
>text{
|
||
margin-top: 14rpx;
|
||
}
|
||
>text:first-child{
|
||
font-size: 28rpx;
|
||
margin-top: 0;
|
||
}
|
||
}
|
||
|
||
}
|
||
>image{
|
||
width: 12rpx;
|
||
height: 20rpx;
|
||
}
|
||
}
|
||
.nav{
|
||
width: 100%;
|
||
height: 100rpx;
|
||
display: flex;
|
||
padding: 30rpx;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
font-size: 30rpx;
|
||
margin-bottom: 2rpx;
|
||
color:#333;
|
||
background-color: #fff;
|
||
>image{
|
||
width: 13rpx;
|
||
height: 25rpx;
|
||
}
|
||
}
|
||
}
|
||
</style> |