文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

微信小程序自定义Dialog弹框

2024-04-02 19:55

关注

本文实例为大家分享了微信小程序自定义Dialog弹框的具体代码,供大家参考,具体内容如下

一、创建组件

1、在根目录下自定义一个components文件夹,用来存放自定义的组件。
2、再针对每一个组件创建一个文件夹,用来存放这个组件相关的文件。

3、在指定组件的文件夹中右键->新建Component创建组件。这样创建的目的是在json文件中添加"component": true,将其声明为一个组件。

下面开始例子:

1、组件页面 index.wxml

<!-- 确认框 -->
<!-- 遮罩层 -->
<view class="dialog-overlay-view" style="width: {{ windowWidth }}px; height: {{ windowHeight }}px; display: {{ show ? 'block' : 'none' }};"></view>

<view class="col-center" style="width: {{ windowWidth }}px; height: {{ windowHeight }}px; display: {{ show ? 'flex' : 'none' }};">
    <view>
        <view class="dialog-content-view">
            <view>
                <text class="dialog-content-text">{{ message }}</text>
            </view>

            <view class="operation-view">
                <view class="operation-col-view" bindtouchend="onCancel">
                    <text class="cancel-text">{{ cancelButtonText }}</text>
                </view>
                <view class="operation-col-view" bindtouchend="onConfirm">
                    <text class="confirm-text">{{ confirmButtonText }}</text>
                </view>
            </view>
        </view>
    </view>
</view>

2、组件样式 index.wxss


.dialog-overlay-view {
    background-color: #000000;
    opacity: 0.5;
    position: fixed;
    z-index: 10;
}
.col-center {
    position: fixed;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.dialog-content-view {
    width: 210px;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 20px 40px;
}
.dialog-content-text {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #454545;
    line-height: 20px;
}

.operation-view {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
}
.operation-col-view {
    height: 36px;
    width: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cancel-text {
    height: 14px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #999999;
    line-height: 14px;
}
.confirm-text {
    height: 14px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #E63719;
    line-height: 14px;
}

3、组件json配置 index.json

{
    "component": true,
    "usingComponents": {}
}

4、组件页面的js index.js

// components/dialog/index.js
Component({
    options: {
        
        styleIsolation: 'isolated'
    },
    
    properties: {
        cancelButtonText: {
            type: String,
            value: '取消'
        },
        confirmButtonText: {
            type: String,
            value: '确定'
        },
        message: {
            type: String,
            value: ''
        },
        show: {
            type: Boolean,
            value: false,
        },
        confirmCallback: null,
        cancelCallback: null,
    },
    
    data: {
        windowWidth: 0,
        windowHeight: 0,
    },
    
    ready: function() {
        var _this = this;
        wx.getSystemInfo({
            success: function(res) {
                _this.setData({
                    windowWidth: res.windowWidth,
                    windowHeight: res.windowHeight,
                });
            }
        });
    },
    
    methods: {
        onConfirm() {
            if (this.properties.confirmCallback) {
                this.properties.confirmCallback();
            }
            this.setData({ show: false });
        },
        onCancel() {
            if (this.properties.cancelCallback) {
                this.properties.cancelCallback();
            }
            this.setData({ show: false });
        },
    }
});

5、组件js dialog.js

const defaultOptions = {
    show: false,
    message: '',
    selector: '#cus-dialog',
    confirmButtonText: '确认',
    cancelButtonText: '取消',
    confirmCallback: null,
    cancelCallback: null,
};
let currentOptions = Object.assign({}, defaultOptions);
function getContext() {
    const pages = getCurrentPages();
    return pages[pages.length - 1];
}
const Dialog = (options) => {
    options = Object.assign(Object.assign({}, currentOptions), options);
    const context = options.context || getContext();
    const dialog = context.selectComponent(options.selector);
    delete options.context;
    delete options.selector;
    if (dialog) {
        dialog.setData(options);
        wx.nextTick(() => {
            dialog.setData({ show: true });
        });
    }
    else {
        console.warn('未找到 cus-dialog 节点,请确认 selector 及 context 是否正确');
    }
};
Dialog.confirm = (options) => Dialog(Object.assign({ showCancelButton: true }, options));
export default Dialog;

6、使用方法

需要用到dialog的页面引入dialog组件:

{
    "usingComponents": {
        "cus-dialog": "../../components/dialog/index"
    }
}

页面加入dialog节点:

<cus-dialog id="cus-dialog"/>

在页面的js中弹出dialog窗口:

//引入dialog组件
import Dialog from '../../components/dialog/dialog';

//在代码中调用
Dialog.confirm({
    message: '弹窗内容',
    selector: '#cus-dialog',
    confirmCallback: function() {
        console.log('确认啦');
    }
});

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