You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.0 KiB
50 lines
1.0 KiB
3 years ago
|
/*
|
||
|
* @Author : LQ
|
||
|
* @Description :
|
||
|
* @version : 1.0
|
||
|
* @Date : 2021-08-20 16:44:21
|
||
|
* @LastAuthor : LQ
|
||
|
* @lastTime : 2021-08-20 17:13:55
|
||
|
* @FilePath : /u-view2.0/uview-ui/libs/config/props/input.js
|
||
|
*/
|
||
|
export default {
|
||
|
// index 组件
|
||
|
input: {
|
||
|
value: '',
|
||
|
type: 'text',
|
||
|
fixed: false,
|
||
|
disabled: false,
|
||
|
disabledColor: '#f5f7fa',
|
||
|
clearable: false,
|
||
|
password: false,
|
||
|
maxlength: -1,
|
||
|
placeholder: '',
|
||
|
placeholderClass: 'input-placeholder',
|
||
|
placeholderStyle: 'color: #c0c4cc',
|
||
|
showWordLimit: false,
|
||
|
confirmType: 'done',
|
||
|
confirmHold: false,
|
||
|
holdKeyboard: false,
|
||
|
focus: false,
|
||
|
autoBlur: false,
|
||
|
disableDefaultPadding: false,
|
||
|
cursor: -1,
|
||
|
cursorSpacing: 30,
|
||
|
selectionStart: -1,
|
||
|
selectionEnd: -1,
|
||
|
adjustPosition: true,
|
||
|
inputAlign: 'left',
|
||
|
autosize: false,
|
||
|
fontSize: '15px',
|
||
|
color: '#303133',
|
||
|
prefixIcon: '',
|
||
|
prefixIconStyle: '',
|
||
|
suffixIcon: '',
|
||
|
suffixIconStyle: '',
|
||
|
border: 'surround',
|
||
|
readonly: false,
|
||
|
shape: 'square',
|
||
|
formatter: null
|
||
|
}
|
||
|
}
|