12345678910111213141516171819202122232425262728293031 |
- <ion-view view-title="个人信息" >
- <ion-content>
- <div class="list">
- <a class="item item-avatar-right">
- <img src="../../img/demo/head5.jpg" />
- <h2>头像</h2>
- <p style="font-size:12px">点击上传</p>
- </a>
- <label class="item item-input item-select item-select-width">
- <span class="input-label">
- 性别
- </span>
- <select>
- <option>男</option>
- <option>女</option>
- </select>
- </label>
- <label class="item item-input ">
- <input type="text" placeholder="个性签名">
- </label>
- <div class="item">
- 159286****0809
- </div>
- </div>
- <div class="padding">
- <button class="button button-full button-calm">
- 保存
- </button>
- </div>
- </ion-content>
- </ion-view>
|