提交 a4960669f91f7c4616770a071f30f6357f2132b6

作者 wangyu
1 个父辈 c2db1b2e

优化

... ... @@ -44,7 +44,11 @@
44 44 <text class='text_left'>受教育期间起</text>
45 45 <text class='text_right_333'>{{datas.education_start}}</text>
46 46 </view>
47   - <view style='height:90rpx;width:100%;clear:both;'>
  47 + <!-- <view style='height:90rpx;width:100%;clear:both;'>
  48 + <text class='text_left'>受教育期间止</text>
  49 + <text class='text_right_333'>{{datas.education_end}}</text>
  50 + </view> -->
  51 + <view wx:if="{{datas.education_end&&datas.education_end.length>1}}" style='height:90rpx;width:100%;clear:both;'>
48 52 <text class='text_left'>教育终止时间</text>
49 53 <text class='text_right_333'>{{datas.education_end}}</text>
50 54 </view>
... ...
... ... @@ -212,7 +212,7 @@
212 212 </view>
213 213 </view>
214 214 <view style='background:#FFF;padding:30rpx' wx:if="{{employee_status=='active'}}">
215   - <view style='line-height:84rpx;text-align:center;font-size:34rpx;color:#fff;background:#357AEB;' id="{{index}}" bindtap='goadd'>
  215 + <view style='line-height:84rpx;text-align:center;font-size:34rpx;color:#fff;background:#357AEB;border-radius:5px;' id="{{index}}" bindtap='goadd'>
216 216 添加
217 217 </view>
218 218 </view>
... ...
... ... @@ -253,7 +253,7 @@ Page({
253 253 wx.createSelectorQuery().select('#flag').boundingClientRect(function(rect) {
254 254 // 使页面滚动到底部
255 255 wx.pageScrollTo({
256   - scrollTop: rect.height + 99999,
  256 + scrollTop: rect.height + 9999999,
257 257 duration: 100
258 258 })
259 259 }).exec()
... ...
注册登录 后发表评论