dykj-outsource-12123/uni_modules/uview-plus/components/u-form-item/props.js
2024-06-28 14:18:30 +08:00

55 lines
1.6 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: {
// input的label提示语
label: {
type: String,
default: () => defProps.formItem.label
},
// 绑定的值
prop: {
type: String,
default: () => defProps.formItem.prop
},
// 绑定的规则
rule: {
type: String,
default: () => defProps.formItem.rule
},
// 是否显示表单域的下划线边框
borderBottom: {
type: [String, Boolean],
default: () => defProps.formItem.borderBottom
},
// label的位置left-左边top-上边
labelPosition: {
type: String,
default: () => defProps.formItem.labelPosition
},
// label的宽度单位px
labelWidth: {
type: [String, Number],
default: () => defProps.formItem.labelWidth
},
// 右侧图标
rightIcon: {
type: String,
default: () => defProps.formItem.rightIcon
},
// 左侧图标
leftIcon: {
type: String,
default: () => defProps.formItem.leftIcon
},
// 是否显示左边的必填星号只作显示用具体校验必填的逻辑请在rules中配置
required: {
type: Boolean,
default: () => defProps.formItem.required
},
leftIconStyle: {
type: [String, Object],
default: () => defProps.formItem.leftIconStyle,
}
}
}