WIP Добавил форму для Основных данных
This commit is contained in:
@@ -3,14 +3,14 @@
|
||||
q-input(
|
||||
v-model="value",
|
||||
:class="{'circle': circle, 'font-input': true}",
|
||||
:input-style="{ color: textColor, width: width + 'px' }",
|
||||
:input-style="{ color: textColor, width: width + 'px' , borderColor: borderColor}",
|
||||
:borderless="borderless",
|
||||
:placeholder="placeholder",
|
||||
:outlined="outlined",
|
||||
:dense="dense",
|
||||
:type="type",
|
||||
:filled="filled",
|
||||
:bg-color="filled ? '' : 'white'",
|
||||
:bg-color="filled || standout ? '' : 'white'",
|
||||
:disable="disabled",
|
||||
:rules="rule",
|
||||
:lazy-rules="lazyRule",
|
||||
@@ -20,6 +20,7 @@
|
||||
:maxlength="maxLength",
|
||||
:autogrow="autogrow",
|
||||
:square="square",
|
||||
:standout="standout"
|
||||
hide-bottom-space
|
||||
)
|
||||
slot.cursor-pointer
|
||||
@@ -60,10 +61,15 @@ export default {
|
||||
type: {
|
||||
default: "text",
|
||||
},
|
||||
standout: {
|
||||
type: [Boolean, String],
|
||||
default: false,
|
||||
},
|
||||
mask: String,
|
||||
width: Number,
|
||||
maxLength: Number,
|
||||
textColor: String,
|
||||
borderColor: String,
|
||||
rule: Array,
|
||||
lazyRule: [Boolean, String],
|
||||
noErrorIcon: Boolean,
|
||||
|
||||
Reference in New Issue
Block a user