标题栏掉下来的问题
发布于 5 年前 作者 wcai 16667 次浏览 来自 问答
  • 当前 Bug 的表现(可附上截图)苹果手机上运行会出现这个问题
  • 预期表现
  • 复现路径
  • 提供一个最简复现 Demo
2 回复

这个是什么情况下出现的呢?微信版本是6.7.3?

提供一下代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

wxml:

<!-- 工种 -->

<view class=‘all_all’>

<label class=‘left’>

<text>工种</text>

<text class=‘baizhi’>*</text>

</label>

<view class=‘section’>

<!-- <input name=‘jobtitle’ id=‘jobtitle’ placeholder=‘工种’ placeholder-class=‘input-placeholder’ value=’{{list.jobtitle}}’ ></input> -->

<view class=‘select_box’>

<view class=‘select’ catchtap=‘selectTap’ catchtouchmove=“preventD”>

<text class=‘select_text’>{{selectData_index}}</text>

<image class=‘select_img {{show&&“select_img_rotate”}}’ src=‘cloud://jwen-6fa019.6a77-jwen-6fa019/down.png’></image>

</view>

<view class=‘option_box’ style=‘height:{{show?(selectData.length>5?300:selectData.length*60):0}}rpx;’>

<text class=‘option’ style=’{{index==selectData.length-1&&“border:0;”}}’ wx:for=’{{selectData}}’ wx:key=‘this’ data-index=’{{index}}’ catchtap=‘optionTap’>{{item}}</text>

</view>

</view>

</view>

</view>

<view class=‘all_all’>

<label class=‘left’>工作环境简述

<text class=‘baizhi’>*</text>

</label>

<view class=‘section’>

<input type=‘text’ name=‘WorkEnvironment’ placeholder=‘工作环境简述(小于50个字)’ maxlength=“50” placeholder-class=‘input-placeholder’ value=’{{list.workenvironment}}’ bindblur=‘text11’></input>

</view>

</view>

<view class=‘all_all’>

<label class=‘left’>工作地点

<text class=‘baizhi’>*</text>

</label>

<view class=‘section’>

<input type=‘text’ name=‘WorkSite’ placeholder=‘工作地点’  placeholder-class=‘input-placeholder’ value=’{{address}}’ bindtap=‘address’></input>

</view>

</view>

<view class=‘all_all sttmie’>

<label class=‘left’>

<text>工作时间</text>

<text class=‘baizhi’>*</text>

</label>

<view class=‘mraf’>

<view class=‘moring’>

<label class=‘moringST’>上午</label>

<view class=‘moring-afternoon moring1’>

<picker mode=“time” value="{{moringST}}" name=‘moringST’ bindchange=“bindTimeChangemoringST” bindblur=‘ling’ id=‘moring’>

<view class=“picker”>

{{moringST}}

</view>

</picker>

</view>

<text class=‘fenge’>-</text>

<view class=‘moring-afternoon’>

<picker mode=“time” value="{{moringEN}}" name=‘moringEN’ bindchange=“bindTimeChangemoringEN” bindblur=‘ling’ id=‘afternoon’>

<view class=“picker”>

{{moringEN}}

</view>

</picker>

</view>

</view>

<!-- 下午 -->

<view class=‘afternoon’>

<label class=‘moringST’>上午</label>

<view class=‘moring-afternoon moring1’>

<picker mode=“time” value="{{afternoonST}}" name=‘afternoonST’ start=“2018-08-01” bindchange=“bindTimeChangeafternoonST” bindblur=‘ling’ id=‘afternoonST’>

<view class=“picker”>

{{afternoonST}}

</view>

</picker>

</view>

<text class=‘fenge’>-</text>

<view class=‘moring-afternoon’>

<!-- <label>下午</label> -->

<picker mode=“time” value="{{afternoonEN}}" name=‘afternoonEN’ start=“2018-08-01” bindchange=“bindTimeChangeafternoonEN” bindblur=‘ling’ id=‘afternoonEN’>

<view class=“picker”>

{{afternoonEN}}

</view>

</picker>

</view>

</view>

</view>

</view>

回到顶部