WIP Исправлены inputs в SectionAddress
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
<template lang="pug">
|
||||
.flex.flex-col.gap-y-2
|
||||
.label.font-semibold.text-sm.opacity-40(v-if="label") {{ label }}
|
||||
.font-semibold.text-sm.opacity-40(
|
||||
v-if="label",
|
||||
:class="labelClass"
|
||||
) {{ label }}
|
||||
.base-select.flex.justify-between.items-center.py-9px.px-4.gap-4.cursor-pointer.relative(
|
||||
ref="select",
|
||||
@click="open = !open",
|
||||
@@ -46,6 +49,7 @@ export default {
|
||||
center: Boolean,
|
||||
label: String,
|
||||
textStyle: String,
|
||||
labelStyle: String,
|
||||
},
|
||||
emits: ["update:modelValue"],
|
||||
data() {
|
||||
@@ -71,6 +75,15 @@ export default {
|
||||
"text-base": true,
|
||||
};
|
||||
},
|
||||
labelClass() {
|
||||
return this.labelStyle
|
||||
? {
|
||||
[this.labelStyle]: true,
|
||||
}
|
||||
: {
|
||||
"text-sm": true,
|
||||
};
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
clickItem(id, label) {
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
<template lang="pug">
|
||||
.flex.flex-col.gap-y-2
|
||||
.label.font-semibold.text-sm.opacity-40(v-if="label") {{ label }}
|
||||
.label.font-semibold.text-sm.opacity-40(
|
||||
v-if="label",
|
||||
:class="labelClass"
|
||||
) {{ label }}
|
||||
.input-wrapper.flex.gap-x-2.px-4.box-border.py-10px(
|
||||
:class="{'border-none': borderNone, 'border-error': borderError }"
|
||||
:style="{'background-color': disabled && 'var(--bg-disable-grey-color)'}"
|
||||
)
|
||||
input.input.w-full.outline-0.not-italic(
|
||||
v-model="value",
|
||||
:style="{'color': disabled && 'var(--font-grey-color-0)'}"
|
||||
:style="{'color': disabled && 'var(--font-grey-color-0)'}",
|
||||
:class="textClass",
|
||||
:placeholder="placeholder",
|
||||
:disabled="disabled",
|
||||
:type="type"
|
||||
@@ -35,6 +39,8 @@ export default {
|
||||
borderError: Boolean,
|
||||
disabled: Boolean,
|
||||
label: String,
|
||||
textStyle: String,
|
||||
labelStyle: String,
|
||||
},
|
||||
emits: ["update:modelValue"],
|
||||
computed: {
|
||||
@@ -46,6 +52,24 @@ export default {
|
||||
this.$emit("update:modelValue", value);
|
||||
},
|
||||
},
|
||||
textClass() {
|
||||
return this.textStyle
|
||||
? {
|
||||
[this.textStyle]: true,
|
||||
}
|
||||
: {
|
||||
"text-base": true,
|
||||
};
|
||||
},
|
||||
labelClass() {
|
||||
return this.labelStyle
|
||||
? {
|
||||
[this.labelStyle]: true,
|
||||
}
|
||||
: {
|
||||
"text-sm": true,
|
||||
};
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -1,23 +1,29 @@
|
||||
<template lang="pug">
|
||||
.base-select(
|
||||
@click="invertOpen",
|
||||
:class="{'open': open && !disable, 'border-none': borderNone}",
|
||||
ref="select"
|
||||
)
|
||||
.placeholder(
|
||||
:class="{'value-color': value || placeholderOpacity, ...textClass}",
|
||||
:style="{'color': !disable || '#9ca3af', 'opacity': 1}"
|
||||
) {{ value || placeholder }}
|
||||
.flex.items-center
|
||||
.select-form-separator.cursor-pointer.mr-4(v-if="separator")
|
||||
span.icon-down-arrow.open-icon(:class="{'open': open && !disable }")
|
||||
base-menu(v-if="open")
|
||||
.items-container(
|
||||
@click="open = false",
|
||||
v-click-outside="leaveSelect",
|
||||
:class="textClass"
|
||||
)
|
||||
.item(v-for="item in items", :key="item.id" @click="clickItem(item.label)") {{ item.label }}
|
||||
.flex.flex-col.gap-y-2
|
||||
.font-semibold.opacity-40(
|
||||
v-if="label",
|
||||
:class="labelClass"
|
||||
) {{ label }}
|
||||
.base-select(
|
||||
@click="invertOpen",
|
||||
:class="{'open': open && !disable, 'border-none': borderNone}",
|
||||
:style="{'background-color': disable && 'var(--bg-disable-grey-color)'}"
|
||||
ref="select"
|
||||
)
|
||||
.placeholder(
|
||||
:class="{'value-color': value || placeholderOpacity, ...textClass}",
|
||||
:style="{'color': !disable || '#9ca3af', 'opacity': 1}"
|
||||
) {{ value || placeholder }}
|
||||
.flex.items-center
|
||||
.select-form-separator.cursor-pointer.mr-4(v-if="separator")
|
||||
span.icon-down-arrow.open-icon(:class="{'open': open && !disable }")
|
||||
base-menu(v-if="open")
|
||||
.items-container(
|
||||
@click="open = false",
|
||||
v-click-outside="leaveSelect",
|
||||
:class="textClass"
|
||||
)
|
||||
.item(v-for="item in items", :key="item.id" @click="clickItem(item.label)") {{ item.label }}
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -37,6 +43,8 @@ export default {
|
||||
placeholderOpacity: Boolean,
|
||||
disable: Boolean,
|
||||
textStyle: String,
|
||||
labelStyle: String,
|
||||
label: String,
|
||||
},
|
||||
emits: ["update:modelValue"],
|
||||
data() {
|
||||
@@ -62,6 +70,15 @@ export default {
|
||||
"text-base": true,
|
||||
};
|
||||
},
|
||||
labelClass() {
|
||||
return this.labelStyle
|
||||
? {
|
||||
[this.labelStyle]: true,
|
||||
}
|
||||
: {
|
||||
"text-sm": true,
|
||||
};
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
clickItem(id) {
|
||||
@@ -80,6 +97,7 @@ export default {
|
||||
<style scoped lang="sass">
|
||||
.base-select
|
||||
width: 100%
|
||||
height: 40px
|
||||
border: 1.5px solid #D3D4DC
|
||||
border-radius: 4px
|
||||
padding: 9px 16px
|
||||
|
||||
Reference in New Issue
Block a user