This article mainly introduces the relevant information of the WeChat applet custom message prompt box, wx.showToast(OBJECT) interface call, to implement the modified function, friends in need can refer to
WeChat Mini program custom message prompt box
Requirement description:
wx.showToast(OBJECT) interface call, but icon and image are not required. Even if the image is empty, there is a placeholder. In fact, it only wants to output custom text content.
Screenshot of the effect:
123456 123456 123456 123456 123456 {{text}}
/* index.wxss */ .showModule { /* 用样式控制隐藏 visibility: hidden;*//* flex 布局 */ display: flex; justify-content: center; align-items: center; /* 生成绝对定位的元素,相对于浏览器窗口进行定位 */ position: fixed; /* 如果 height,width 不变的情况下,left,top 不用修改 */ left: 35%; top: 40%; height: 20vh; width: 30vw; /* 不透明 */ opacity: 0.99; background-color: #7b7b7b; /* 圆角 */ border-radius: 30rpx; } .showModule .text { /* flex 布局 */ display: flex; /* 字体加粗 */ font-weight: bold; color: white; font-size: 13pt; font-family: "微软雅黑"; /* Helvetica, Arial, Hiragino Sans GB, Source Han Sans CN, PingFang SC, Roboto, 微软雅黑, Heiti SC, Microsoft Yahei, sans-serif; */ }
//index.js //获取应用实例 var app = getApp() Page({ data: { text: "弹窗内容", isShow: false }, onShow() { this.setData({ text: "用户取消支付", isShow: true }) } })
The above is the detailed content of Mini program custom message box. For more information, please follow other related articles on the PHP Chinese website!