Skip to content

ColorPicker 颜色选择器

用于颜色选择,支持多种颜色格式,包括透明度设置。

基础用法

type 为 'colorPicker',默认支持透明度选择(showAlpha: true)。

[
  {
    text: "颜色选择器",
    type: "colorPicker",
    name: "color"
  }
]
显示配置

禁用状态

设置 disabled 属性可禁用颜色选择器。

[
  {
    text: "颜色选择器",
    type: "colorPicker",
    name: "color",
    disabled: true
  }
]
显示配置

设置默认值

通过 defaultValue 设置默认颜色值。

[
  {
    text: "颜色选择器",
    type: "colorPicker",
    name: "color",
    defaultValue: "#409EFF"
  }
]
显示配置

带透明度的颜色

颜色选择器默认开启透明度选择,返回值为 rgba 格式。

支持 rgba 格式的颜色值,可以设置透明度。

[
  {
    text: "颜色选择器",
    type: "colorPicker",
    name: "color",
    defaultValue: "rgba(64, 158, 255, 0.5)"
  }
]
显示配置

ColorPicker Attributes

参数说明类型可选值默认值
name绑定值string
text表单标签string
disabled是否禁用boolean / FilterFunctionfalse
defaultValue默认颜色值string
onChange值变化时触发的函数OnChangeHandler
查看 FilterFunction / OnChangeHandler 及关联类型定义
ts
export type FilterFunction<T = boolean> = (
  mForm: FormState | undefined,
  data: {
    model: FormValue;
    values: FormValue;
    parent?: FormValue;
    formValue: FormValue;
    prop: string;
    config: any;
    index?: number;
    getFormValue: (prop: string) => any;
  },
) => T;
ts
export type OnChangeHandler = (mForm: FormState | undefined, value: any, data: OnChangeHandlerData) => any;
ts
export interface OnChangeHandlerData {
  model: FormValue;
  values?: Readonly<FormValue> | null;
  parent?: FormValue;
  formValue?: FormValue;
  config: Readonly<any>;
  prop: string;
  changeRecords: ChangeRecord[];
  setModel: (prop: string, value: any) => void;
  setFormValue: (prop: string, value: any) => void;
}
ts
export interface ChangeRecord {
  propPath?: string;
  value: any;
}
ts
export type FormValue = Record<string | number, any>;

配置类型

查看 ColorPickConfig 配置类型定义
ts
export interface ColorPickConfig extends FormItem {
  type: 'colorPicker';
}
ts
export interface FormItem {
  /** vnode的key值,默认是遍历数组时的index */
  __key?: string | number;
  /** 表单域标签的的宽度,例如 '50px'。支持 auto。 */
  labelWidth?: string | number;
  /** label 标签的title属性 */
  labelTitle?: string;
  className?: string;
  /** 字段名 */
  name?: string | number;
  /** 额外的提示信息,和 help 类似,当提示文案同时出现时,可以使用这个。 */
  extra?: string | FilterFunction<string>;
  /** 配置提示信息 */
  tooltip?: ToolTipConfigType | FilterFunction<ToolTipConfigType>;
  /** 是否置灰 */
  disabled?: boolean | FilterFunction;
  /** 使用表单中的值作为key,例如配置了text,则使用model.text作为key */
  key?: string;
  /** 是否显示 */
  display?: boolean | 'expand' | FilterFunction<boolean | 'expand'>;
  /** 值发生改变时调用的方法 */
  onChange?: OnChangeHandler;
  /** label 标签的文本 */
  text?: string | FilterFunction<string>;
  /** 右侧感叹号 */
  tip?: string;

  filter?: 'number' | OnChangeHandler;
  /** 是否去除首尾空格 */
  trim?: boolean;
  /** 默认值 */
  defaultValue?: any | DefaultValueFunction;
  /** 表单验证规则 */
  rules?: Rule[];
  extensible?: boolean;
  dynamicKey?: string;
  /** 是否需要显示`展开更多配置` */
  expand?: boolean;
  style?: Record<string, any>;
  fieldStyle?: Record<string, any>;
  labelPosition?: 'top' | 'left' | 'right';
}

颜色格式说明

支持以下颜色格式:

格式示例说明
HEX#409EFF十六进制颜色值
RGBrgb(64, 158, 255)RGB 颜色值
RGBArgba(64, 158, 255, 0.5)带透明度的 RGBA 颜色值
HSLhsl(210, 100%, 63%)HSL 颜色值
HSLAhsla(210, 100%, 63%, 0.5)带透明度的 HSLA 颜色值

Powered by 腾讯视频会员平台技术中心