@burh/nuxt-core 1.0.34 → 1.0.36
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.
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
<div class="row px-4 justify-content-start">
|
|
15
15
|
<div class="col-4">
|
|
16
16
|
<el-select
|
|
17
|
+
filterable
|
|
18
|
+
no-match-text="Nenhuma vaga encontrada"
|
|
19
|
+
no-data-text="Nenhuma vaga encontrada"
|
|
17
20
|
placeholder="Escolha a vaga"
|
|
18
21
|
v-model="jobid">
|
|
19
22
|
<el-option v-for="job in allJobs"
|
|
@@ -27,6 +30,9 @@
|
|
|
27
30
|
</div>
|
|
28
31
|
<div class="col-4">
|
|
29
32
|
<el-select
|
|
33
|
+
filterable
|
|
34
|
+
no-match-text="Nenhuma teste encontrado"
|
|
35
|
+
no-data-text="Nenhum teste encontrado"
|
|
30
36
|
placeholder="Escolha o teste"
|
|
31
37
|
v-model="testid">
|
|
32
38
|
<el-option v-for="test in allTests"
|
|
@@ -15,7 +15,11 @@
|
|
|
15
15
|
<slot name="brand-center" />
|
|
16
16
|
</div>
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
<a :href="urlBackToBusiness" class="btn btn-link">
|
|
19
|
+
Voltar para o Burh
|
|
20
|
+
</a>
|
|
21
|
+
|
|
22
|
+
<!-- <app-link-area
|
|
19
23
|
v-if="currentUser != null"
|
|
20
24
|
:showableProducts="showableProducts"
|
|
21
25
|
:activeProducts="activeProducts"
|
|
@@ -39,7 +43,7 @@
|
|
|
39
43
|
:data="company"
|
|
40
44
|
@avatar-click="handleAvatarClick(company)"
|
|
41
45
|
/>
|
|
42
|
-
</user-menu-dropdown>
|
|
46
|
+
</user-menu-dropdown> -->
|
|
43
47
|
</base-nav>
|
|
44
48
|
</template>
|
|
45
49
|
<script>
|
|
@@ -68,7 +72,8 @@ export default {
|
|
|
68
72
|
},
|
|
69
73
|
data() {
|
|
70
74
|
return {
|
|
71
|
-
|
|
75
|
+
console: console,
|
|
76
|
+
urlBackToBusiness: process.env.oldBusinessUrl
|
|
72
77
|
};
|
|
73
78
|
},
|
|
74
79
|
methods: {
|
|
@@ -89,10 +94,4 @@ export default {
|
|
|
89
94
|
padding: 3rem;
|
|
90
95
|
justify-content: space-between;
|
|
91
96
|
}
|
|
92
|
-
|
|
93
|
-
.hover {
|
|
94
|
-
&:hover {
|
|
95
|
-
color: #25a4f1 !important;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
97
|
</style>
|