Commit 6dacdf55 by 李嘉林

user

parent d32949b4
...@@ -64,6 +64,7 @@ ...@@ -64,6 +64,7 @@
@click="sex_show = true" @click="sex_show = true"
:value="sex_list[userMsg.gender]" :value="sex_list[userMsg.gender]"
is-link is-link
:class="{'noSelect': sex_list[userMsg.gender] == '未设置'}"
/> />
<!-- <div class="covername sex">{{userMsg.gender}}</div> --> <!-- <div class="covername sex">{{userMsg.gender}}</div> -->
<!-- 设置生日 --> <!-- 设置生日 -->
...@@ -74,7 +75,7 @@ ...@@ -74,7 +75,7 @@
:value="userMsg.birth" :value="userMsg.birth"
is-link is-link
/> />
<van-cell v-else title="生日" value="未设置" is-link /> <van-cell class="noSelect" v-else title="生日" value="未设置" is-link />
</div> </div>
<div class="line"></div> <div class="line"></div>
...@@ -88,7 +89,7 @@ ...@@ -88,7 +89,7 @@
> >
<!-- {{ correctTel(userMsg.mobilephone) ? userMsg.mobilephone : "未认证" }} --> <!-- {{ correctTel(userMsg.mobilephone) ? userMsg.mobilephone : "未认证" }} -->
{{mobilephone}} {{mobilephone}}
<van-icon name="arrow" /> <van-icon name="arrow" v-if="!xhyxshopFlag" />
</div> </div>
</div> </div>
</div> </div>
...@@ -162,6 +163,9 @@ export default { ...@@ -162,6 +163,9 @@ export default {
computed: { computed: {
mobilephone() { mobilephone() {
return this.correctTel(this.userMsg.mobilephone) ? this.userMsg.mobilephone : "未认证"; return this.correctTel(this.userMsg.mobilephone) ? this.userMsg.mobilephone : "未认证";
},
xhyxshopFlag() {
return this.$store.state.mixid == "xhyxshop"
} }
}, },
onLoad() { onLoad() {
...@@ -179,6 +183,8 @@ export default { ...@@ -179,6 +183,8 @@ export default {
}, },
methods: { methods: {
toUpdateBindPhone() { toUpdateBindPhone() {
if (this.xhyxshopFlag) return;
// 新华优选不可修改手机号
let _this = this; let _this = this;
if (this.correctTel(this.userMsg.mobilephone)) { if (this.correctTel(this.userMsg.mobilephone)) {
app.$themeToLink({ app.$themeToLink({
...@@ -407,8 +413,8 @@ i { ...@@ -407,8 +413,8 @@ i {
font-size: 18px; font-size: 18px;
} }
.font15 { .font15 {
font-size: 15px; font-size: 14px;
color: #929292; color: #333;
} }
.userInfo { .userInfo {
.personal-top { .personal-top {
...@@ -450,6 +456,8 @@ i { ...@@ -450,6 +456,8 @@ i {
color: #333; color: #333;
} }
.van-cell__value { .van-cell__value {
font-size: 14px;
color: #333;
} }
.van-cell:not(:last-child)::after { .van-cell:not(:last-child)::after {
right: 15px; right: 15px;
...@@ -467,11 +475,21 @@ i { ...@@ -467,11 +475,21 @@ i {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
.van-cell__title{ .van-cell__title,.van-cell__value{
span{ font-size: 14px;
font-size: 14px; color: #333;
color: #333; }
} }
/deep/.noSelect{
.van-cell__value{
font-size: 14px;
color: #999;
}
}
.shuru{
/deep/.van-field__label{
font-size: 14px;
color: #333;
} }
} }
.covername { .covername {
...@@ -516,8 +534,4 @@ i { ...@@ -516,8 +534,4 @@ i {
text-align: center; text-align: center;
} }
} }
/deep/ .van-cell__title,
.van-cell__value {
font-size: 14px;
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment