更新记录

1.0.4(2024-08-06) 下载此版本

修改文档

1.0.3(2024-07-23) 下载此版本

修复控制台警告

1.0.2(2024-07-17) 下载此版本

修复编译警告

查看更多

平台兼容性

Vue2 Vue3
×
App 快应用 微信小程序 支付宝小程序 百度小程序 字节小程序 QQ小程序
HBuilderX 3.1.0 app-vue
钉钉小程序 快手小程序 飞书小程序 京东小程序
H5-Safari Android Browser 微信浏览器(Android) QQ浏览器(Android) Chrome IE Edge Firefox PC-Safari

r-swipe-cell

r-swipe-cell 滑动单元格,可以左右滑动来展示操作按钮的单元格组件。

示例

<template>
  <view class="content" style="padding: 0; background-color: transparent">
    <r-config-provider>
      <view style="padding: 5px 0"></view>
      <r-divider content-position="left">基本使用</r-divider>
      <r-swipe-cell>
        <template #left>
          <r-button type="primary">选择</r-button>
        </template>
        <template #right>
          <r-button type="danger">删除</r-button>
        </template>

        <r-cell is-link title="基本使用" />
      </r-swipe-cell>

      <r-divider content-position="left">禁用</r-divider>
      <r-swipe-cell disabled>
        <template #left>
          <r-button type="primary">选择</r-button>
        </template>
        <template #right>
          <r-button type="danger">删除</r-button>
        </template>

        <r-cell is-link title="基本使用" />
      </r-swipe-cell>

      <r-divider content-position="left">点击后手动关闭</r-divider>
      <r-swipe-cell :autoClosed="false" ref="swipeCellRef" @click="onClick">
        <template #left>
          <r-button type="primary">选择</r-button>
        </template>
        <template #right>
          <r-button type="danger">删除</r-button>
        </template>

        <r-cell is-link title="基本使用" />
      </r-swipe-cell>
    </r-config-provider>
  </view>
</template>
<script setup>
import { ref } from "vue";
const swipeCellRef = ref(null);
const onClick = (position) => {
  console.log("position", position);
  if (["left", "right"].includes(position)) swipeCellRef.value.close();
};
</script>

API

Props

名称 说明 类型 默认值 可选值
name 标识符,通常为一个唯一的字符串或数字,可以在事件参数中获取到 Number | String - -
disabled 是否禁用滑动 Boolean false true
autoClosed 点击后是否自动关闭 Boolean true false

Events

名称 说明 回调参数
click 点击时触发 position
open 打开时触发 {name,position}
close 关闭时触发 {name,position}

Slots

名称 说明
default 默认显示的内容
left 左侧滑动区域的内容
right 右侧滑动区域的内容

Methods

方法名 说明 参数 返回值
open 打开单元格侧边栏 position // (left, right) -
close 收起单元格侧边栏 - -

更多组件,请前往rainui

隐私、权限声明

1. 本插件需要申请的系统权限列表:

2. 本插件采集的数据、发送的服务器地址、以及数据用途说明:

插件不采集任何数据

3. 本插件是否包含广告,如包含需详细说明广告表达方式、展示频率:

许可协议

MIT协议

使用中有什么不明白的地方,就向插件作者提问吧~ 我要提问