uinfo.wxml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <wux-toast id="wux-toast" />
  2. <wux-select id="wux-select2" />
  3. <view class="page">
  4. <wux-cell-group title="个人资料">
  5. <wux-cell hover-class="none">
  6. <wux-input id='tel' label="电话" disabled placeholder="电话" bind:change="onChange" value='{{tel}}' controlled />
  7. </wux-cell>
  8. <wux-cell hover-class="none">
  9. <wux-input id='upwd' password label="密码" placeholder="密码" bind:change="onChange" value='{{upwd}}' controlled />
  10. </wux-cell>
  11. <wux-cell hover-class="none">
  12. <wux-input id='name' label="姓名" placeholder="姓名" bind:change="onChange" value='{{name}}' controlled />
  13. </wux-cell>
  14. <wux-cell title="个人喜好" extra="{{ title2 }}" bind:click="onClick2"></wux-cell>
  15. </wux-cell-group>
  16. <view style="padding-left:25rpx;padding-right:25rpx;">
  17. <wux-button bindtap="saveUser" block type="balanced">提交</wux-button>
  18. </view>
  19. </view>