当前位置:   article > 正文

微信小程序 自定义弹框组件_小程序 弹窗自定义内容

小程序 弹窗自定义内容

话不多说直接上代码

目录

1、wxml

2、js

3、wxss

4、json

5、效果展示(具体内容可以自定义)


1、wxml

  1. <!--pages/components/confirmBox/confirmBox.wxml-->
  2. <wxs src="../../../filter/urlFilter.wxs" module="filter" />
  3. <view class="confirmBox_warp" style="{{opt.wrapStyle}}" wx:if="{{isShow}}">
  4. <view class="count" style="width:{{opt.widths?opt.widths:'600'}}rpx">
  5. <view style="" class="paddClass {{opt.showCancel || opt.showConfirm? 'paddingNo': ''}}">
  6. <!-- 关闭按钮 -->
  7. <view class="confirm_close_cont" bindtap="closeConfirm" wx:if="{{!opt.close}}">
  8. <image class="confirm_close" mode="widthFix" bindtap="hide" src="{{filter.imgFullPath('/images/icon-close.png')}}"></image>
  9. </view>
  10. <!-- header -->
  11. <view class="headers" style="{{opt.headerStyle}}" wx:if="{{opt.header}}">{{opt.header}}</view>
  12. <view class="body">
  13. <slot name="top"></slot>
  14. <slot name="center"></slot>
  15. <slot name="bottom"></slot>
  16. </view>
  17. </view>
  18. <view class="footer" style="{{opt.footerStyle}}" wx:if="{{opt.showCancel || opt.showConfirm}}">
  19. <view class="li" wx:if="{{opt.showCancel && !opt.showCancelContact}}" bindtap="cancelCb" style="{{opt.cancelStyle}}">{{opt.cancelText}}</view>
  20. <view class="li" wx:if="{{opt.showCancelContact}}" style="{{opt.cancelStyle}}">
  21. <button class="contactBtn" open-type="contact">{{opt.cancelText}}</button>
  22. </view>
  23. <view class="li" wx:if="{{opt.showConfirm && !opt.showConfirmContact}}" bindtap="confirmCb" style="{{opt.confirmStyle}}">{{opt.confirmText}}</view>
  24. <view class="li" wx:if="{{opt.showConfirmContact}}" style="{{opt.confirmStyle}}">
  25. <button class="contactBtn" open-type="contact">{{opt.confirmText}}</button>
  26. </view>
  27. </view>
  28. </view>
  29. </view>

2、js

  1. // pages/components/confirmBox/confirmBox.js
  2. Component({
  3. options: {
  4. multipleSlots: true // 允许使用插槽
  5. },
  6. /**
  7. * 组件的属性列表
  8. */
  9. properties: {
  10. isShow:{
  11. type:Boolean,
  12. value:false
  13. },
  14. opt:{
  15. type:Object,
  16. value:{
  17. wrapStyle: '',
  18. widths:'',
  19. close:false, //默认显示关闭按钮
  20. header:'',
  21. showCancel: false,
  22. showCancelContact: false,
  23. showConfirmContact: false,
  24. showConfirm: false,
  25. cancelText: '取消',
  26. confirmText: '确定',
  27. confirmStyle: '',
  28. cancelStyle: ''
  29. },
  30. observer:function(newVal,oldVal){
  31. this.data.opt = {...oldVal,...newVal}
  32. this.setData({
  33. opt:this.data.opt
  34. })
  35. }
  36. }
  37. },
  38. /**
  39. * 组件的初始数据
  40. */
  41. data: {
  42. },
  43. /**
  44. * 组件的方法列表
  45. */
  46. methods: {
  47. closeConfirm:function (){
  48. this.setData({
  49. isShow:false
  50. })
  51. },
  52. cancelCb: function(){
  53. this.triggerEvent('cancelCb');
  54. },
  55. confirmCb:function(){
  56. this.triggerEvent('confirmCb');
  57. }
  58. }
  59. })

3、wxss

  1. /* pages/components/confirmBox/confirmBox.wxss */
  2. .confirmBox_warp{
  3. position: fixed;
  4. top: 0rpx;
  5. left: 0rpx;
  6. height: 100%;
  7. width: 100%;
  8. background-color: rgba(0, 0, 0, 0.3);
  9. z-index: 11111111111199;
  10. }
  11. .confirmBox_warp .count{
  12. width: 600rpx;
  13. position: absolute;
  14. top: 50%;
  15. left: 50%;
  16. transform: translateX(-50%) translateY(-50%);
  17. background-color: #ffffff;
  18. border-radius: 16rpx;
  19. }
  20. .confirmBox_warp .count .paddClass{
  21. padding: 60rpx 40rpx;
  22. }
  23. .confirmBox_warp .count .paddingNo {
  24. padding-bottom: 0;
  25. }
  26. .confirmBox_warp .count .confirm_close_cont{
  27. padding: 20rpx;
  28. position: absolute;
  29. top: 0rpx;
  30. right: 0rpx;
  31. }
  32. .confirmBox_warp .count .confirm_close{
  33. width: 21rpx;
  34. height: 21rpx;
  35. }
  36. .confirmBox_warp .count .headers{
  37. text-align: center;
  38. color: #333333;
  39. font-size: 32rpx;
  40. line-height: 44rpx;
  41. }
  42. .confirmBox_warp .footer {
  43. display: flex;
  44. justify-content: space-between;
  45. height: 100rpx;
  46. border-top: 0.5px solid #E3E3E3;
  47. margin-top: 20rpx;
  48. /* margin-bottom: 10rpx; */
  49. }
  50. .confirmBox_warp .footer .li {
  51. flex: 1;
  52. border-right: 0.5px solid #E3E3E3;
  53. text-align: center;
  54. line-height: 100rpx;
  55. color: #333333;
  56. font-size: 32rpx;
  57. }
  58. .confirmBox_warp .footer .li .contactBtn{
  59. background-color: #ffffff;
  60. text-align: center;
  61. line-height: 80rpx;
  62. padding: 0rpx;
  63. /* color: #FE4561; */
  64. font-size: 32rpx;
  65. font-weight: normal;
  66. width: 100%;
  67. }
  68. .confirmBox_warp .footer .li:last-child {
  69. border: none;
  70. }

4、json

  1. {
  2. "component": true,
  3. "usingComponents": {}
  4. }

5、效果展示(具体内容可以自定义)

可以参考--文章:微信小程序获取定位、通过地点文本获取经纬度进行导航

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/88319
推荐阅读
相关标签
  

闽ICP备14008679号