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