@nixweb/nixloc-ui 0.0.71 → 0.0.74
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/package.json +1 -1
- package/src/component/forms/Botao.vue +2 -2
- package/src/component/layout/Menu.vue +32 -16
- package/src/component/layout/Painel.vue +10 -6
- package/src/component/shared/Tabela.vue +3 -4
- package/src/component/template/ModeloLista.vue +6 -1
- package/src/store/modulos/generic.js +10 -10
package/package.json
CHANGED
|
@@ -81,8 +81,8 @@ export default {
|
|
|
81
81
|
cursor: pointer;
|
|
82
82
|
border: none;
|
|
83
83
|
border-radius: 40px !important;
|
|
84
|
-
font-size:
|
|
85
|
-
font-weight:
|
|
84
|
+
font-size: 16px !important;
|
|
85
|
+
font-weight: normal;
|
|
86
86
|
font-style: normal !important;
|
|
87
87
|
letter-spacing: 1px !important;
|
|
88
88
|
-webkit-box-shadow: 0px 10px 20px -6px rgb(0 0 0 / 12%);
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
class="menu-container"
|
|
4
|
+
:class="{ 'menu-aberto': subMenuPrimeiroNivel }"
|
|
5
|
+
style="z-index: 1000"
|
|
6
|
+
>
|
|
3
7
|
<ul class="menu">
|
|
4
8
|
<li>
|
|
5
9
|
<a
|
|
@@ -10,7 +14,7 @@
|
|
|
10
14
|
<div class="div-icone lado-a-lado" :style="'background-color:' + corBase">
|
|
11
15
|
<i class="fas fa-chart-area icone" aria-hidden="true"></i>
|
|
12
16
|
</div>
|
|
13
|
-
<div class="lado-a-lado titulo">Dashboard</div
|
|
17
|
+
<!-- <div class="lado-a-lado titulo">Dashboard</div>-->
|
|
14
18
|
</a>
|
|
15
19
|
</li>
|
|
16
20
|
|
|
@@ -23,25 +27,24 @@
|
|
|
23
27
|
<div class="div-icone lado-a-lado" :style="'background-color:' + corBase">
|
|
24
28
|
<i :class="item.icone" class="icone" aria-hidden="true"></i>
|
|
25
29
|
</div>
|
|
26
|
-
<div class="lado-a-lado titulo">{{ item.modulo }}</div>
|
|
27
|
-
<div class="lado-a-lado seta menu__arrow-icon">
|
|
30
|
+
<!-- <div class="lado-a-lado titulo">{{ item.modulo }}</div> -->
|
|
31
|
+
<!-- <div class="lado-a-lado seta menu__arrow-icon">
|
|
28
32
|
<i class="fa fa-chevron-right" aria-hidden="true"></i>
|
|
29
|
-
</div>
|
|
33
|
+
</div> -->
|
|
30
34
|
</a>
|
|
31
35
|
</li>
|
|
32
36
|
</ul>
|
|
33
37
|
|
|
34
38
|
<transition name="slide-fade">
|
|
35
|
-
<div class="context-menu-container" v-
|
|
39
|
+
<div class="context-menu-container" v-if="subMenuPrimeiroNivel">
|
|
36
40
|
<ul class="context-menu">
|
|
37
41
|
<li v-for="(item, index) in subMenuFiltro(false)" :key="index">
|
|
38
42
|
<h5 v-if="item.tipo === 'grupo'" class="context-menu__title">
|
|
39
|
-
<
|
|
40
|
-
{{ item.grupoNome }}
|
|
43
|
+
<span class="sub-titulo"> {{ item.grupoNome }}</span>
|
|
41
44
|
<span
|
|
42
45
|
v-if="index === 0"
|
|
43
46
|
@click.prevent="fecharSubMenu"
|
|
44
|
-
class="context-menu__btn-close"
|
|
47
|
+
class="context-menu__btn-close icone-fechar"
|
|
45
48
|
href="#"
|
|
46
49
|
>
|
|
47
50
|
<i class="fas fa-times-circle"></i>
|
|
@@ -130,23 +133,36 @@ export default {
|
|
|
130
133
|
</script>
|
|
131
134
|
|
|
132
135
|
<style scoped>
|
|
136
|
+
.menu-aberto {
|
|
137
|
+
width: 277px;
|
|
138
|
+
}
|
|
139
|
+
|
|
133
140
|
.div-icone {
|
|
134
|
-
width:
|
|
135
|
-
height:
|
|
141
|
+
width: 35px;
|
|
142
|
+
height: 35px;
|
|
136
143
|
text-align: center;
|
|
137
|
-
padding-top:
|
|
138
|
-
border-radius:
|
|
144
|
+
padding-top: 5px;
|
|
145
|
+
border-radius: 10px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.icone-fechar{
|
|
149
|
+
margin-right: 30px;
|
|
139
150
|
}
|
|
140
151
|
|
|
152
|
+
|
|
141
153
|
.icone {
|
|
142
154
|
color: white;
|
|
143
|
-
font-size:
|
|
155
|
+
font-size: 18px;
|
|
144
156
|
}
|
|
145
157
|
|
|
146
158
|
.titulo {
|
|
147
159
|
margin-left: 15px;
|
|
148
|
-
font-size:
|
|
160
|
+
font-size: 15px;
|
|
161
|
+
font-weight: normal;
|
|
149
162
|
}
|
|
150
163
|
|
|
151
|
-
|
|
164
|
+
.sub-titulo {
|
|
165
|
+
font-size: 16px;
|
|
166
|
+
font-weight: normal;
|
|
167
|
+
}
|
|
152
168
|
</style>
|
|
@@ -13,8 +13,7 @@
|
|
|
13
13
|
<div class="row">
|
|
14
14
|
<div class="col-10">
|
|
15
15
|
<div class="div-titulo">
|
|
16
|
-
<
|
|
17
|
-
<span class="modulo"> {{ modulo }} </span> /
|
|
16
|
+
<span class="modulo"> {{ modulo }} /</span>
|
|
18
17
|
<span class="titulo"> {{ titulo }}</span>
|
|
19
18
|
</div>
|
|
20
19
|
</div>
|
|
@@ -97,7 +96,7 @@ export default {
|
|
|
97
96
|
<style scoped>
|
|
98
97
|
.c-container {
|
|
99
98
|
margin: auto;
|
|
100
|
-
padding-left:
|
|
99
|
+
padding-left: 80px;
|
|
101
100
|
padding-right: 30px;
|
|
102
101
|
max-width: 1400px;
|
|
103
102
|
}
|
|
@@ -106,10 +105,15 @@ export default {
|
|
|
106
105
|
margin-top: 15px;
|
|
107
106
|
}
|
|
108
107
|
|
|
108
|
+
.modulo {
|
|
109
|
+
font-size: 22px;
|
|
110
|
+
font-weight: 300;
|
|
111
|
+
}
|
|
112
|
+
|
|
109
113
|
.titulo {
|
|
110
|
-
font-size:
|
|
111
|
-
font-weight:
|
|
112
|
-
|
|
114
|
+
font-size: 24px;
|
|
115
|
+
font-weight: normal;
|
|
116
|
+
line-height: 34px;
|
|
113
117
|
color: #577696;
|
|
114
118
|
}
|
|
115
119
|
|
|
@@ -215,9 +215,9 @@ table tbody tr td {
|
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
.titulo-cabecalho {
|
|
218
|
-
font-size:
|
|
218
|
+
font-size: 18px;
|
|
219
219
|
color: #757d8c;
|
|
220
|
-
font-weight:
|
|
220
|
+
font-weight: 500;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
.tabela-numero {
|
|
@@ -226,8 +226,7 @@ table tbody tr td {
|
|
|
226
226
|
}
|
|
227
227
|
|
|
228
228
|
.tabela-principal {
|
|
229
|
-
|
|
230
|
-
color: #577696;
|
|
229
|
+
color: #757d8c;
|
|
231
230
|
max-width: 200px;
|
|
232
231
|
}
|
|
233
232
|
|
|
@@ -152,7 +152,12 @@ export default {
|
|
|
152
152
|
},
|
|
153
153
|
watch: {
|
|
154
154
|
metodoExecutadoApi: function (value) {
|
|
155
|
-
if (
|
|
155
|
+
if (
|
|
156
|
+
value === "postApi" ||
|
|
157
|
+
value === "putApi" ||
|
|
158
|
+
value === "deleteAllApi" ||
|
|
159
|
+
value === "deleteAllApiErro"
|
|
160
|
+
) {
|
|
156
161
|
this.obterTodos();
|
|
157
162
|
}
|
|
158
163
|
},
|
|
@@ -161,7 +161,7 @@ export default {
|
|
|
161
161
|
})
|
|
162
162
|
.then((response) => {
|
|
163
163
|
if (response.data.sucesso) {
|
|
164
|
-
context.commit('insereMetodoExecutadoApi',
|
|
164
|
+
context.commit('insereMetodoExecutadoApi', 'postApi');
|
|
165
165
|
|
|
166
166
|
if (!params.naoNotificarToast)
|
|
167
167
|
context.commit('insereToast', 'postApi');
|
|
@@ -178,7 +178,7 @@ export default {
|
|
|
178
178
|
}, (err) => {
|
|
179
179
|
if (err.response)
|
|
180
180
|
if (err.response.status === 403)
|
|
181
|
-
context.commit('insereNotificacao', [{ mensagem: "Usuário
|
|
181
|
+
context.commit('insereNotificacao', [{ mensagem: "Usuário sem permissão para adicionar!" }])
|
|
182
182
|
|
|
183
183
|
if (!err.response)
|
|
184
184
|
context.commit('insereNotificacaoErroApi');
|
|
@@ -192,7 +192,7 @@ export default {
|
|
|
192
192
|
})
|
|
193
193
|
.then((response) => {
|
|
194
194
|
if (response.data.sucesso) {
|
|
195
|
-
context.commit('insereMetodoExecutadoApi',
|
|
195
|
+
context.commit('insereMetodoExecutadoApi', 'putApi');
|
|
196
196
|
|
|
197
197
|
if (!params.naoNotificarToast)
|
|
198
198
|
context.commit('insereToast', 'putApi');
|
|
@@ -208,7 +208,7 @@ export default {
|
|
|
208
208
|
}, (err) => {
|
|
209
209
|
if (err.response)
|
|
210
210
|
if (err.response.status === 403)
|
|
211
|
-
context.commit('insereNotificacao', [{ mensagem: "Usuário
|
|
211
|
+
context.commit('insereNotificacao', [{ mensagem: "Usuário sem permissão para modificar!" }])
|
|
212
212
|
|
|
213
213
|
if (!err.response)
|
|
214
214
|
context.commit('insereNotificacaoErroApi');
|
|
@@ -264,7 +264,7 @@ export default {
|
|
|
264
264
|
}, (err) => {
|
|
265
265
|
if (err.response)
|
|
266
266
|
if (err.response.status === 403)
|
|
267
|
-
context.commit('insereNotificacao', [{ mensagem: "Usuário
|
|
267
|
+
context.commit('insereNotificacao', [{ mensagem: "Usuário sem permissão para remover!" }])
|
|
268
268
|
|
|
269
269
|
if (!err.response)
|
|
270
270
|
context.commit('insereNotificacaoErroApi');
|
|
@@ -294,7 +294,7 @@ export default {
|
|
|
294
294
|
}, (err) => {
|
|
295
295
|
if (err.response)
|
|
296
296
|
if (err.response.status === 403)
|
|
297
|
-
context.commit('insereNotificacao', [{ mensagem: "Usuário
|
|
297
|
+
context.commit('insereNotificacao', [{ mensagem: "Usuário sem permissão para remover!" }])
|
|
298
298
|
|
|
299
299
|
if (!err.response)
|
|
300
300
|
context.commit('insereNotificacaoErroApi');
|
|
@@ -344,7 +344,7 @@ export default {
|
|
|
344
344
|
}, (err) => {
|
|
345
345
|
if (err.response)
|
|
346
346
|
if (err.response.status === 403)
|
|
347
|
-
context.commit('insereNotificacao', [{ mensagem: "Usuário
|
|
347
|
+
context.commit('insereNotificacao', [{ mensagem: "Usuário sem permissão para adicionar!" }])
|
|
348
348
|
|
|
349
349
|
if (!err.response)
|
|
350
350
|
context.commit('insereNotificacaoErroApi');
|
|
@@ -357,8 +357,8 @@ export default {
|
|
|
357
357
|
let url = params.url;
|
|
358
358
|
let nome = params.obj.nome;
|
|
359
359
|
let container = params.obj.container;
|
|
360
|
-
|
|
361
|
-
return axios.delete(`${url}?nome=${nome}
|
|
360
|
+
|
|
361
|
+
return axios.delete(`${url}?nome=${nome}&container=${container}`, {
|
|
362
362
|
headers: new Token().tokenHeaders(),
|
|
363
363
|
})
|
|
364
364
|
.then((response) => {
|
|
@@ -374,7 +374,7 @@ export default {
|
|
|
374
374
|
}, (err) => {
|
|
375
375
|
if (err.response)
|
|
376
376
|
if (err.response.status === 403)
|
|
377
|
-
context.commit('insereNotificacao', [{ mensagem: "Usuário
|
|
377
|
+
context.commit('insereNotificacao', [{ mensagem: "Usuário sem permissão para remover!" }])
|
|
378
378
|
|
|
379
379
|
if (!err.response)
|
|
380
380
|
context.commit('insereNotificacaoErroApi');
|