|
@@ -1,55 +1,8 @@
|
|
<ion-view view-title="个人信息" >
|
|
<ion-view view-title="个人信息" >
|
|
<ion-content>
|
|
<ion-content>
|
|
-<<<<<<< HEAD
|
|
|
|
- <div class="list">
|
|
|
|
- <a class="item item-avatar-right" ng-click="setAvator()">
|
|
|
|
- <img src="img/demo/head5.jpg" />
|
|
|
|
- <h2>头像</h2>
|
|
|
|
- <p style="font-size:12px">点击上传</p>
|
|
|
|
- </a>
|
|
|
|
- <div class="item">
|
|
|
|
- <span class="fl">
|
|
|
|
- 绑定手机
|
|
|
|
- </span>
|
|
|
|
- <i style="float:right" class="ng-binding">159****0809</i>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
- <label class="item item-input item-select item-select-width">
|
|
|
|
- <span class="input-label">
|
|
|
|
- 性别
|
|
|
|
- </span>
|
|
|
|
- <select name="sex">
|
|
|
|
- <option>男</option>
|
|
|
|
- <option>女</option>
|
|
|
|
- </select>
|
|
|
|
- </label>
|
|
|
|
- <label class="item item-input ">
|
|
|
|
- <span class="input-label">个性签名</span>
|
|
|
|
- <input name="signture" type="text" placeholder="请输入">
|
|
|
|
- </label>
|
|
|
|
- <label class="item item-input item-select item-select-width">
|
|
|
|
- <span class="input-label">
|
|
|
|
- 情感状态
|
|
|
|
- </span>
|
|
|
|
- <select name="emotion">
|
|
|
|
- <option>未婚</option>
|
|
|
|
- <option>已婚</option>
|
|
|
|
- </select>
|
|
|
|
- </label>
|
|
|
|
-
|
|
|
|
- <label class="item item-input ">
|
|
|
|
- <span class="input-label">职业</span>
|
|
|
|
- <input name="job" type="text" placeholder="请输入">
|
|
|
|
- </label>
|
|
|
|
- <label class="item item-input ">
|
|
|
|
- <span class="input-label">身高</span>
|
|
|
|
- <input name="tail" type="text" placeholder="请输入(单位cm)">
|
|
|
|
- </label>
|
|
|
|
- </div>
|
|
|
|
-=======
|
|
|
|
<div class="list">
|
|
<div class="list">
|
|
<a class="item item-avatar-right" ng-click="setAvator()">
|
|
<a class="item item-avatar-right" ng-click="setAvator()">
|
|
- <img src="img/demo/head5.jpg" />
|
|
|
|
|
|
+ <img src="img/demo/head5.jpg" ng-model="vm.pic"/>
|
|
<h2>头像</h2>
|
|
<h2>头像</h2>
|
|
<p style="font-size:12px">点击上传</p>
|
|
<p style="font-size:12px">点击上传</p>
|
|
</a>
|
|
</a>
|
|
@@ -64,20 +17,20 @@
|
|
<span class="input-label">
|
|
<span class="input-label">
|
|
性别
|
|
性别
|
|
</span>
|
|
</span>
|
|
- <select name="sex">
|
|
|
|
|
|
+ <select name="sex" ng-model="vm.sex">
|
|
<option>男</option>
|
|
<option>男</option>
|
|
<option>女</option>
|
|
<option>女</option>
|
|
</select>
|
|
</select>
|
|
</label>
|
|
</label>
|
|
<label class="item item-input ">
|
|
<label class="item item-input ">
|
|
<span class="input-label">个性签名</span>
|
|
<span class="input-label">个性签名</span>
|
|
- <input name="signture" type="text" placeholder="请输入">
|
|
|
|
|
|
+ <input name="signture" type="text" placeholder="请输入" ng-model="vm.signture">
|
|
</label>
|
|
</label>
|
|
<label class="item item-input item-select item-select-width">
|
|
<label class="item item-input item-select item-select-width">
|
|
<span class="input-label">
|
|
<span class="input-label">
|
|
情感状态
|
|
情感状态
|
|
</span>
|
|
</span>
|
|
- <select name="emotion">
|
|
|
|
|
|
+ <select name="emotion" ng-model="vm.emotion">
|
|
<option>未婚</option>
|
|
<option>未婚</option>
|
|
<option>已婚</option>
|
|
<option>已婚</option>
|
|
</select>
|
|
</select>
|
|
@@ -85,16 +38,15 @@
|
|
|
|
|
|
<label class="item item-input ">
|
|
<label class="item item-input ">
|
|
<span class="input-label">职业</span>
|
|
<span class="input-label">职业</span>
|
|
- <input name="job" type="text" placeholder="请输入">
|
|
|
|
|
|
+ <input name="job" type="text" placeholder="请输入" ng-model="vm.job">
|
|
</label>
|
|
</label>
|
|
<label class="item item-input ">
|
|
<label class="item item-input ">
|
|
<span class="input-label">身高</span>
|
|
<span class="input-label">身高</span>
|
|
- <input name="tail" type="text" placeholder="请输入(单位cm)">
|
|
|
|
|
|
+ <input name="tail" type="text" placeholder="请输入(单位cm)" ng-model="vm.tall">
|
|
</label>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
->>>>>>> 6206a0f6e0cf3505451a08cfa0521969e3fd9aeb
|
|
|
|
<div class="padding">
|
|
<div class="padding">
|
|
- <button class="button button-full button-calm">
|
|
|
|
|
|
+ <button class="button button-full button-calm" ng-click="saveMaterial()">
|
|
保存
|
|
保存
|
|
</button>
|
|
</button>
|
|
</div>
|
|
</div>
|