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.

229 lines
5.5 KiB

10 months ago
<template>
10 months ago
<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">
<image :src="avatar" class="cu-avatar" mode=""></image>
<view class="user-info">
<view class="name">用户名称 <span>部门主任</span></view>
<view class="tips">生产部门一</view>
</view>
10 months ago
</view>
10 months ago
</view>
<view class="content-section">
<view class="mine-actions grid col-3 text-center">
<view class="action-item" @click="handleJiaoLiuQun">
<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>
</view>
10 months ago
</template>
<script>
10 months ago
import storage from '@/utils/storage'
export default {
data() {
return {
name: this.$store.state.user.name,
version: getApp().globalData.config.appInfo.version,
bgOpacity: 0,
}
},
computed: {
avatar() {
return this.$store.state.user.avatar
},
windowHeight() {
return uni.getSystemInfoSync().windowHeight - 50
}
},
methods: {
handleToInfo() {
this.$tab.navigateTo('/pages/mine/info/index')
},
handleToEditInfo() {
this.$tab.navigateTo('/pages/mine/changePassword')
},
handleToSetting() {
this.$tab.navigateTo('/pages/mine/setting/index')
},
handleToLogin() {
this.$tab.reLaunch('/pages/login')
},
handleToAvatar() {
this.$tab.navigateTo('/pages/mine/avatar/index')
},
handleLogout() {
this.$modal.confirm('确定注销并退出系统吗?').then(() => {
this.$store.dispatch('LogOut').then(() => {
this.$tab.reLaunch('/pages/index')
})
})
},
handleHelp() {
this.$tab.navigateTo('/pages/mine/help/index')
},
handleAbout() {
this.$tab.navigateTo('/pages/mine/aboutUs')
},
handleJiaoLiuQun() {
this.$modal.showToast('微信搜索 naidaguo 后,添加好友后拉你进技术交流群')
},
handleBuilding() {
this.$modal.showToast('模块建设中~')
}
},
onPageScroll(e) {
if (e.scrollTop > 0) {
this.bgOpacity = e.scrollTop / 200;
} else {
this.bgOpacity = 0
}
},
}
10 months ago
</script>
<style lang="scss">
10 months ago
page {
background-color: #f5f6f7;
}
.mine-container {
width: 100%;
height: 100%;
.header-section {
color: white;
position: relative;
image {
width: 100%;
height:370rpx
}
.info {
position: absolute;
top: 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;
}
}
}
}
</style>