WeChatウィジェットをカスタマイズしてモードボックスをイジェクトし、底部のスクロール機能を禁止します。


図:

wxmlコード:

<view class='fix_bottom'>
<view>  </view>
<view>    </view>
<view class='active' bindtap="showDialogBtn">    </view>
</view>

<!--   -->
<!--     -->
<view class="modal-mask" bindtap="hideModal" catchtouchmove="preventTouchMove" wx:if="{{showModal}}"></view>

<view class="modal-dialog" wx:if="{{showModal}}">
<view class="modal-title">    </view>
<view class="modal-content">
<view class="concent_list {{curindex==index? 'active':''}}" wx:for="{{concent_list}}" wx:for-index='index' data-index='{{index}}' bindtap='choose' data-name='{{item}}'>{{item}}</view>
</view>

<view class="modal-footer">
<view class="btn-cancel" bindtap="onCancel" data-status="cancel">  </view>
<view class="btn-confirm" bindtap="onConfirm" data-status="confirm">  </view>
</view>
</view>
wxssコード

.fix_bottom{
width: 100%;
height: 120rpx;
background: #fff;
position: fixed;
bottom: 0;
border-top: 1px solid #ccc;
display: flex;
}

.fix_bottom view{
width: 33.333%;
border-left: 1px solid #ccc;
line-height: 120rpx;
text-align: center;
font-size: 40rpx;
font-weight: bold;
}

.active{
color:#ffffff;
background: -moz-linear-gradient(left, #ff7b68, #ff5462);
 /* Safari 4-5, Chrome 1-9 */
 /* -webkit-gradient(, [, ]?, [, ]? [, ]*) */
 background: -webkit-gradient(linear,left,from(#ff7b68),to(#ff5462));
 /* Safari 5.1+, Chrome 10+ */
 background: -webkit-linear-gradient(left, #ff7b68, #ff5462);
 /* Opera 11.10+ */
 background: -o-linear-gradient(left, #ff7b68, #ff5462);
}

/*     */

.modal-mask {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: #000;
opacity: 0.5;
overflow: hidden;
z-index: 9000;
color: #fff;
}

.modal-dialog {
width: 540rpx;
overflow: hidden;
position: fixed;
top: 40%;
left: 0;
z-index: 9999;
background: #f9f9f9;
margin: -180rpx 105rpx;
border-radius: 36rpx;
}

.modal-title {
height: 100rpx;
line-height: 100rpx;
font-size: 36rpx;
color: #fff;
text-align: center;
background: -moz-linear-gradient(left, #ff7b68, #ff5462);
 /* Safari 4-5, Chrome 1-9 */
 /* -webkit-gradient(, [, ]?, [, ]? [, ]*) */
 background: -webkit-gradient(linear,left,from(#ff7b68),to(#ff5462));
 /* Safari 5.1+, Chrome 10+ */
 background: -webkit-linear-gradient(left, #ff7b68, #ff5462);
 /* Opera 11.10+ */
 background: -o-linear-gradient(left, #ff7b68, #ff5462);
border-bottom: 1px solid #ccc;

}

.modal-content {

}

.concent_list{
width: 100%;
height: 100rpx;
border-bottom: 1px solid #ccc;
line-height: 100rpx;
text-align: center;
}

.modal-footer {
display: flex;
flex-direction: row;
height: 86rpx;
font-size: 34rpx;
line-height: 86rpx;
}

.btn-cancel {
width: 50%;
color: #666;
text-align: center;
border-right: 1px solid #dedede;
}

.btn-confirm {
width: 50%;
color: #ec5300;
text-align: center;
}
jsコード

var value='     '
Page({

/**
*        
*/
data: {
showModal: false,
concent_list:['     ','     ','     ','     '],
curindex:-1
},

/**
*       --      
*/
onLoad: function (options) {

},

/**
*       --      
*/
onShow: function () {
},

/**
*   
*/
showDialogBtn: function () {
this.setData({
showModal: true
})
},

/**
*        
*/
hideModal: function () {
this.setData({
showModal: false
});
},

/**
*            
*/
onCancel: function () {
this.hideModal();
},
/**
*            
*/
onConfirm: function () {
this.hideModal();

})
},

choose:function(e){
var index=e.currentTarget.dataset.index
value = e.currentTarget.dataset.name
console.log(value)
this.setData({
curindex:index
})
}

})
モーダルボックスの表示時に底の部分のスクロールを禁止します。ポップアップ時に底の部分に固定位置を付けます。モーダルボックスの非表示時に固定位置をキャンセルします。
内容小包の要素は幅100%を設定する必要があります。

<view class='diceng_wrap' style='position: {{position}}'>
          
</view>
データの変化:
初期化時:
 position:'atot'は、
モーダルボックスの表示時:
position:'fixed'
モーダルボックスが非表示の場合:
position:'atot'は、
モーダルボックス表示時
締め括りをつける
ここでは、WeChatウィジェットのカスタムポップアップモードボックスの下のスクロール機能を禁止する記事を紹介します。これに関連して、WeChatウィジェットのモードボックスの内容については、以前の記事を検索したり、下記の関連記事を見たりしてください。これからもよろしくお願いします。