@burh/nuxt-core 1.0.233 → 1.0.235
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="bg-white content-right tabs">
|
|
1
|
+
<template>
|
|
2
|
+
<div class="bg-white content-right tabs ">
|
|
3
3
|
<el-tabs
|
|
4
4
|
:class="active"
|
|
5
5
|
class="mt-3 ml-4 handle-icon-color"
|
|
@@ -183,6 +183,17 @@ export default {
|
|
|
183
183
|
}
|
|
184
184
|
};
|
|
185
185
|
</script>
|
|
186
|
+
<style>
|
|
187
|
+
.el-tabs__nav-wrap::after {
|
|
188
|
+
background: #fff !important;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.el-tabs__active-bar {
|
|
192
|
+
width: 34px !important;
|
|
193
|
+
height: 4px !important;
|
|
194
|
+
border-radius: 10px 10px 0px 0px;
|
|
195
|
+
}
|
|
196
|
+
</style>
|
|
186
197
|
|
|
187
198
|
<style lang="scss" scoped>
|
|
188
199
|
@import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<base-input
|
|
12
12
|
v-model="receiver"
|
|
13
13
|
label="Para"
|
|
14
|
-
v-mask="['(##) #####-####']"
|
|
14
|
+
v-mask="['(##) ####-####', '(##) #####-####']"
|
|
15
15
|
placeholder="Adicionar um número de telefone"
|
|
16
16
|
:class="'w-100'"
|
|
17
17
|
@change="addNumber(receiver)"
|
|
@@ -261,7 +261,7 @@ export default {
|
|
|
261
261
|
}
|
|
262
262
|
},
|
|
263
263
|
addNumber(number) {
|
|
264
|
-
if(this.receiver.length <
|
|
264
|
+
if(this.receiver.length < 14){
|
|
265
265
|
return;
|
|
266
266
|
}
|
|
267
267
|
|