fixed bg adout login

This commit is contained in:
cmxdd
2020-08-10 11:27:06 +08:00
parent de2b7fe26d
commit 959afc776a
3 changed files with 18 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
<template>
<view class="user">
<view class="head" @click="toOthersPage('info')">
<view class="info">
<view class="info" :key="num">
<image :src="info.member_avatar"></image>
<view class="name">
<text>{{info.member_nickname==null?"新用户":info.member_nickname}}</text>
@@ -31,7 +31,8 @@ export default {
name:"user",
data() {
return {
info:{}
info:{},
num:0
}
},
onLoad() {
@@ -52,6 +53,7 @@ export default {
});
} else {
this.info = res.data.memberInfo
this.num++
}
});
},