12345678910111213141516171819 |
- <!--nova-werun/pages/my/my-profile/index.wxml-->
- <nav type="back" title="完善资料" background-color="{{'#87ceeb'}}" front-color="{{'#ffffff'}}"></nav>
- <view class="all" style="height: {{contentHeight}}rpx;">
- <view class="avatarbox">
- <view class="avatar-box">
- <image class="avatar" src="{{avatar||'https://file-cloud.fmode.cn/qpFbRRSZrO/20241120/63c55i022235020.png?imageView2/1/w/200/h/200'}}" mode="scaleToFill"></image>
- <image class="photo" src="https://file-cloud.fmode.cn/qpFbRRSZrO/20241120/95uip6030022742.png?imageView2/1/w/200/h/200"></image>
- </view>
- </view>
- <van-field value="{{ nickname }}" required clearable label="昵称" placeholder="请输入昵称" bind:click-icon="onClickIcon" />
- <van-field class="field" required model:value="{{ sex }}" readonly maxlength="1" label="性别" bind:tap="showSelect" />
- <van-field value="{{ height }}" required clearable label="身高" type="number" placeholder="请输入身高" bind:blur="getHeight" />
- <van-action-sheet show="{{ show2 }}" actions="{{ actions }}" bind:select="onSelect" />
- <view class="submitbox">
- <view class="submit">提交</view>
- </view>
- </view>
|