更新记录

0.1.2(2026-08-01) 下载此版本

  • 修复 Android(APP-ANDROID)组内互斥运行时报 RefImpl cannot be cast:注入的活动项状态改用 Ref<string> 接收,避免将 Vue 运行时 ref 强制转换为自定义结构类型。
  • Web、iOS、HarmonyOS 与小程序保持既有行为。

平台兼容性

uni-app x(4.25)

Chrome Safari Android iOS 鸿蒙 微信小程序
-

其他

多语言 暗黑模式 宽屏模式
× ×

nax-swipe-action

uni-app x 滑动操作组件,功能覆盖常用场景,并增强:

  • nax-swipe-action-group 互斥展开(不必手写遍历关其它项)
  • 操作按钮 type 走主题 token(error / warning / primary…)
  • 支持 options[].widthright 自定义插槽

依赖

  • nax-ui-theme(CSS 变量 --nax-*,安装时依赖 / 运行时弱依赖)

基础用法

<nax-swipe-action
  :options="options"
  @click="onAction"
>
  <nax-cell title="左滑删除"></nax-cell>
</nax-swipe-action>
const options = [
  { text: '删除', type: 'error', name: 'delete' }
]

互斥展开(推荐列表场景)

<nax-swipe-action-group>
  <nax-swipe-action
    v-for="item in list"
    :key="item.id"
    :name="item.id"
    :options="options"
    @click="onAction"
  >
    <nax-cell :title="item.title"></nax-cell>
  </nax-swipe-action>
</nax-swipe-action-group>

列表 keyname 请用稳定唯一 id,不要用数组下标。

Android 端组内互斥已适配响应式注入;无需额外配置。

nax-swipe-action Props

属性 类型 默认 说明
show boolean false 是否展开(v-model:show
disabled boolean false 禁用滑动与按钮
name string '' 项标识;组内互斥推荐传稳定 id
index number -1 业务序号(写入 click 载荷,兼容)
options array [] 按钮列表,见下表
btnWidth number 72 默认按钮宽度(px)
rightWidth number 0 自定义 right 插槽宽度(px)
threshold number 0 展开阈值(px);0 为操作区一半
autoClose boolean true 点击按钮后自动收起
closeOnClickContent boolean true 展开时点内容区收起
vibrateShort boolean false 展开时短震动(支持端)
customClass string '' 根节点扩展 class

options 项

字段 类型 说明
text / label string 按钮文案
name string 按钮标识(click 回调)
type string default / primary / info / success / warning / errordanger 同 error)
color string 文字色覆盖
bgColor / backgroundColor string 背景色覆盖
style.backgroundColor / style.color string 兼容 style 写法
width number 单项宽度(px)
disabled boolean 禁用该按钮

事件

事件 说明
update:show v-model:show
open 展开
close 收起
click 点操作按钮;参数含 index / name / text / itemName / itemIndex
content-click 点内容区(已展开且会自动收起时不额外依赖业务关单)

插槽

名称 说明
default 内容区(如 nax-cell
right 自定义右侧操作区(请同时设 rightWidth

方法(defineExpose)

方法 说明
open 展开
close 收起

nax-swipe-action-group

属性 类型 默认 说明
customClass string '' 根扩展 class
方法 说明
closeAll 收起组内全部

主题 Token

  • --nax-color-primary / info / success / warning / error
  • --nax-color-text-secondary 默认按钮底
  • --nax-color-bg 内容区底色(遮住操作按钮)
  • --nax-font-size-sm 按钮字号

隐私、权限声明

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

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

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

许可协议

MIT协议

暂无用户评论。