<template>
<view>
<view class="my-content">
<view class="header">
<image :src="wechatPicture" style="height: 62px; width: 62px; border-radius: 50%;"></image>
<view v-if="!phone">
<button type="primary" size="mini" @click="loginPhoneOpen">登录</button>
</view>
<view v-else class="header-text">
<view class="phone">{{phone}}</view>
<view><text class="company">企</text><text>{{companyName}}</text></view>
</view>
</view>
<view class="my-list">
<view class="my-list-item" @click="goCompany">
<image src="../../static/image/my-company.png" style="height: 17px; width: 17px;"></image>
<text>企业登录</text>
</view>
<view class="my-list-item" @click="goAccount">
<image src="../../static/image/my-account.png" style="height: 17px; width: 17px;"></image>
<text>账号管理</text>
</view>
</view>
<view style="padding: 0 30rpx;">
<button :disabled="limit == NO_LIMIT" type="primary" @click="loginOut" style="margin-top: 120rpx;">退出登录</button>
</view>
<login-phone ref="loginPhone"></login-phone>
</view>
</view>
</template>
<script>
const StorageHelper = require('../../common/storage-helper')
const Constants = require('../../common/constants');
const UserConstant = Constants.UserConstant;
const ValueConstant = Constants.ValueConstant
const AccountRestful = require('../../restfuls/account');
const UserRestful = require('../../restfuls/user');
import {mapState,mapGetters} from 'vuex'
export default {
data() {
return {
NO_LIMIT: ValueConstant.NO_LIMIT
}
},
created(){
},
computed:{
...mapState(['limit']),
...mapGetters(['phone','companyName', 'wechatPicture']),
},
watch:{
companyName(val){
console.log(val)
}
},
methods: {
loginPhoneOpen(){
this.$refs.loginPhone.$refs.popup.open()
},
loginOut(){
uni.showModal({
title: '',
content: '确认退出登录?',
success: function(res){
if(res.confirm){
AccountRestful.logout().then(res => {
getApp().getUserInfo()
})
}
}
})
},
goCompany(){
if(this.phone){
uni.navigateTo({
url: '/pages/company-login/company-login'
})
}else{
uni.showToast({
title: `请先绑定手机号码`,
icon: 'none'
})
}
},
goAccount(){
if(this.phone){
uni.navigateTo({
url: '/pages/account-manage/account-manage'
})
}else{
uni.showToast({
title: `请先绑定手机号码`,
icon: 'none'
})
}
}
}
}
</script>
<style lang="less" scoped>
.my-content{
background-color: #fff;
padding-bottom: 120rpx;
}
.header{
padding: 50rpx 30rpx;
display: flex;
align-items: center;
image{
margin-right: 20px;
}
.header-text{
font-size: 17px;
font-weight: 500;
color: #000000;
.phone{
margin-bottom: 6px;
}
.company{
background: #000000;
border-radius: 5px;
font-size: 12px;
font-weight: normal;
color: #FFFFFF;
padding: 5px;
margin-right: 18px;
line-height: 1;
}
}
}
.my-list{
.my-list-item{
display: flex;
align-items: center;
padding: 20rpx 30rpx;
&:active{
background-color: #f1f1f1;
}
image{
height: 17px;
width: 17px;
margin-right: 40rpx;
}
}
}
</style>
<style lang="less">
.my-list{
.uni-list--sm{
height: 17px;
width: 17px;
}
}
</style>
0 个回复