微信小程序 侧滑抽屉式 菜单 组件

GitHub代码:https://github.com/Penll/wechatapp-drawercell

做此组件之前,其实,有在简书内看到例子,但是,他给的代码不全,后面就觉得,参照他部分前提下改造完全,并分享给大家。

侧滑抽屉菜单 ,实现效果图(实际,滑动是跟着手指慢慢移动,下面gif中,其实都算自动展开效果):

temp.gif

该cell列表已经封装到组件

index页面调用:

<view class="page">
  <list-cell bind:onCellTap="bindCellTapHandler" bind:onOperateTap="bindOperateTapHandler" dataList="{{messageList}}"></list-cell>
</view>

组件属性中绑定了两个事件,bindCellTapHandler即单个cell的点击事件;bindOperateTapHandler即滑出的菜单选项点击事件。具体点击哪个菜单,在方法内根据operateName,我这里只是根据字符串直接switch.

组件 list-cell.wxml 代码

<view class="pic-listcell-view" hidden="{{hidden}}">
  <view class="cell-item-view" wx:for="{{dataList}}" wx:key="key" data-value="{{item}}" data-index="{{index}}" bindtap="_bindCellTapHandler">
    <view class="cell-item" data-index="{{index}}" bindtouchstart="_cellTouchStart" bindtouchmove="_cellTouchMove" bindtouchend="_cellTouchEnd" style="left:{{item.cellMoveLeftDistance?item.cellMoveLeftDistance:0}}px">
      <!-- TODO:根据类型调用对应模版 -->
      <template is="cell-item-message" data="{{item:item}}"></template>
    </view>
    <view class="cell-operate-items">
      <template is="cell-item-operates" data="{{itemIndex:index,operateItemWidth:operateItemWidth,hasCloseNotice:item.hasCloseNotice}}"></template>
    </view>
  </view>
</view>

<template name="cell-item-operates">
  <view class="operate-item">
  </view>

  <view catchtap="_bindOperateTapHandler" class="operate-item blue}}" style="{{operateItemWidth?'width:'+operateItemWidth+'rpx':''}}" data-index="{{itemIndex}}" data-value='{{hasCloseNotice?"打开提醒":"关闭提醒"}}'>
    <text>{{hasCloseNotice?"打开提醒":"关闭提醒"}}</text>
  </view>

  <view catchtap="_bindOperateTapHandler" class="operate-item gray" style="{{operateItemWidth?'width:'+operateItemWidth+'rpx':''}}" data-index="{{itemIndex}}" data-value="已读">
    <text>已读</text>
  </view>
</template>

<!-- 用于消息的 cell-item模版 -->
<template name="cell-item-message">
  <template is="cell-item-leftpic" data="{{picUrl:item.pic,isRadiusCorner:true}}"></template>
  <template is="cell-item-middle" data="{{title:item.title,des:item.describeInfo}}"></template>
  <template is="cell-item-right-message" data="{{date:item.formatUpdate,hasNewPoint:item.hasNewPoint,hasCloseNotice:item.hasCloseNotice}}"></template>
</template>

<!-- 左边图 通用 图片是否方形判断 -->
<template name="cell-item-leftpic">
  <view class="left-pic-container">
    <block wx:if="{{picUrl}}">
      <image class="pic {{isRadiusCorner?'radius-corner':''}}" src='{{picUrl}}' mode="aspectFill"></image>
    </block>
    <block wx:else>
      <image class="pic" src='../../../resources/images/img_user_default.png' mode="aspectFill"></image>
    </block>
  </view>
</template>

<!-- 中间 标题&描述   标题加粗 与否判断 -->
<template name="cell-item-middle">
  <view class="middle-des">
    <view class="title {{isNormalTitle?'normal-title':''}}">
      {{title}}
    </view>
    <view class="middle-description">
      <view class="description">{{des}}</view>
    </view>
  </view>
</template>

<!-- 右边 箭号 -->
<template name="cell-item-right-arrow">
  <view class="right-view">
    <image class="right-arrow" src="../../../resources/images/img_arrow.png"></image>
  </view>
