<template>
	<view class="main">
		<view class="user">
			<image :src="user.avatar ? ip + user.avatar : '../../static/favicon.png'"></image>
			<view class="con" v-if="user.id || user.token">
				<view v-if="user.doctor" @click="go('/pages/user/info')">
					<view class="nickName">{{ user.nickName }}</view>
					<view class="welcome">{{ user.dept.deptName || '欢迎使用岑溪人民医院小程序' }}</view>
				</view>
				<view v-else @click="go('/pages/user/bind/index')">
					<view class="nickName">
						<text>{{ user.patientName ? user.patientName : '还未绑定就诊人' }}</text>
						<text class="icon" v-if="user.bindUserList && user.bindUserList.length > 1" @click.stop="show = true">&#xe6a7;切换就诊人</text>
					</view>
					<view class="welcome">欢迎使用岑溪人民医院小程序</view>
				</view>
			</view>
			<view class="con" v-else @click="go('/pages/user/info')">
				<view class="nickName">你还没登录</view>
				<view class="welcome">欢迎使用岑溪人民医院小程序</view>
			</view>
			<view class="icon edit">&#xe62b;</view>
		</view>
		<view class="cmd">
			<!--医生菜单-->
			<view v-if="user.doctor">
				<view class="s_item" @click="go('/pages/follow/doctor/index?type=0')">
					<text class="icon ic" style="color: #03a9f4">&#xe716;</text>
					<text class="title">复诊提醒</text>
					<text class="icon arrow">&#xe62b;</text>
				</view>
				<view class="s_item" @click="go('/pages/follow/doctor/index?type=1')">
					<text class="icon ic" style="color: #607d8b">&#xe60b;</text>
					<text class="title">随访记录</text>
					<text class="icon arrow">&#xe62b;</text>
				</view>
				<view class="s_item" @click="go('/pages/knowledge/doctor/index')">
					<text class="icon ic" style="color: #ff5722">&#xe69a;</text>
					<text class="title">我的知识库</text>
					<text class="icon arrow">&#xe62b;</text>
				</view>
			</view>
			<!--患者菜单-->
			<view v-else>
				<view class="s_item" @click="go('/pages/follow/remind')">
					<text class="icon ic" style="color: #03a9f4">&#xe6a3;</text>
					<text class="title">复诊提醒</text>
					<text class="icon arrow">&#xe62b;</text>
				</view>
				<view class="s_item" @click="go('/pages/follow/index')">
					<text class="icon ic" style="color: #607d8b">&#xe60b;</text>
					<text class="title">我的随访</text>
					<text class="icon arrow">&#xe62b;</text>
				</view>
				<view class="s_item" @click="go('/pages/visit/index')">
					<text class="icon ic" style="color: #03a9f4">&#xe685;</text>
					<text class="title">就诊记录</text>
					<text class="icon arrow">&#xe62b;</text>
				</view>
				<view class="s_item" @click="go('/pages/detection/index')">
					<text class="icon ic" style="color: #ff9800">&#xe63a;</text>
					<text class="title">检测报告</text>
					<text class="icon arrow">&#xe62b;</text>
				</view>
			</view>
			<button class="s_item" open-type="share" @click="go('/pages/help/my')" hover-class="none">
				<text class="icon ic" style="color: #f44336">&#xe7c4;</text>
				<text class="title">分享应用</text>
				<text class="icon arrow">&#xe62b;</text>
			</button>
			<button class="s_item" open-type="feedback" @click="go('/pages/help/my')">
				<text class="icon ic" style="color: #4caf50">&#xe62c;</text>
				<text class="title">建议反馈</text>
				<text class="icon arrow">&#xe62b;</text>
			</button>
			<view class="s_item" @click="go('/pages/other/setting')">
				<text class="icon ic" style="color: #9e9e9e">&#xe60f;</text>
				<text class="title">设置</text>
				<text class="icon arrow">&#xe62b;</text>
			</view>
		</view>
		<u-action-sheet round="20" title="切换就诊人" :actions="user.bindUserList" @select="selectClick" cancelText="取消" :show="show" @close="show = false"></u-action-sheet>
	</view>
</template>
<script>
export default {
	data() {
		return {
			ip: this.http.ip,
			user: {},
			show: false
		};
	},
	onShow() {
		/* 		this.user = {
			token: 'eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImI3ZjVlNDYwLThjY2YtNDkxZi1hNTBjLWI1MjQzNDUzNjFkZiJ9.VTDBJ3929h8qGWMZFkfq-dQAkWOptIfQk7f5CaIahgltFV4QACgf3QBabcswisGTMQZaJMkxt5uCzjv3AkN48w'
		};
		uni.setStorageSync('user', this.user); */
		this.user = this.getUser();
		if (this.hasLogin() && !this.user.doctor) {
			this.getUserInfo();
		}
	},
	methods: {
		getUserInfo() {
			this.http.request({
				url: '/app/user/info',
				success: (res) => {
					this.user = res.data.data;
				}
			});
		},
		//切换就诊人
		selectClick(e) {
			uni.showModal({
				title: '提示',
				content: '确定切换就诊人',
				success: (res) => {
					if (res.confirm) {
						this.http.request({
							url: '/app/user/bind/change/' + e.id,
							success: (res) => {
								this.getUserInfo();
							}
						});
					}
				}
			});
		},
		go(url) {
			if (this.hasLogin()) {
				uni.navigateTo({ url: url });
			} else {
				uni.navigateTo({ url: '/pages/user/login' });
			}
		}
	},
	onShareAppMessage: function (res) {
		return {
			title: '岑溪人民医院小程序',
			path: '/pages/index/index',
			imageUrl: '../../static/favicon.png',
			success: (res) => {},
			fail: (res) => {}
		};
	}
};
</script>
<style lang="scss">
.main {
	padding: 5px 15px 25px 15px;
	.user {
		overflow: hidden;
		image {
			float: left;
			width: 60px;
			height: 60px;
			border-radius: 50%;
		}
		.con {
			float: left;
			padding-left: 15px;
			.nickName {
				padding-top: 5px;
				.icon {
					padding-left: 6px;
					font-size: 13px;
					color: $main-color;
				}
			}
			.welcome {
				font-size: 14px;
				padding-top: 5px;
				color: #989898;
			}
		}
		.edit {
			float: right;
			margin-top: 14px;
		}
	}
	button {
		border-radius: 0px;
		line-height: 1;
		font-size: 15px;
	}
}
</style>