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.
239 lines
5.8 KiB
239 lines
5.8 KiB
<template>
|
|
<view class="mine-container" :style="{height: `${windowHeight}px`}">
|
|
<u-navbar back-icon-color='#fff' back-icon-name=''
|
|
:background="{ background: 'rgba(64, 158,255,'+bgOpacity+')'}" back-text="" title-color='#fff'
|
|
:immersive='true' :border-bottom='false' title="个人中心">
|
|
</u-navbar>
|
|
<view class="header-section">
|
|
<image src="../../static/images/bg.jpg" class="bg" mode=""></image>
|
|
<view class="info" v-if="user">
|
|
<image :src="user.avatar" class="cu-avatar" mode=""></image>
|
|
<view class="user-info">
|
|
<view class="name">{{user.nickname}} <span v-if="user&&user.posts&&user.posts[0]">{{user.posts[0].name}}</span></view>
|
|
<view class="tips">{{user.dept.name}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="info" v-else>
|
|
<image :src="avatar" class="cu-avatar" mode=""></image>
|
|
<view class="user-info">
|
|
<view class="name">点击登录</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="content-section">
|
|
<view class="mine-actions grid col-3 text-center">
|
|
<view class="action-item" @click="handleDeviceReport">
|
|
<image src="../../static/images/banner/icon1.png" mode="widthFix"></image>
|
|
<text class="text">我的报修</text>
|
|
</view>
|
|
<view class="action-item" @click="handleBuilding">
|
|
<image src="../../static/images/banner/icon2.png" mode="widthFix"></image>
|
|
<text class="text">我的维修</text>
|
|
</view>
|
|
<view class="action-item" @click="handleBuilding">
|
|
<image src="../../static/images/banner/icon3.png" mode="widthFix"></image>
|
|
<text class="text">我的保养</text>
|
|
</view>
|
|
|
|
<view class="action-item action-item1" @click="handleBuilding">
|
|
<image src="../../static/images/banner/icon4.png" mode="widthFix"></image>
|
|
<text class="text">巡检点检</text>
|
|
</view>
|
|
<view class="action-item action-item1" @click="handleBuilding">
|
|
<image src="../../static/images/banner/icon5.png" mode="widthFix"></image>
|
|
<text class="text">我的领用</text>
|
|
</view>
|
|
<view class="action-item action-item1" @click="handleBuilding">
|
|
<image src="../../static/images/banner/icon6.png" mode="widthFix"></image>
|
|
<text class="text">备件维修</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="menu-list">
|
|
<view class="list-cell list-cell-arrow" @click="handleToEditInfo">
|
|
<view class="menu-item-box">
|
|
<u-icon name="lock" color="#2979ff" size="32"></u-icon>
|
|
<view style="margin-left: 10rpx;">修改密码</view>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="list-cell list-cell-arrow" @click="handleHelp">
|
|
<view class="menu-item-box">
|
|
<u-icon name="info-circle" color="#2979ff" size="32"></u-icon>
|
|
<view style="margin-left: 10rpx;">版本更新</view>
|
|
</view>
|
|
</view> -->
|
|
<view class="list-cell list-cell-arrow" @click="handleAbout">
|
|
<view class="menu-item-box">
|
|
<u-icon name="heart" color="#2979ff" size="32"></u-icon>
|
|
<view style="margin-left: 10rpx;">关于我们</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="btn" @click="handleLogout">退出登录</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import storage from '@/utils/storage'
|
|
import {
|
|
getInfo
|
|
} from '@/api/login'
|
|
export default {
|
|
data() {
|
|
return {
|
|
name: this.$store.state.user.name,
|
|
version: getApp().globalData.config.appInfo.version,
|
|
bgOpacity: 0,
|
|
user:''
|
|
}
|
|
},
|
|
computed: {
|
|
avatar() {
|
|
return this.$store.state.user.avatar
|
|
},
|
|
windowHeight() {
|
|
return uni.getSystemInfoSync().windowHeight - 50
|
|
}
|
|
},
|
|
methods: {
|
|
getInfo() {
|
|
getInfo().then(res => {
|
|
this.user = res.data
|
|
})
|
|
},
|
|
handleToInfo() {
|
|
this.$tab.navigateTo('/pages/mine/info/index')
|
|
},
|
|
handleDeviceReport() {
|
|
this.$tab.navigateTo('/pages/deviceReport/myDeviceReport')
|
|
},
|
|
handleLogout() {
|
|
this.$modal.confirm('确定注销并退出系统吗?').then(() => {
|
|
this.$store.dispatch('LogOut').then(() => {
|
|
this.$tab.reLaunch('/pages/login')
|
|
})
|
|
})
|
|
},
|
|
},
|
|
onShow() {
|
|
this.getInfo()
|
|
},
|
|
onPageScroll(e) {
|
|
if (e.scrollTop > 0) {
|
|
this.bgOpacity = e.scrollTop / 200;
|
|
} else {
|
|
this.bgOpacity = 0
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #f5f6f7;
|
|
}
|
|
|
|
.mine-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
|
|
.header-section {
|
|
color: white;
|
|
position: relative;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: calc(var(--status-bar-height) + 370rpx);
|
|
}
|
|
|
|
.info {
|
|
position: absolute;
|
|
top: calc(var(--status-bar-height) + 110rpx);
|
|
left: 80rpx;
|
|
right: 80rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.cu-avatar {
|
|
border: 4rpx solid #eaeaea;
|
|
width: 140rpx;
|
|
height: 140rpx;
|
|
border-radius: 50%;
|
|
|
|
.icon {
|
|
font-size: 80rpx;
|
|
}
|
|
}
|
|
|
|
.user-info {
|
|
margin-left: 30rpx;
|
|
|
|
.name {
|
|
line-height: 60rpx;
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
line-height: 60rpx;
|
|
margin-right: 20rpx;
|
|
|
|
span {
|
|
font-weight: normal;
|
|
font-size: 28rpx;
|
|
padding-left: 20rpx;
|
|
}
|
|
}
|
|
|
|
.tips {
|
|
padding: 10rpx 20rpx;
|
|
background: #3952ae;
|
|
color: white;
|
|
border-radius: 50rpx;
|
|
font-size: 24rpx;
|
|
display: inline-block;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.content-section {
|
|
position: relative;
|
|
top: -100rpx;
|
|
|
|
.mine-actions {
|
|
margin: 30rpx 30rpx;
|
|
padding: 40rpx 0px;
|
|
border-radius: 16rpx;
|
|
background-color: white;
|
|
|
|
.action-item {
|
|
image {
|
|
width: 80rpx;
|
|
}
|
|
|
|
.text {
|
|
display: block;
|
|
font-size: 26rpx;
|
|
}
|
|
}
|
|
|
|
.action-item1 {
|
|
margin-top: 26rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.btn {
|
|
width: calc(100vw - 60rpx);
|
|
margin: 0 auto;
|
|
background-color: rgb(64, 158, 255);
|
|
color: #FFFFFF;
|
|
height: 90rpx;
|
|
line-height: 90rpx;
|
|
text-align: center;
|
|
border-radius: 10rpx;
|
|
font-size: 32rpx;
|
|
}
|
|
</style>
|