123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template>
- <view class="detail-content">
- <view class="detail-box">
- <view class="detail-item">
- <view class="detail-label">头像</view>
- <image class="detail-avatar" :src="user.portrait" mode="aspectFill"></image>
- </view>
- <view class="detail-item">
- <view class="detail-label">姓名</view>
- <view class="detail-value">{{user.userName}}</view>
- </view>
- <view class="detail-item">
- <view class="detail-label">所属组织</view>
- <view class="detail-value">{{user.organizedName}}</view>
- </view>
- <view class="detail-item">
- <view class="detail-label">手机号</view>
- <view class="detail-value">{{user.phone}}</view>
- </view>
- <view class="detail-item">
- <view class="detail-label">性别</view>
- <view class="detail-value">{{user.sex === 'W'?'女':'男'}}</view>
- </view>
- </view>
- <view class="logout" @click="logout">退出登录</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- user: {}
- }
- },
- onShow() {
- this.user = this.$store.getters.user;
- this.user.organizedName = this.$store.getters.organization.name;
- console.log(this.user);
- },
- methods: {
- logout() {
- uni.showModal({
- title: '有极提示',
- content: '是否退出登录',
- success: res => {
- if (res.confirm) {
- uni.removeStorageSync('token');
- uni.removeStorageSync('chatToken');
- uni.switchTab({
- url: '/pages/highseas/highseas'
- })
- this.$toast('退出成功');
- }
- }
- });
- }
- }
- }
- </script>
- <style lang="scss">
- .detail-content {
- padding: 30rpx;
- .detail-avatar {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- }
- .detail-box {
- background: #fff;
- border-radius: 16rpx;
- padding: 30rpx;
- box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
- }
- .detail-label {
- color: $uni-secondary-color;
- font-weight: 300;
- margin-bottom: 10rpx;
- }
- .detail-value {
- font-size: 32rpx;
- color: $uni-base-color;
- }
- .detail-item {
- margin-bottom: 20rpx;
- }
- .logout {
- margin-top: 40rpx;
- background: $uni-error;
- color: #fff;
- height: 68rpx;
- line-height: 68rpx;
- border-radius: 68rpx;
- text-align: center;
- }
- }
- </style>
|