</template>

<!-- 右边 消息提示 -->
<template name="cell-item-right-message">
  <view class="right-view-message">
    <view class="date">{{date}}</view>
    <!-- 关闭通知 -->
    <view class="notice-view">
      <view wx:if="{{hasCloseNotice}}" class="notice-item icon-item">
        <image src="../../../resources/images/img_close_notify.png"></image>
      </view>
      <view wx:if="{{hasNewPoint}}" class="notice-item newPoint">
        NEW
      </view>
    </view>
  </view>
</template>

组件 list-cell.wxss

.pic-listcell-view {
    background-color: #fff;
    border-top: 2rpx solid #ececec;
    border-bottom: 2rpx solid #ececec;
}

.cell-item-view {
    border-bottom: 2rpx solid #ececec;
    height: 21.5vw;
    position: relative;
}

.cell-item-view:last-child {
    border: none;
}

.cell-item {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 4.8vw;
    z-index: 2;
    background-color: #fff;
}

/* 左边 图片 */

.left-pic-container {
    position: relative;
    height: 14.67vw;
}

.left-pic-container .pic {
    width: 14.67vw;
    height: 14.67vw;
    overflow: hidden;
    border: 2rpx #ececec solid;
    /* will-change: transform; 这里如果加willchange 会导致,抽屉回弹的时候,头像变成空白 */
}

.left-pic-container .radius-corner {
    border-radius: 50%;
}

/* 中间 */

.middle-des {
    vertical-align: center;
    flex-grow: 1;
    margin: 0 3.2vw;
    line-height: 8vw;
    white-space: nowrap;
}

.middle-des .title {
    font-weight: bold;
    color: #3c281e;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 4.27vw;
    max-width: 76vw;
    text-overflow: ellipsis;
}

.normal-title {
    font-weight: normal !important;
}

.middle-description {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
}

.middle-description .description {
    font-size: 3.6vw;
    color: #979797;
}

/* 消息的右边 样式 */

.right-view-message {
    background-color: #fff;
    flex-direction: column;
}

.right-view-message .date {
    color: #8c8282;
    font-size: 3.2vw;
    margin-bottom: 2vw;
    width: 100%;
    text-align: end;
}

.right-view-message .notice-view {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.notice-view .notice-item {
    margin-left: 1.6vw;
}

.notice-view .icon-item {
    width: 4.6vw;
    height: 4.6vw;
}

.notice-view image {
    width: 100%;
    height: 100%;
}

/* 右侧 滑出的操作选项 */

.cell-operate-items {
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
}

.cell-operate-items .operate-item {
    /* width: 200rpx; */
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4vw;
}

.cell-operate-items .operate-item:first-child {
    flex-grow: 1;
}

.gray {
    background-color: #C8BEBE;
}

.blue {
    background-color: #82B4FF;
}

/* 红点 */

.newPoint {
    background-color: #fa8278;
    border-radius: 50rpx;
    width: 10vw;
    height: 4.8vw;
    line-height: 4.8vw;
    text-align: center;
    color: #fff;
    font-size: 3vw;
}

组件list-cell.js

这里代码太多,就不全部黏贴出来,可以去GitHub下载https://github.com/Penll/wechatapp-drawercell
注意:CELL_MAX_MOVE适配宽屏这里要根据屏幕计算

TODO 代办:

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

推荐阅读更多精彩内容

  • 7月20日精进:昨天和漆房沟通买普瑞维亚的配件。当时问了是什么,但是还是没问仔细。今天漆房又说要个另外的配件。打电...
    京心达毕玉娜阅读 107评论 0 0
  • 心是万象之源,伟大的结果源自伟大的想法; 定位决定地位,布局决定结局; 你用什么样的态度对待一个事业平台, 那么这...
    C1O1O1L阅读 440评论 0 0
  • 风轻轻,云淡淡,时空不再现。梦里花落知多少,谁家暗夜扫月光。月朦朦,星闪闪,乱世佳人苑。一曲乱曲肝肠断,迷茫声中醒...
    心随墨动阅读 391评论 0 1