user-edit.wxml 864 B

1234567891011121314151617
  1. <!--module/user/pages/user-edit/user-edit.wxml-->
  2. <wxs src="../../../../core/wxs/dictionary.wxs" module="dictionary" />
  3. <t-navbar title="完善信息" left-arrow />
  4. <scroll-view class="page-scroll__container" type="list" scroll-y style="{{containerStyle}}">
  5. <form bindsubmit="onSubmit">
  6. <!-- <t-cell t-class="cell-border-gradient" title="手机号" note="{{model['phone']}}" /> -->
  7. <t-cell title="姓名" note="{{model['name']}}" />
  8. <t-cell title="身份证号" note="{{model['cardno']}}" />
  9. <t-cell title="年龄" note="{{model['age']}}岁" />
  10. <t-cell title="性别" note="{{dictionary.label($dictionaries, 'sys_user_sex', model['sex'])}}" />
  11. <user-data-edit model="{{model}}" dirty="{{dirty}}"></user-data-edit>
  12. <form-button block index="1" id="submitBtn"></form-button>
  13. </form>
  14. </scroll-view>
  15. <t-message id="{{$messageId}}" />