index.wxml 1.2 KB

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