dykj-football/uni_modules/uview-plus/components/u-swipe-action-item/props.js
2024-04-17 15:27:43 +08:00

43 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import defProps from '../../libs/config/props.js';
export default {
props: {
// 控制打开或者关闭
show: {
type: Boolean,
default: () => defProps.swipeActionItem.show
},
// 标识符如果是v-for可用index索引值
name: {
type: [String, Number],
default: () => defProps.swipeActionItem.name
},
// 是否禁用
disabled: {
type: Boolean,
default: () => defProps.swipeActionItem.disabled
},
// 是否自动关闭其他swipe按钮组
autoClose: {
type: Boolean,
default: () => defProps.swipeActionItem.autoClose
},
// 滑动距离阈值,只有大于此值,才被认为是要打开菜单
threshold: {
type: Number,
default: () => defProps.swipeActionItem.threshold
},
// 右侧按钮内容
options: {
type: Array,
default() {
return defProps.swipeActionItem.rightOptions
}
},
// 动画过渡时间单位ms
duration: {
type: [String, Number],
default: () => defProps.swipeActionItem.duration
}
}
}