|
@@ -44,14 +44,34 @@
|
|
|
<u-form-item required="true"><u-input v-model="form.sex" type="select" placeholder="我的子女状况"/></u-form-item>
|
|
|
</view>
|
|
|
|
|
|
- <view class="form-tit">
|
|
|
+ <view class="form-tit" style="margin-top: 36px;">
|
|
|
自我评价
|
|
|
</view>
|
|
|
<view class="jpLogin-textarea">
|
|
|
<u-form-item>
|
|
|
- <u-input v-model="form.value" type="textarea" placeholder="" />
|
|
|
+ <u-input v-model="form.value" type="textarea" height="140" placeholder="" />
|
|
|
</u-form-item>
|
|
|
</view>
|
|
|
+
|
|
|
+ <view class="form-tit" style="margin-top: 36px;">
|
|
|
+ 选中我的兴趣爱好(可多选)
|
|
|
+ </view>
|
|
|
+ <view class="jpLogin-interest">
|
|
|
+ <view class="interest-item active">摄影</view>
|
|
|
+ <view class="interest-item">烹饪</view>
|
|
|
+ <view class="interest-item">健身</view>
|
|
|
+ <view class="interest-item active">看电影</view>
|
|
|
+ <view class="interest-item">旅行</view>
|
|
|
+ <view class="interest-item">打游戏</view>
|
|
|
+ <view class="interest-item">修身养性</view>
|
|
|
+ <view class="interest-item">摄影</view>
|
|
|
+ <view class="interest-item">烹饪</view>
|
|
|
+ <view class="interest-item">健身</view>
|
|
|
+ <view class="interest-item">看电影</view>
|
|
|
+ <view class="interest-item">旅行</view>
|
|
|
+ <view class="interest-item">打游戏</view>
|
|
|
+ <view class="interest-item">修身养性</view>
|
|
|
+ </view>
|
|
|
</u-form>
|
|
|
</view>
|
|
|
<view style="margin-top: 60px;">
|
|
@@ -83,9 +103,24 @@
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+ .jpLogin-interest{
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ .interest-item{
|
|
|
+ padding: 4px 10px;
|
|
|
+ background-color: #E5E7EA;
|
|
|
+ border-radius: 4px;
|
|
|
+ margin-right: 10px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ .active{
|
|
|
+ background-color: #FFC1BC;
|
|
|
+ }
|
|
|
+ }
|
|
|
.form-tit{
|
|
|
color: #999;
|
|
|
margin-bottom: 8px;
|
|
|
+
|
|
|
}
|
|
|
.jpLogin-textarea{
|
|
|
background: #fff;
|