1234567891011121314151617181920212223242526272829303132333435 |
- <wux-toast id="wux-toast" />
- <wux-select id="wux-select2" />
- <view class="page">
-
-
- <wux-cell-group title="个人资料">
- <wux-cell hover-class="none">
- <wux-input id='tel' label="电话" disabled placeholder="电话" bind:change="onChange" value='{{tel}}' controlled />
- </wux-cell>
- <wux-cell hover-class="none">
- <wux-input id='upwd' password label="密码" placeholder="密码" bind:change="onChange" value='{{upwd}}' controlled />
- </wux-cell>
- <wux-cell hover-class="none">
- <wux-input id='name' label="姓名" placeholder="姓名" bind:change="onChange" value='{{name}}' controlled />
- </wux-cell>
-
-
- <wux-cell title="个人喜好" extra="{{ title2 }}" bind:click="onClick2"></wux-cell>
-
- </wux-cell-group>
-
- <view style="padding-left:25rpx;padding-right:25rpx;">
- <wux-button bindtap="saveUser" block type="balanced">提交</wux-button>
- </view>
- </view>
|