小程序模板网

解决小程序点击弹出模态框,子父级都有滚动条问题

发布时间:2018-05-05 14:45 所属栏目:小程序开发教程

思考步骤: 

1.使用作为根节点包裹所有view,并动态绑定scroll-view的scroll-y属性,自定义它的高度,var calc = clientHeight * rpxR-100; “-100”是因为我底部有选项卡,你若不需要就不用减; 

2.点击button按钮触发showModel事件,子级内容显示,更改isScroll的值为false,关闭弹窗的点击事件中,更改isScroll的值为true

贴出主要代码 :
wxml文件

 

					
  1. <view class="cusEdit">
  2. <scroll-view scroll-y="true" style="height:{{winHeight}}rpx">
  3.  
  4. <view class="form-group first">
  5. <ul class="basicMsg">
  6. <li data-type="text" class="">
  7. <view class="li-inner ">
  8. <span class="k">姓名</span> <span class="v"><input name="custName" placeholder="请输入姓名" type="text" ></input></span>
  9. </view>
  10. </li>
  11. <li data-type="text" class="">
  12. <view class="li-inner ">
  13. <span class="k">意向级别</span> <span class="v"><button name="custName" placeholder="请选择" type="text" bindtap='showModel'>请选择</button></span>
  14. </view>
  15. </li>
  16. </ul>
  17. </view>
  18. </scroll-view>
  19. //这个是子级内容
  20. <scroll-view>
  21. <view id='cientWill' class="hide{{showView?'show':''}}">
  22. </view>
  23. </scroll-view>
  24. </view>

css文件

 

					
  1. ::-webkit-scrollbar{
  2. width: 0;
  3. height: 0;
  4. color: transparent;
  5. }
  6. .hide{
  7. display: none
  8. }
  9. .show{
  10. display: block;
  11. }
  12. scroll-view{
  13. width:100%;
  14. height:100%;
  15. }
  16. #cientWill{
  17. position: fixed;
  18. width: 750rpx;
  19. height: 100vh;
  20. overflow: auto;
  21. padding: 0 20rpx;
  22. top: 0;
  23. left: 0;
  24. background:#fff;
  25. z-index: 999;
  26. }

js文件

 
 
 


易优小程序(企业版)+灵活api+前后代码开源 码云仓库:starfork
本文地址:https://www.eyoucms.com/wxmini/doc/course/24252.html 复制链接 如需定制请联系易优客服咨询:800182392 点击咨询
QQ在线咨询