修改
This commit is contained in:
parent
47a5797e61
commit
90d2d8914b
@ -134,7 +134,7 @@
|
||||
.modify {
|
||||
position: absolute;
|
||||
right: 3%;
|
||||
top:220rpx;
|
||||
top:250rpx;
|
||||
font-size:28rpx;
|
||||
image{
|
||||
width: 23rpx;
|
||||
|
||||
@ -7,6 +7,13 @@
|
||||
<image class="bjimg" src="../../static/userbeijing.png" mode=""></image>
|
||||
<view class="phone" v-if="appPersonallist.patientName">
|
||||
{{appPersonallist.patientName}}
|
||||
<span style='font-size: 32rpx;padding-left: 20rpx;'>
|
||||
{{appPersonallist.age}}岁
|
||||
</span>
|
||||
<span style='font-size: 32rpx;padding-left: 20rpx;'>
|
||||
{{appPersonallist.sex=='MALE'?'男':''}}
|
||||
{{appPersonallist.sex=='FEMALE'?'女':''}}
|
||||
</span>
|
||||
</view>
|
||||
<view class="nickname">
|
||||
{{appPersonallist.phone}}
|
||||
|
||||
@ -249,6 +249,11 @@
|
||||
//上传图片+提交信息
|
||||
data() {
|
||||
var that = this
|
||||
if (that.appPersonallist.sex == '男') {
|
||||
that.appPersonallist.sex = 'MALE';
|
||||
} else if (that.appPersonallist.sex == '女') {
|
||||
that.appPersonallist.sex = 'FEMALE';
|
||||
}
|
||||
if (that.radio == 1) {
|
||||
that.$refs.uToast.show({
|
||||
title: '请审核并同意用户协议',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user