服务器之家:专注于服务器技术及软件下载分享
分类导航

node.js|vue.js|Jquery|angularjs|React|json|js教程|

服务器之家 - 编程语言 - JavaScript - js教程 - 微信小程序自定义modal弹窗组件的方法详解

微信小程序自定义modal弹窗组件的方法详解

2021-12-15 15:32遇见小美好 js教程

这篇文章主要给大家介绍了关于微信小程序自定义modal弹窗组件的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

微信小程序开发中官方自带的wx.showmodal,这个弹窗api有时候并不能满足我们的弹窗效果,所以往往需要自定义modal组件。下面我们进行一个自定义modal弹窗组件的开发,并进行组件的引用,组件可自定义底部是一个还是两个按钮。效果如下。

微信小程序自定义modal弹窗组件的方法详解
微信小程序自定义modal弹窗组件的方法详解

首先我们可以在跟目录下创建一个components文件夹存放所有的组件。新建一个modal文件夹,下面新建modal.js、modal.json、modal.wxml、modal.wxss四个文件。

微信小程序自定义modal弹窗组件的方法详解

modal.wxml布局文件:

?
1
2
3
4
5
6
7
8
9
10
11
<view class='modal-mask' wx:if='{{show}}' bindtap='clickmask'>
 <view class='modal-content'>
 <scroll-view scroll-y class='main-content'>
  <slot></slot>
 </scroll-view>
 <view class='modal-footer'>
  <view wx:if='{{!single}}' class='cancel-btn' bindtap='cancel'>取消</view>
  <view class='confirm-btn' bindtap='confirm'>确定 </view>
 </view>
 </view>
</view>

modal.wxml文件中的一些说明:

show变量控制弹窗显示或隐藏状态,clickmask是点击遮罩层的事件,可控制点击遮罩是否隐藏modal弹窗,内容中用scroll-view是为了满足当内容过多时一页显示不全时可以上下滚动浏览的效果(如果内容很少直接用view标签也可以),scroll-y表示允许纵向滚动(如果不需要可以删掉)。****为组件引用时的自定义内容替换掉就好了。single变量控制底部按钮是一个还是两个。cancel点击取消绑定的事件,confirm点击确定绑定的事件。

modal.json文件内容:

?
1
2
3
4
{
 "component": true,
 "usingcomponents": {}
}

modal.json文件内容说明:

“component”: true, 表示这是一个组件文件,usingcomponents用于引用别的组件,这里没引用其他组件空{}就行。

modal.wxss 文件样式

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* components/modal/modal.wxss */
/*遮罩层*/
.modal-mask{
 display: flex;
 justify-content: center;
 align-items: center;
 position: fixed;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
 background-color: rgba(0,0,0,0.5);
 z-index: 999;
}
/*遮罩内容*/
.modal-content{
 display: flex;
 flex-direction: column;
 width: 80%;
 background-color: #fff;
 border-radius: 10rpx;
 padding: 20rpx;
 text-align: center;
}
/*中间内容*/
.main-content{
 flex: 1;
 height: 100%;
 overflow-y: hidden;
 max-height: 80vh; /* 内容高度最高80vh 以免内容太多溢出*/
}
/*底部按钮*/
.modal-footer{
 display: flex;
 flex-direction: row;
 height: 80rpx;
 line-height: 80rpx;
 border-top: 2rpx solid #d2d3d5;
 margin-top: 30rpx;
}
.cancel-btn, .confirm-btn{
 flex: 1;
 height: 100rpx;
 line-height: 100rpx;
 text-align: center;
 font-size: 32rpx;
}
.cancel-btn{
 color: #000;
 border-right: 2rpx solid #d2d3d5;
}
.confirm-btn {
 color: #09ba07
}

以上样式布局根据个人需求自行修改调整即可。

modal.js文件内容

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
component({
 /**
 * 组件的属性列表
 */
 properties: {
 //是否显示modal弹窗
 show: {
  type: boolean,
  value: false
 },
 //控制底部是一个按钮还是两个按钮,默认两个
 single: {
  type: boolean,
  value: false
 }
 },
 
 /**
 * 组件的初始数据
 */
 data: {
 
 },
 
 /**
 * 组件的方法列表
 */
 methods: {
 // 点击modal的回调函数
 clickmask() {
  // 点击modal背景关闭遮罩层,如果不需要注释掉即可
  this.setdata({show: false})
 },
 // 点击取消按钮的回调函数
 cancel() {
  this.setdata({ show: false })
  this.triggerevent('cancel') //triggerevent触发事件
 },
 // 点击确定按钮的回调函数
 confirm() {
  this.setdata({ show: false })
  this.triggerevent('confirm')
 }
 }
})

到此为止,组件已经定义好了。下面我们可以在其他页面引用这个组件了。比如我在home这个页面引用这个自定义modal弹窗。

微信小程序自定义modal弹窗组件的方法详解

首先在home.json文件中引用组件:

home.json文件内容如下:

?
1
2
3
4
5
{
    "usingcomponents": {
        "modalview": "../../components/modal/modal"
    }
}

这里modalview为modal弹窗的自定义标签,可随便定义。

接着,在home.wxml中将modalview标签添加到你想要显示的位置。例如:

home.wxml文件内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
<view>
 <!-- modal弹窗-->
 <modalview show="{{showmodal}}" bindcancel="modalcancel" bindconfirm='modalconfirm' single='{{single}}'>
 <view class='modal-content'>
  <scroll-view scroll-y class='main-content'>
  <view>这里面可替换成你想显示的其他内容</view>
  <view>这里面可替换成你想显示的其他内容</view>
  <text>这里面可替换成你想显示的其他内容</text>
  </scroll-view>
 </view>
 </modalview>
</view>

home.js文件内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
page({
 
 /**
 * 页面的初始数据
 */
 data: {
 showmodal: true, // 显示modal弹窗
 single: false // false 只显示一个按钮,如果想显示两个改为true即可
 },
 
 /**
 * 生命周期函数--监听页面加载
 */
 onload: function (options) {
 
 },
 // 点击取消按钮的回调函数
 modalcancel(e) {
 // 这里面处理点击取消按钮业务逻辑
 console.log('点击了取消')
 },
 // 点击确定按钮的回调函数
 modalconfirm(e) {
 // 这里面处理点击确定按钮业务逻辑
 console.log('点击了确定')
 }
})

在js文件中定义showmodal控制modal弹窗的显示状态,single设置为false 表示只显示一个按钮

微信小程序自定义modal弹窗组件的方法详解

如果想显示两个按钮将false改为true即可,如下效果:

微信小程序自定义modal弹窗组件的方法详解

两个函数modalcancel和modalconfirm用于处理点击取消按钮业务逻辑

和处理点击确定按钮业务逻辑。比如我这里点击了确认按钮可看到控制台打印出了“点击了确定”。

微信小程序自定义modal弹窗组件的方法详解

好了,微信小程序一个自定义modal弹窗的组件封装和引用方法就这么搞定了o(∩_∩)o~

到此这篇关于微信小程序自定义modal弹窗组件的文章就介绍到这了,更多相关微信小程序自定义modal弹窗组件内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_37268201/article/details/85252318

延伸 · 阅读

精彩推荐