2025/2/8第一次更新

This commit is contained in:
爱吃咸鱼小猫咪
2025-02-08 18:50:38 +08:00
commit d7af560866
26519 changed files with 5046029 additions and 0 deletions
@@ -0,0 +1,52 @@
import { buildProps } from '../../../../utils'
import { ZIndex } from '../../../../constants'
export const pickerBaseProps = buildProps({
/**
* @description 显示取消按钮
*/
showCancel: {
type: Boolean,
default: true,
},
/**
* @description 取消按钮的文本
*/
cancelText: {
type: String,
default: '取 消',
},
/**
* @description 取消按钮的字体颜色,支持图鸟内置的字体颜色
*/
cancelColor: String,
/**
* @description 显示确定按钮
*/
showConfirm: {
type: Boolean,
default: true,
},
/**
* @description 确定按钮的文本
*/
confirmText: {
type: String,
default: '确 定',
},
/**
* @description 确定按钮的字体颜色,支持图鸟内置的字体颜色
*/
confirmColor: String,
/**
* @description 显示遮罩
*/
mask: Boolean,
/**
* zIndex
*/
zIndex: {
type: Number,
default: ZIndex.popup,
},
} as const)