ucenter.nvue 3.9 KB
Newer Older
芊里 已提交
1 2 3
<template>
	<view class="center">
		<view class="logo" @click="goLogin" :hover-class="!login ? 'logo-hover' : ''">
芊里 已提交
4
			<image class="logo-img" :src="login ? (userInfo.avatar || avatarUrl) :avatarUrl"></image>
芊里 已提交
5 6 7 8 9 10 11
			<view class="logo-title">
				<text class="uer-name">Hi,{{login ? userInfo.username : '您未登录'}}</text>
				<text class="go-login-navigat-arrow navigat-arrow" v-if="!login">&#xe65e;</text>
			</view>
		</view>
		<uni-list class="center-list">
			<template v-for="(sublist , index) in ucenterList">
芊里 已提交
12 13
				<uni-list-item :title="item.title" :rightText="item.rightText" :to="item.to"
					v-for="(item, subIndex) in sublist" :key="(index + '_' + subIndex)" @click="ucenterListClick(item)" :clickable="true"></uni-list-item>
芊里 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
				<!-- #ifdef APP-NVUE -->
				<cell class="center-list-cell"></cell>
				<!-- #endif -->
				<!-- #ifndef APP-PLUS -->
				<view class="center-list-cell"></view>
				<!-- #endif -->
			</template>
		</uni-list>
	</view>
</template>

<script>
	import {
		mapGetters,
		mapMutations
	} from 'vuex';
芊里 已提交
30
	import checkUpdate from '@/uni_modules/uni-upgrade-center-app/utils/check-update';
芊里 已提交
31 32 33 34 35 36 37 38 39 40 41
	export default {
		data() {
			return {
				avatarUrl: '/static/logo.png',
				ucenterList: [
					[{
						title: '阅读过的文章'
					}, {
						title: '我的积分'
					}],
					[{
芊里 已提交
42 43
						title: '政策与协议',
						to:'/pages/agree-list/agree-list'
芊里 已提交
44 45
					}, {
						title: '关于',
芊里 已提交
46
						to: '/pages/about/about'
芊里 已提交
47 48 49 50
					},
					//#ifdef APP-PLUS
					{
						title: '检查更新',
芊里 已提交
51 52
						rightText: `V${getApp().appVersion.finall.version}_${getApp().appVersion.finall.versionCode}`,
						event:'checkVersion'
芊里 已提交
53 54 55 56 57
					}
					//#endif
					],
					[
						{
芊里 已提交
58 59
							title: '反馈',
							to:'/pages/uni-feedback/uni-feedback'
芊里 已提交
60 61
						},{
							title: '设置',
芊里 已提交
62
							to: '/pages/settings/settings'
芊里 已提交
63 64 65 66 67 68 69 70 71 72 73 74
						}
					]
				]
			}
		},
		computed: {
			...mapGetters({
				userInfo: 'user/info',
				login: 'user/hasLogin'
			})
		},
		onReady() {
芊里 已提交
75
			
芊里 已提交
76 77 78 79 80 81 82 83
		},
		onShow(){
			console.log(this.userInfo);
		},
		methods: {
			...mapMutations({
				logout:'user/logout'
			}),
芊里 已提交
84 85 86 87 88 89 90 91 92 93 94
			/**
			 * 个人中心项目列表点击事件
			 */
			ucenterListClick(item){
				if(!item.to && item.event){
					this[item.event]();
				}
			},
			checkVersion(){
				checkUpdate();
			},
芊里 已提交
95 96 97 98 99 100 101 102 103
			goLogin() {
				if (!this.login) {
					console.log('点击前往登录');
					uni.navigateTo({
						url: '../login/login'
					});
				}
				else {
					console.log('点击编辑信息');
芊里 已提交
104 105 106
					uni.navigateTo({
						url:'./edit/edit'
					})
芊里 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
				}
			}
		}
	}
</script>

<style>
	/* #ifndef APP-PLUS-NVUE */
	@font-face {
		font-family: texticons;
		font-weight: normal;
		font-style: normal;
		src: url('~@/static/text-icon.ttf') format('truetype');
	}

	page {
		background-color: #f8f8f8;
	}

	/* #endif*/

	/* 解决头条小程序字体图标不显示问题,因为头条运行时自动插入了span标签,且有全局字体 */
	/* #ifdef MP-TOUTIAO */
	text :not(view) {
		font-family: texticons;
	}

	/* #endif */

	.center {
		flex: 1;
		flex-direction: column;
		background-color: #f8f8f8;
	}

	.logo {
		width: 750upx;
		height: 240upx;
		padding: 20upx;
		background-color: #2F85FC;
		flex-direction: row;
		align-items: center;
	}

	.logo-hover {
		opacity: 0.8;
	}

	.logo-img {
		width: 150upx;
		height: 150upx;
		border-radius: 150upx;
	}

	.logo-title {
		height: 150upx;
		flex: 1;
		align-items: center;
		justify-content: space-between;
		flex-direction: row;
		margin-left: 20upx;
	}

	.uer-name {
		height: 60upx;
		line-height: 60upx;
		font-size: 38upx;
		color: #FFFFFF;
	}

	.go-login-navigat-arrow {
		font-size: 38upx;
		color: #FFFFFF;
	}

	.navigat-arrow {
		height: 90upx;
		width: 40upx;
		line-height: 90upx;
		font-size: 34upx;
		color: #555;
		text-align: right;
		font-family: texticons;
	}

	.center-list {
		background-color: #f9f9f9;
	}

	.center-list-cell {
		width: 750rpx;
		height: 40rpx;
	}
</style>