微信小程序-自定义弹框-版本1

qqq.gif

还是老样子,废话不多说,直接上代码

862BAB5D-B974-4884-93C0-5EB1E45BFA84.png

popView.json声明自定义组件,"component": true

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

popView.wxml进行基本布局

  • 1、wx:if="{{canShow}}"是否显示popView
  • 2、catchtouchmove="move"禁止底部视图滚动
  • 3、<slot></slot>这个就是占个坑,具体布局就让外面的人喜欢怎么弄就怎么弄了
<view wx:if="{{canShow}}" class= 'popV' catchtouchmove="move">
  <view class='popV-mask' bindtap="selectMask"></view> 
  <view class='popV-content'> 
    <slot></slot>
    <view class='popV-content-btm'>
      <view class='popV-content-btm-left' hover-class='popV-hover' catchtap='selectLeft'>{{leftText}}</view>
      <view class='popV-content-btm-colLine'></view>
      <view class='popV-content-btm-right' hover-class='popV-hover' catchtap="selectRight">{{rightText}}</view>
    </view>
  </view>
</view>
.popV {
  display: flex;
  justify-content: center;
}
.popV-mask {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: fixed;
  z-index: 1000;
}
.popV-content{
  top: 268rpx;
  width: 560rpx;
  background: white;
  border-radius: 10rpx;
  display: flex;
  position: fixed;
  z-index: 1001;
  flex-direction: column;
  overflow: hidden;
}
/* 底部 */
.popV-content-btm {
  height: 100rpx;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;

  border-top-width: 1rpx;
  border-top-style: solid;
  border-top-color: #E1E1E1;
}
.popV-content-btm-left {
  flex: 1;
  font-size: 36rpx;
  color: #888888;
  text-align: center;
  line-height: 100rpx;
  font-family: PingFang-SC-Medium;
}
.popV-hover {
  background: #DDD;
}
.popV-content-btm-right {
  flex: 1;
  font-size: 36rpx;
  color: #0087FF;
  text-align: center;
  line-height: 100rpx;
  font-family: PingFang-SC-Medium;
}
.popV-content-btm-colLine {
  height: 100rpx;
  width: 1px;
  background-color: #E1E1E1;
}

popView.js进行数据方法处理

  • 1、multipleSlots: true这个是开启多slot支持,我们现在没用到先注释掉也可以
  • 2、properties属性配置,想要配置什么就配置什么,这里我就只做了3个属性配置,分别是canShow:是否显示popView。leftText:左边按钮文案。rightText:右边按钮文案
  • 3、triggerEvent这个用来给父组件传递信息的,具体解释下面代码有说明
Component({
  options: {
    multipleSlots: true // 开启多slot支持
  },

  behaviors: [],
  // 属性
  properties: {
    canShow: {
      type: Boolean,
      value: false,
    },
    leftText: {
      type: String,
      value: "左边"
    },
    rightText: {
      type: String,
      value: "右边"
    }
  },
  // 初始化数据
  data: {
    // showCoupon: true
  }, // 私有数据,可用于模版渲染

  lifetimes: {
    // 生命周期函数,可以为函数,或一个在methods段中定义的方法名
    attached: function () { },
    moved: function () { },
    detached: function () { },
  },

  // 生命周期函数,可以为函数,或一个在methods段中定义的方法名
  attached: function () { }, // 此处attached的声明会被lifetimes字段中的声明覆盖
  ready: function () { },

  pageLifetimes: {
    // 组件所在页面的生命周期函数
    show: function () { },
  },

  methods: {
    // 需要使用到this.triggerEvent(' ',{},{}),第一个参数是自定义事件名称,这个名称是在页面调用组件时bind的名称,第二个对象就可以将想要的属性拿到,第三个参数文档中有介绍
    selectMask: function (e) {
      this.setData({
        canShow: !this.data.canShow
      });
      // let yesOrNo = this.data.canShow;
      // this.triggerEvent('mask', {
      //   behavior: yesOrNo
      // }, {})
    },
    selectLeft: function () {
      this.triggerEvent('left', this.data.canShow);
    },
    selectRight: function () {
      this.triggerEvent('right', this.data.canShow);
    },
    move: function () {
      return;
    }
  }

})

如何使用

index.json导入我们的组件

{
  "usingComponents": {
    "popView": "/components/popView/popView"
  }
}

index.wxml布局我们的组件其他内容

  • 1、这里<popView canShow="{{isShowPopView}}" leftText="取消" rightText="确定" bindleft="selectLeft" bindright="selectRight">canShowleftTextrightText就是我们在组件定义的属性,bindleftbindright这个两个就是我们在组件通过triggerEvent给现在的父组件传递的事件名
<view class="container">
  <view class="userinfo" bindtap="didClick">
      <text>点我</text>
  </view>

  <view class="tempCnt1">我是来占位置的1</view>
  <view class="tempCnt2">我是来占位置的2</view>
  <view class="tempCnt3">我是来占位置的3</view>
  <view class="tempCnt4">我是来占位置的4</view>
  <view class="tempCnt5">我是来占位置的5</view>
</view>

<!-- 自定义弹框 -->
<popView canShow="{{isShowPopView}}" leftText="取消" rightText="确定" bindleft="selectLeft" bindright="selectRight">
    <view class="popV-cntV">
      <text class="popV-cntV-title">我是标题</text>
      <text class="popV-cntV-desc">我是详情说明,我是详情说明,我是详情说明,我是详情说明,我是详情说明,我是详情说明,</text>
    </view>
</popView>
.userinfo {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 200rpx;
  height: 200rpx;
  background-color: red;
}
.tempCnt1 {
  background-color: yellow;
  display: flex;
  height: 300rpx;
  width: 100%;
}
.tempCnt2 {
  background-color: rebeccapurple;
  display: flex;
  height: 300rpx;
  width: 100%;
}
.tempCnt3 {
  background-color: gray;
  display: flex;
  height: 300rpx;
  width: 100%;
}
.tempCnt4 {
  background-color: green;
  display: flex;
  height: 300rpx;
  width: 100%;
}
.tempCnt5 {
  background-color: blue;
  display: flex;
  height: 300rpx;
  width: 100%;
}
/* 弹框内容布局 */
.popV-cntV {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popV-cntV-title {
  font-size: 34rpx;
  color: #000000;
  font-family: PingFangSC-Regular;

  margin-top: 20rpx;
}
.popV-cntV-desc {
  font-size: 28rpx;
  color: #000000;
  font-family: PingFang-SC-Medium;

  margin: 20rpx;
}

index.js进行组件的显示隐藏等操作

//获取应用实例
const app = getApp()

Page({
  data: {
    isShowPopView: false // 是否显示弹框
  },
  //事件处理函数
  didClick: function() {
    this.setData({
      isShowPopView:true
    })

    console.log('点我吧' + this.data.isShowPopView)

  },

  /**
   * 弹框事件
   * */
  selectLeft: function () {
    console.log('点击左边')
    this.setData({
      isShowPopView: !this.data.isShowPopView
    });
  },
  selectRight: function () {
    console.log('点击右边')
    this.setData({
      isShowPopView: !this.data.isShowPopView
    });
  },
})

自定义弹框版本1就算完成了,是不是很简单

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,039评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,223评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,916评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,009评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,030评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,011评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,934评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,754评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,202评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,433评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,590评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,321评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,917评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,568评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,738评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,583评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,482评论 2 352

推荐阅读更多精彩内容