204 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			Vue
		
	
			
		
		
	
	
			204 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			Vue
		
	
<template>
 | 
						|
	<view class="mine-container" :style="{height: `${windowHeight}px`}">
 | 
						|
		<!--顶部个人信息栏-->
 | 
						|
		<view class="header-section bg-gradual-green">
 | 
						|
			<view class="flex padding justify-between">
 | 
						|
				<view class="flex align-center">
 | 
						|
					<view v-if="!avatar" class="cu-avatar xl round bg-white">
 | 
						|
						<view class="iconfont icon-people text-gray icon"></view>
 | 
						|
					</view>
 | 
						|
					<image v-if="avatar" @click="handleToAvatar" :src="avatar" class="cu-avatar xl round"
 | 
						|
						mode="widthFix">
 | 
						|
					</image>
 | 
						|
					<view v-if="!name" @click="handleToLogin" class="login-tip">
 | 
						|
						点击登录
 | 
						|
					</view>
 | 
						|
					<view v-if="name" @click="handleToInfo" class="user-info">
 | 
						|
						<view class="u_title">
 | 
						|
							用户名:{{ name }}
 | 
						|
						</view>
 | 
						|
					</view>
 | 
						|
				</view>
 | 
						|
				<view @click="handleToInfo" class="flex align-center">
 | 
						|
					<text>个人信息</text>
 | 
						|
					<view class="iconfont icon-right"></view>
 | 
						|
				</view>
 | 
						|
			</view>
 | 
						|
		</view>
 | 
						|
 | 
						|
		<view class="content-section">
 | 
						|
			<view class="mine-actions grid col-1 text-center">
 | 
						|
				<!-- <view class="action-item" @click="handleJiaoLiuQun">
 | 
						|
          <view class="iconfont icon-friendfill text-pink icon"></view>
 | 
						|
          <text class="text">交流群</text>
 | 
						|
        </view> -->
 | 
						|
				<view class="action-item" @click="handleBuilding">
 | 
						|
					<view class="iconfont icon-community text-blue icon"></view>
 | 
						|
					<text class="text">{{warehouseinfo}}</text>
 | 
						|
				</view>
 | 
						|
 
 | 
						|
 
 | 
						|
			</view>
 | 
						|
 | 
						|
			<view class="menu-list">
 | 
						|
			 
 | 
						|
				<view class="list-cell list-cell-arrow" @click="handleHelp">
 | 
						|
					<view class="menu-item-box">
 | 
						|
						<view class="iconfont icon-help menu-icon"></view>
 | 
						|
						<view>常见问题</view>
 | 
						|
					</view>
 | 
						|
				</view>
 | 
						|
				<view class="list-cell list-cell-arrow" @click="handleAbout">
 | 
						|
					<view class="menu-item-box">
 | 
						|
						<view class="iconfont icon-aixin menu-icon"></view>
 | 
						|
						<view>关于我们</view>
 | 
						|
					</view>
 | 
						|
				</view>
 | 
						|
				<view class="list-cell list-cell-arrow" @click="handleToSetting">
 | 
						|
					<view class="menu-item-box">
 | 
						|
						<view class="iconfont icon-setting menu-icon"></view>
 | 
						|
						<view>应用设置</view>
 | 
						|
					</view>
 | 
						|
				</view>
 | 
						|
			</view>
 | 
						|
 | 
						|
			<view class="menu-list round">
 | 
						|
				<view class="list-cell list-cell ">
 | 
						|
					<view class="cu-item item-box">
 | 
						|
						<view class="content text-center" @click="handleLogout">
 | 
						|
							<text class="text-black iconfont  icon-logout menu-icon  xl ">退出登录</text>
 | 
						|
						</view>
 | 
						|
					</view>
 | 
						|
				</view>
 | 
						|
			</view>
 | 
						|
 | 
						|
		</view>
 | 
						|
	</view>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
	import storage from '@/utils/storage'
 | 
						|
 | 
						|
	export default {
 | 
						|
		data() {
 | 
						|
			return {
 | 
						|
				name: this.$store.state.user.name,
 | 
						|
				version: getApp().globalData.config.appInfo.version,
 | 
						|
				warehouse:this.$store.state.user.warehouse, 
 | 
						|
			}
 | 
						|
		},
 | 
						|
		computed: {
 | 
						|
			avatar() {
 | 
						|
				return this.$store.state.user.avatar
 | 
						|
			},
 | 
						|
			windowHeight() {
 | 
						|
				return uni.getSystemInfoSync().windowHeight - 50
 | 
						|
			},
 | 
						|
			warehouseinfo(){
 | 
						|
				if(Array.isArray(this.warehouse) && this.warehouse.length > 0 ){
 | 
						|
					return  '【'+this.warehouse[0].warehouseCode+'】' + this.warehouse[0].warehouseName
 | 
						|
				}
 | 
						|
			}
 | 
						|
		},
 | 
						|
		methods: {
 | 
						|
			handleToInfo() {
 | 
						|
				this.$tab.navigateTo('/pages/mine/info/index')
 | 
						|
			},
 | 
						|
			handleToEditInfo() {
 | 
						|
				this.$tab.navigateTo('/pages/mine/info/edit')
 | 
						|
			},
 | 
						|
			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/about/index')
 | 
						|
			},
 | 
						|
			handleJiaoLiuQun() {
 | 
						|
				// this.$modal.showToast('模块建设中~')
 | 
						|
			},
 | 
						|
			handleBuilding() {
 | 
						|
				// this.$modal.showToast('模块建设中~')
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss">
 | 
						|
	page {
 | 
						|
		background-color: #f5f6f7;
 | 
						|
	}
 | 
						|
 | 
						|
	.mine-container {
 | 
						|
		width: 100%;
 | 
						|
		height: 100%;
 | 
						|
 | 
						|
 | 
						|
		.header-section {
 | 
						|
			padding: 15px 15px 45px 15px;
 | 
						|
			background-color: #3c96f3;
 | 
						|
			color: white;
 | 
						|
 | 
						|
			.login-tip {
 | 
						|
				font-size: 18px;
 | 
						|
				margin-left: 10px;
 | 
						|
			}
 | 
						|
 | 
						|
			.cu-avatar {
 | 
						|
				border: 2px solid #eaeaea;
 | 
						|
 | 
						|
				.icon {
 | 
						|
					font-size: 40px;
 | 
						|
				}
 | 
						|
			}
 | 
						|
 | 
						|
			.user-info {
 | 
						|
				margin-left: 15px;
 | 
						|
 | 
						|
				.u_title {
 | 
						|
					font-size: 18px;
 | 
						|
					line-height: 30px;
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		.content-section {
 | 
						|
			position: relative;
 | 
						|
			top: -50px;
 | 
						|
 | 
						|
			.mine-actions {
 | 
						|
				margin: 15px 15px;
 | 
						|
				padding: 20px 0px;
 | 
						|
				border-radius: 8px;
 | 
						|
				background-color: white;
 | 
						|
 | 
						|
				.action-item {
 | 
						|
					.icon {
 | 
						|
						font-size: 28px;
 | 
						|
					}
 | 
						|
 | 
						|
					.text {
 | 
						|
						display: block;
 | 
						|
						font-size: 13px;
 | 
						|
						margin: 8px 0px;
 | 
						|
					}
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
</style> |