This commit is contained in:
曹辉 2023-03-03 13:40:17 +08:00
parent 47a5797e61
commit 90d2d8914b
3 changed files with 13 additions and 1 deletions

View File

@ -134,7 +134,7 @@
.modify {
position: absolute;
right: 3%;
top:220rpx;
top:250rpx;
font-size:28rpx;
image{
width: 23rpx;

View File

@ -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}}

View File

@ -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: '请审核并同意用户协议',