@burh/nuxt-core 1.0.456 → 1.0.458
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.
- package/assets/images/icons/icon5.svg +3 -3
- package/assets/images/icons/icon6.svg +3 -3
- package/assets/sass/burh-ds/_global.scss +324 -324
- package/assets/sass/burh-ds/content/_interface-spa.scss +306 -306
- package/assets/sass/burh-ds/content/_main-content.scss +25 -25
- package/components/argon-core/BaseDropdown.vue +114 -114
- package/components/argon-core/LoadingPanel.vue +26 -26
- package/components/burh-ds/Cards/FeatureBusinessCard.vue +74 -74
- package/components/burh-ds/Cards/PerformanceCard.vue +81 -81
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvLeftSide.vue +22 -16
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvRightSide.vue +67 -4
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvRightSideNotAuth.vue +61 -32
- package/components/burh-ds/Inputs/SearchInput.vue +88 -88
- package/components/burh-ds/Modals/NewUserModal.vue +87 -87
- package/components/burh-ds/Modals/PlanModal.vue +91 -22
- package/components/burh-ds/Skeleton/BaseCardUniversity.vue +79 -79
- package/components/burh-ds/Skeleton/BaseCardUser.vue +84 -84
- package/components/burh-ds/Skeleton/Cards.vue +86 -86
- package/components/layouts/burh-ds/navbar/PublicNavbar.vue +168 -168
- package/components/organismos/atomos/Deslike.vue +26 -0
- package/components/organismos/atomos/Like.vue +26 -0
- package/nuxt.config.js +207 -207
- package/package.json +1 -1
- package/plugins/vClickOutside.js +4 -4
|
@@ -188,7 +188,20 @@
|
|
|
188
188
|
|
|
189
189
|
<p class="notes-title mb-0">Laudo do Candidato</p>
|
|
190
190
|
<div class="line mb-3"></div>
|
|
191
|
-
|
|
191
|
+
<div class="evaluation-area">
|
|
192
|
+
<div class="action">
|
|
193
|
+
<like class="icon" :colorActiveLike="likeStatus"/>
|
|
194
|
+
<span class="font-weight-bold evaluation-area__text">
|
|
195
|
+
Gostei
|
|
196
|
+
</span>
|
|
197
|
+
</div>
|
|
198
|
+
<div class="action">
|
|
199
|
+
<deslike class="icon" :colorActiveDeslike="likeStatus"/>
|
|
200
|
+
<span class="font-weight-bold evaluation-area__text">
|
|
201
|
+
Não Gostei
|
|
202
|
+
</span>
|
|
203
|
+
</div>
|
|
204
|
+
</div>
|
|
192
205
|
<template v-if="!isLocked">
|
|
193
206
|
<div class="input-container" v-if="!userReportData.annex">
|
|
194
207
|
<dropzone-file-upload
|
|
@@ -319,6 +332,8 @@ import { Tabs, TabPane } from 'element-ui';
|
|
|
319
332
|
import DropzoneFileUpload from '@burh/nuxt-core/components/argon-core/Inputs/DropzoneFileUpload.vue';
|
|
320
333
|
import swal from 'sweetalert2';
|
|
321
334
|
import UpgradePlan from './UpgradePlan.vue';
|
|
335
|
+
import like from '../../../organismos/atomos/Like.vue';
|
|
336
|
+
import deslike from '../../../organismos/atomos/Deslike.vue';
|
|
322
337
|
|
|
323
338
|
export default {
|
|
324
339
|
name: 'user-cv-right-side',
|
|
@@ -351,13 +366,16 @@ export default {
|
|
|
351
366
|
[Tabs.name]: Tabs,
|
|
352
367
|
[TabPane.name]: TabPane,
|
|
353
368
|
DropzoneFileUpload,
|
|
354
|
-
UpgradePlan
|
|
369
|
+
UpgradePlan,
|
|
370
|
+
like,
|
|
371
|
+
deslike
|
|
355
372
|
},
|
|
356
373
|
data(){
|
|
357
374
|
return {
|
|
358
375
|
newNote: '',
|
|
359
376
|
newReportNote: '',
|
|
360
377
|
active: this.activeName,
|
|
378
|
+
liked: 0,
|
|
361
379
|
hasRemove: null,
|
|
362
380
|
isError: true,
|
|
363
381
|
currentRemoveItem: null,
|
|
@@ -551,7 +569,10 @@ export default {
|
|
|
551
569
|
const apiUrl = `${process.env.baseApiUrlV2}/company/buffer/folder/user/${this.userFolderId}`;
|
|
552
570
|
|
|
553
571
|
const data = await this.$axios(apiUrl)
|
|
554
|
-
.then(res =>
|
|
572
|
+
.then((res) => {
|
|
573
|
+
this.liked = res.data.data.like;
|
|
574
|
+
return res.data;
|
|
575
|
+
})
|
|
555
576
|
.catch(() => {});
|
|
556
577
|
|
|
557
578
|
if (!data) return;
|
|
@@ -575,7 +596,10 @@ export default {
|
|
|
575
596
|
return !this.companyHasProduct(
|
|
576
597
|
this.$store.state.loja && this.$store.state.loja.showableProducts && this.$store.state.loja.showableProducts['HISTORICO_USUARIO'] || false
|
|
577
598
|
);
|
|
578
|
-
}
|
|
599
|
+
},
|
|
600
|
+
likeStatus(){
|
|
601
|
+
return this.liked;
|
|
602
|
+
},
|
|
579
603
|
}
|
|
580
604
|
};
|
|
581
605
|
</script>
|
|
@@ -617,7 +641,46 @@ export default {
|
|
|
617
641
|
border: 0;
|
|
618
642
|
}
|
|
619
643
|
}
|
|
644
|
+
.evaluation-area{
|
|
645
|
+
margin-bottom: 16px;
|
|
646
|
+
display: grid;
|
|
647
|
+
grid-template-columns: repeat(2, 95px);
|
|
648
|
+
@media (max-width:1155px){
|
|
649
|
+
grid-template-columns: 1fr;
|
|
650
|
+
}
|
|
651
|
+
.action{
|
|
652
|
+
display: grid;
|
|
653
|
+
grid-template-columns: 2rem 1fr;
|
|
654
|
+
align-items: center;
|
|
655
|
+
white-space: nowrap;
|
|
656
|
+
user-select: none;
|
|
657
|
+
.icon {
|
|
658
|
+
width: 2rem !important;
|
|
659
|
+
}
|
|
660
|
+
@media (max-width: 1440px) {
|
|
661
|
+
justify-content:start;
|
|
662
|
+
}
|
|
663
|
+
@media (max-width:1155px){
|
|
664
|
+
width: 7rem;
|
|
665
|
+
margin-bottom: 0 !important;
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
&__text {
|
|
669
|
+
font-size: 0.8rem;
|
|
670
|
+
color: #32325D;
|
|
671
|
+
margin-left: 0.35rem;
|
|
672
|
+
}
|
|
620
673
|
|
|
674
|
+
.active-icon {
|
|
675
|
+
font-size: 25px;
|
|
676
|
+
color: #AEB0B7;
|
|
677
|
+
transition: color 0.25s;
|
|
678
|
+
cursor: pointer;
|
|
679
|
+
&.active{
|
|
680
|
+
color:#fff;
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
}
|
|
621
684
|
/deep/ .el-tab-pane {
|
|
622
685
|
height: 760px;
|
|
623
686
|
max-height: 760px;
|
|
@@ -18,34 +18,43 @@
|
|
|
18
18
|
<div class="line mb-3"/>
|
|
19
19
|
|
|
20
20
|
<div class="evaluation-area">
|
|
21
|
-
<div
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}"
|
|
25
|
-
class="like"
|
|
21
|
+
<div @click.prevent="() => {
|
|
22
|
+
evaluateUser(1)
|
|
23
|
+
}"
|
|
26
24
|
>
|
|
27
|
-
<
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
25
|
+
<el-tooltip
|
|
26
|
+
class="item"
|
|
27
|
+
effect="dark"
|
|
28
|
+
content="Gostei"
|
|
29
|
+
placement="top"
|
|
30
|
+
>
|
|
31
|
+
<div class="action">
|
|
32
|
+
<like class="icon" :colorActiveLike="likeStatus"/>
|
|
33
|
+
<span class="font-weight-bold evaluation-area__text">
|
|
34
|
+
Gostei
|
|
35
|
+
</span>
|
|
36
|
+
</div>
|
|
37
|
+
</el-tooltip>
|
|
34
38
|
</div>
|
|
35
39
|
|
|
36
40
|
<div
|
|
37
|
-
@click="() => {
|
|
41
|
+
@click.prevent="() => {
|
|
38
42
|
evaluateUser(2)
|
|
39
43
|
}"
|
|
40
|
-
class="like"
|
|
41
44
|
>
|
|
42
|
-
<
|
|
43
|
-
class="
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
45
|
+
<el-tooltip
|
|
46
|
+
class="item"
|
|
47
|
+
effect="dark"
|
|
48
|
+
content="Não gostei"
|
|
49
|
+
placement="top"
|
|
50
|
+
>
|
|
51
|
+
<div class="action">
|
|
52
|
+
<deslike class="icon" :colorActiveDeslike="likeStatus"/>
|
|
53
|
+
<span class="font-weight-bold evaluation-area__text">
|
|
54
|
+
Não Gostei
|
|
55
|
+
</span>
|
|
56
|
+
</div>
|
|
57
|
+
</el-tooltip>
|
|
49
58
|
</div>
|
|
50
59
|
</div>
|
|
51
60
|
|
|
@@ -108,6 +117,8 @@
|
|
|
108
117
|
|
|
109
118
|
<script>
|
|
110
119
|
import { Tabs, TabPane } from 'element-ui';
|
|
120
|
+
import like from '../../../organismos/atomos/Like.vue';
|
|
121
|
+
import deslike from '../../../organismos/atomos/Deslike.vue';
|
|
111
122
|
|
|
112
123
|
export default {
|
|
113
124
|
name: 'user-cv-right-side',
|
|
@@ -124,6 +135,8 @@ export default {
|
|
|
124
135
|
components: {
|
|
125
136
|
[Tabs.name]: Tabs,
|
|
126
137
|
[TabPane.name]: TabPane,
|
|
138
|
+
like,
|
|
139
|
+
deslike,
|
|
127
140
|
},
|
|
128
141
|
data(){
|
|
129
142
|
return {
|
|
@@ -153,11 +166,10 @@ export default {
|
|
|
153
166
|
const data = await this.$axios(apiUrl)
|
|
154
167
|
.then(res => {
|
|
155
168
|
this.liked = res.data.data.like;
|
|
169
|
+
return res.data;
|
|
156
170
|
})
|
|
157
171
|
.catch(() => {});
|
|
158
|
-
|
|
159
172
|
if (!data) return;
|
|
160
|
-
|
|
161
173
|
this.mountUserReport(data.data);
|
|
162
174
|
},
|
|
163
175
|
|
|
@@ -352,19 +364,33 @@ export default {
|
|
|
352
364
|
}
|
|
353
365
|
.evaluation-area{
|
|
354
366
|
margin-bottom: 16px;
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
367
|
+
display: grid;
|
|
368
|
+
grid-template-columns: repeat(2, 95px);
|
|
369
|
+
@media (max-width:1155px){
|
|
370
|
+
grid-template-columns: 1fr;
|
|
371
|
+
}
|
|
372
|
+
.action{
|
|
373
|
+
display: grid;
|
|
374
|
+
grid-template-columns: 2rem 1fr;
|
|
375
|
+
align-items: center;
|
|
376
|
+
white-space: nowrap;
|
|
359
377
|
cursor: pointer;
|
|
360
378
|
user-select: none;
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
379
|
+
.icon {
|
|
380
|
+
width: 2rem !important;
|
|
381
|
+
}
|
|
382
|
+
@media (max-width: 1440px) {
|
|
383
|
+
justify-content:start;
|
|
384
|
+
}
|
|
385
|
+
@media (max-width:1155px){
|
|
386
|
+
width: 7rem;
|
|
387
|
+
margin-bottom: 0 !important;
|
|
365
388
|
}
|
|
366
389
|
}
|
|
367
390
|
&__text {
|
|
391
|
+
font-size: 0.8rem;
|
|
392
|
+
color: #32325D;
|
|
393
|
+
margin-left: 0.35rem;
|
|
368
394
|
cursor: pointer;
|
|
369
395
|
}
|
|
370
396
|
|
|
@@ -374,7 +400,7 @@ export default {
|
|
|
374
400
|
transition: color 0.25s;
|
|
375
401
|
cursor: pointer;
|
|
376
402
|
&.active{
|
|
377
|
-
color:#
|
|
403
|
+
color:#fff;
|
|
378
404
|
}
|
|
379
405
|
}
|
|
380
406
|
}
|
|
@@ -458,6 +484,9 @@ export default {
|
|
|
458
484
|
}
|
|
459
485
|
|
|
460
486
|
.history-text {
|
|
487
|
+
@media (max-width:1390px){
|
|
488
|
+
margin-right: 1rem;
|
|
489
|
+
}
|
|
461
490
|
font-size: 13px;
|
|
462
491
|
color: #62778c;
|
|
463
492
|
}
|
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="input__container__icon" :class="{ 'input__disabled': disabled || isLocked }" @click="isLocked && $emit('open-plan-modal')">
|
|
3
|
-
<label for="search">
|
|
4
|
-
<template v-if="!isLocked">
|
|
5
|
-
<i class="fas fa-search"></i>
|
|
6
|
-
</template>
|
|
7
|
-
<template v-else>
|
|
8
|
-
<i class="fas fa-lock"></i>
|
|
9
|
-
</template>
|
|
10
|
-
</label>
|
|
11
|
-
<input type="text" name="search" id="search" :disabled="disabled || isLocked" :placeholder="placeholder" v-model="searchModel" @change="$emit('change')">
|
|
12
|
-
</div>
|
|
13
|
-
</template>
|
|
14
|
-
|
|
15
|
-
<script>
|
|
16
|
-
export default {
|
|
17
|
-
name: 'search-input',
|
|
18
|
-
props: {
|
|
19
|
-
disabled: {
|
|
20
|
-
type: Boolean,
|
|
21
|
-
default: false
|
|
22
|
-
},
|
|
23
|
-
search: String,
|
|
24
|
-
placeholder: {
|
|
25
|
-
type: String,
|
|
26
|
-
default: 'Busque por vaga'
|
|
27
|
-
},
|
|
28
|
-
isLocked: {
|
|
29
|
-
type: Boolean,
|
|
30
|
-
default: false
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
data() {
|
|
34
|
-
return {
|
|
35
|
-
searchModel: null
|
|
36
|
-
};
|
|
37
|
-
},
|
|
38
|
-
mounted() {
|
|
39
|
-
this.searchModel = this.search;
|
|
40
|
-
},
|
|
41
|
-
watch: {
|
|
42
|
-
search(value) {
|
|
43
|
-
this.searchModel = value;
|
|
44
|
-
},
|
|
45
|
-
searchModel(value) {
|
|
46
|
-
this.$emit('search', value);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
</script>
|
|
51
|
-
|
|
52
|
-
<style lang="scss" scoped>
|
|
53
|
-
.input__container__icon {
|
|
54
|
-
position: relative;
|
|
55
|
-
display: flex;
|
|
56
|
-
align-items: center;
|
|
57
|
-
border-radius: 100px;
|
|
58
|
-
max-width: 270px;
|
|
59
|
-
overflow: hidden;
|
|
60
|
-
border: 1px solid #E9ECEF;
|
|
61
|
-
input {
|
|
62
|
-
background: transparent;
|
|
63
|
-
border: 0;
|
|
64
|
-
outline: none;
|
|
65
|
-
padding: 5px 0;
|
|
66
|
-
width: 100%;
|
|
67
|
-
}
|
|
68
|
-
label {
|
|
69
|
-
margin: 0;
|
|
70
|
-
display: block;
|
|
71
|
-
}
|
|
72
|
-
i {
|
|
73
|
-
padding: 0 10px;
|
|
74
|
-
color: #AEB6BE;
|
|
75
|
-
}
|
|
76
|
-
&.input__disabled {
|
|
77
|
-
background-color: #E9ECEF;
|
|
78
|
-
cursor: not-allowed !important;
|
|
79
|
-
input {
|
|
80
|
-
color: #AEB6BE !important;
|
|
81
|
-
cursor: not-allowed !important;
|
|
82
|
-
}
|
|
83
|
-
label {
|
|
84
|
-
cursor: not-allowed !important;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="input__container__icon" :class="{ 'input__disabled': disabled || isLocked }" @click="isLocked && $emit('open-plan-modal')">
|
|
3
|
+
<label for="search">
|
|
4
|
+
<template v-if="!isLocked">
|
|
5
|
+
<i class="fas fa-search"></i>
|
|
6
|
+
</template>
|
|
7
|
+
<template v-else>
|
|
8
|
+
<i class="fas fa-lock"></i>
|
|
9
|
+
</template>
|
|
10
|
+
</label>
|
|
11
|
+
<input type="text" name="search" id="search" :disabled="disabled || isLocked" :placeholder="placeholder" v-model="searchModel" @change="$emit('change')">
|
|
12
|
+
</div>
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script>
|
|
16
|
+
export default {
|
|
17
|
+
name: 'search-input',
|
|
18
|
+
props: {
|
|
19
|
+
disabled: {
|
|
20
|
+
type: Boolean,
|
|
21
|
+
default: false
|
|
22
|
+
},
|
|
23
|
+
search: String,
|
|
24
|
+
placeholder: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: 'Busque por vaga'
|
|
27
|
+
},
|
|
28
|
+
isLocked: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: false
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
data() {
|
|
34
|
+
return {
|
|
35
|
+
searchModel: null
|
|
36
|
+
};
|
|
37
|
+
},
|
|
38
|
+
mounted() {
|
|
39
|
+
this.searchModel = this.search;
|
|
40
|
+
},
|
|
41
|
+
watch: {
|
|
42
|
+
search(value) {
|
|
43
|
+
this.searchModel = value;
|
|
44
|
+
},
|
|
45
|
+
searchModel(value) {
|
|
46
|
+
this.$emit('search', value);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
</script>
|
|
51
|
+
|
|
52
|
+
<style lang="scss" scoped>
|
|
53
|
+
.input__container__icon {
|
|
54
|
+
position: relative;
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
border-radius: 100px;
|
|
58
|
+
max-width: 270px;
|
|
59
|
+
overflow: hidden;
|
|
60
|
+
border: 1px solid #E9ECEF;
|
|
61
|
+
input {
|
|
62
|
+
background: transparent;
|
|
63
|
+
border: 0;
|
|
64
|
+
outline: none;
|
|
65
|
+
padding: 5px 0;
|
|
66
|
+
width: 100%;
|
|
67
|
+
}
|
|
68
|
+
label {
|
|
69
|
+
margin: 0;
|
|
70
|
+
display: block;
|
|
71
|
+
}
|
|
72
|
+
i {
|
|
73
|
+
padding: 0 10px;
|
|
74
|
+
color: #AEB6BE;
|
|
75
|
+
}
|
|
76
|
+
&.input__disabled {
|
|
77
|
+
background-color: #E9ECEF;
|
|
78
|
+
cursor: not-allowed !important;
|
|
79
|
+
input {
|
|
80
|
+
color: #AEB6BE !important;
|
|
81
|
+
cursor: not-allowed !important;
|
|
82
|
+
}
|
|
83
|
+
label {
|
|
84
|
+
cursor: not-allowed !important;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
</style>
|
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<modal
|
|
4
|
-
:show.sync="isModalOpen"
|
|
5
|
-
@close="$emit('close-modal')"
|
|
6
|
-
class="modal modal-new"
|
|
7
|
-
bodyClasses="container-fluid px-4 pt-0 modal-new-fix"
|
|
8
|
-
headerClasses="container-fluid new-modal-header pb-0"
|
|
9
|
-
>
|
|
10
|
-
<template slot="header">
|
|
11
|
-
<p> </p>
|
|
12
|
-
</template>
|
|
13
|
-
<div class="text-center mb-4 mt-0">
|
|
14
|
-
<img src="/img/logotipo_color.svg" class="pb-4" width="110" alt="Burh">
|
|
15
|
-
<h5 class="display-5 text-center">Olá! Sou a Burh! Estamos mudando.</h5>
|
|
16
|
-
</div>
|
|
17
|
-
<div class="mt-2 text-justify">
|
|
18
|
-
<p>
|
|
19
|
-
O Burh foi criado para empresas que buscam os melhores profissionais para compor seu time, mas que para isso não tenham que passar por sistemas burocráticos, ultrapassados e cheios de pegadinhas. Com o único propósito de tornar o mercado profissional em um lugar livre e aberto, chegou a hora de apresentarmos a melhor versão que já criamos, uma plataforma inteligente, rápida, segura e repleta de novas possibilidades.
|
|
20
|
-
<br><br>
|
|
21
|
-
Por isso acreditamos que você vai adorar! A nova plataforma possibilita criar e organizar pastas na nuvem, anexar documentos e notas nos perfis dos profissionais e compartilhar essas informações com toda segurança da LGPD. Tudo isso de forma simples, inovadora e inteligente.
|
|
22
|
-
<br><br>
|
|
23
|
-
Pode-se dizer que estamos amadurecendo, o que é meio chavão para uma marca dizer, mas nós somos gratos pelas pessoas que ficaram ao nosso lado nos últimos quatro anos e estamos empolgados para crescer cada vez mais juntos.
|
|
24
|
-
<br><br>
|
|
25
|
-
Hoje, apresentamos a nova Burh Empresas que será liberada nos próximos dias. Uma solução que reflete aquilo que somos, nossa essência e o que acreditamos. Nossas novas cores representam toda a integração, possibilidade e liberdade de criarmos o novo, de pessoas para pessoas.
|
|
26
|
-
<br><br>
|
|
27
|
-
Com amor,<br>Burh
|
|
28
|
-
</p>
|
|
29
|
-
</div>
|
|
30
|
-
</modal>
|
|
31
|
-
</div>
|
|
32
|
-
</template>
|
|
33
|
-
|
|
34
|
-
<script>
|
|
35
|
-
export default {
|
|
36
|
-
name: 'new-user-modal',
|
|
37
|
-
props: {
|
|
38
|
-
show: {
|
|
39
|
-
type: Boolean,
|
|
40
|
-
default: false
|
|
41
|
-
},
|
|
42
|
-
},
|
|
43
|
-
data() {
|
|
44
|
-
return {
|
|
45
|
-
isModalOpen: this.show
|
|
46
|
-
};
|
|
47
|
-
},
|
|
48
|
-
watch: {
|
|
49
|
-
show(value) {
|
|
50
|
-
this.isModalOpen = value;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
};
|
|
54
|
-
</script>
|
|
55
|
-
<style lang="scss">
|
|
56
|
-
.modal-new {
|
|
57
|
-
overflow-y: auto!important;
|
|
58
|
-
&::-webkit-scrollbar-track {
|
|
59
|
-
border-radius: 10px!important;
|
|
60
|
-
background-color: rgba(23, 43, 77, 0.7)!important;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
&::-webkit-scrollbar {
|
|
64
|
-
width: 8px!important;
|
|
65
|
-
background-color: rgba(23, 43, 77, 0.7)!important;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
&::-webkit-scrollbar-thumb {
|
|
69
|
-
border-radius: 10px!important;
|
|
70
|
-
background-color: #e9e8e8!important;
|
|
71
|
-
}
|
|
72
|
-
.modal-dialog {
|
|
73
|
-
min-width: 60rem;
|
|
74
|
-
display: flex;
|
|
75
|
-
flex-direction: columns;
|
|
76
|
-
align-items: center;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
.modal-new-fix {
|
|
80
|
-
padding: 30px 60px!important;
|
|
81
|
-
padding-top: 0!important;
|
|
82
|
-
width: 75%!important;
|
|
83
|
-
}
|
|
84
|
-
.new-modal-header {
|
|
85
|
-
padding: 10px!important;
|
|
86
|
-
}
|
|
87
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<modal
|
|
4
|
+
:show.sync="isModalOpen"
|
|
5
|
+
@close="$emit('close-modal')"
|
|
6
|
+
class="modal modal-new"
|
|
7
|
+
bodyClasses="container-fluid px-4 pt-0 modal-new-fix"
|
|
8
|
+
headerClasses="container-fluid new-modal-header pb-0"
|
|
9
|
+
>
|
|
10
|
+
<template slot="header">
|
|
11
|
+
<p> </p>
|
|
12
|
+
</template>
|
|
13
|
+
<div class="text-center mb-4 mt-0">
|
|
14
|
+
<img src="/img/logotipo_color.svg" class="pb-4" width="110" alt="Burh">
|
|
15
|
+
<h5 class="display-5 text-center">Olá! Sou a Burh! Estamos mudando.</h5>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="mt-2 text-justify">
|
|
18
|
+
<p>
|
|
19
|
+
O Burh foi criado para empresas que buscam os melhores profissionais para compor seu time, mas que para isso não tenham que passar por sistemas burocráticos, ultrapassados e cheios de pegadinhas. Com o único propósito de tornar o mercado profissional em um lugar livre e aberto, chegou a hora de apresentarmos a melhor versão que já criamos, uma plataforma inteligente, rápida, segura e repleta de novas possibilidades.
|
|
20
|
+
<br><br>
|
|
21
|
+
Por isso acreditamos que você vai adorar! A nova plataforma possibilita criar e organizar pastas na nuvem, anexar documentos e notas nos perfis dos profissionais e compartilhar essas informações com toda segurança da LGPD. Tudo isso de forma simples, inovadora e inteligente.
|
|
22
|
+
<br><br>
|
|
23
|
+
Pode-se dizer que estamos amadurecendo, o que é meio chavão para uma marca dizer, mas nós somos gratos pelas pessoas que ficaram ao nosso lado nos últimos quatro anos e estamos empolgados para crescer cada vez mais juntos.
|
|
24
|
+
<br><br>
|
|
25
|
+
Hoje, apresentamos a nova Burh Empresas que será liberada nos próximos dias. Uma solução que reflete aquilo que somos, nossa essência e o que acreditamos. Nossas novas cores representam toda a integração, possibilidade e liberdade de criarmos o novo, de pessoas para pessoas.
|
|
26
|
+
<br><br>
|
|
27
|
+
Com amor,<br>Burh
|
|
28
|
+
</p>
|
|
29
|
+
</div>
|
|
30
|
+
</modal>
|
|
31
|
+
</div>
|
|
32
|
+
</template>
|
|
33
|
+
|
|
34
|
+
<script>
|
|
35
|
+
export default {
|
|
36
|
+
name: 'new-user-modal',
|
|
37
|
+
props: {
|
|
38
|
+
show: {
|
|
39
|
+
type: Boolean,
|
|
40
|
+
default: false
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
data() {
|
|
44
|
+
return {
|
|
45
|
+
isModalOpen: this.show
|
|
46
|
+
};
|
|
47
|
+
},
|
|
48
|
+
watch: {
|
|
49
|
+
show(value) {
|
|
50
|
+
this.isModalOpen = value;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
</script>
|
|
55
|
+
<style lang="scss">
|
|
56
|
+
.modal-new {
|
|
57
|
+
overflow-y: auto!important;
|
|
58
|
+
&::-webkit-scrollbar-track {
|
|
59
|
+
border-radius: 10px!important;
|
|
60
|
+
background-color: rgba(23, 43, 77, 0.7)!important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&::-webkit-scrollbar {
|
|
64
|
+
width: 8px!important;
|
|
65
|
+
background-color: rgba(23, 43, 77, 0.7)!important;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&::-webkit-scrollbar-thumb {
|
|
69
|
+
border-radius: 10px!important;
|
|
70
|
+
background-color: #e9e8e8!important;
|
|
71
|
+
}
|
|
72
|
+
.modal-dialog {
|
|
73
|
+
min-width: 60rem;
|
|
74
|
+
display: flex;
|
|
75
|
+
flex-direction: columns;
|
|
76
|
+
align-items: center;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
.modal-new-fix {
|
|
80
|
+
padding: 30px 60px!important;
|
|
81
|
+
padding-top: 0!important;
|
|
82
|
+
width: 75%!important;
|
|
83
|
+
}
|
|
84
|
+
.new-modal-header {
|
|
85
|
+
padding: 10px!important;
|
|
86
|
+
}
|
|
87
|
+
</style>
|