@nixweb/nixloc-ui 0.0.295 → 0.0.297
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
CHANGED
|
@@ -61,9 +61,8 @@
|
|
|
61
61
|
<div v-if="item.groupName" class="div-group">
|
|
62
62
|
{{ item.groupName }}
|
|
63
63
|
</div>
|
|
64
|
-
|
|
65
64
|
<span>
|
|
66
|
-
{{ item.title }}
|
|
65
|
+
<span> {{ item.title }}</span>
|
|
67
66
|
<span class="div-support" v-if="item.isVisible == 'support'">
|
|
68
67
|
Suporte
|
|
69
68
|
</span>
|
|
@@ -389,6 +388,7 @@ export default {
|
|
|
389
388
|
.sub-menu-title-collapsed {
|
|
390
389
|
padding: 10px;
|
|
391
390
|
border-radius: 8px;
|
|
391
|
+
font-size: 13px;
|
|
392
392
|
}
|
|
393
393
|
|
|
394
394
|
.sub-menu-title-collapsed:hover {
|
|
@@ -408,7 +408,7 @@ export default {
|
|
|
408
408
|
}
|
|
409
409
|
|
|
410
410
|
.title-menu {
|
|
411
|
-
font-size:
|
|
411
|
+
font-size: 13px;
|
|
412
412
|
}
|
|
413
413
|
|
|
414
414
|
.title-menu-collapsed {
|
|
@@ -449,7 +449,8 @@ export default {
|
|
|
449
449
|
background-color: #0A36DB;
|
|
450
450
|
font-size: 11px;
|
|
451
451
|
border-radius: 20px;
|
|
452
|
-
padding: 2px;
|
|
452
|
+
padding: 1px 2px 2px 2px;
|
|
453
|
+
margin-left: 5px;
|
|
453
454
|
color: white !important;
|
|
454
455
|
}
|
|
455
456
|
</style>
|
|
@@ -6,14 +6,9 @@
|
|
|
6
6
|
<thead>
|
|
7
7
|
<tr>
|
|
8
8
|
<th v-for="(obj, ind) in headerTableMap" :key="ind" class="title-header">
|
|
9
|
-
<div class="div-select">
|
|
10
|
-
<SelectStatic
|
|
11
|
-
|
|
12
|
-
:data="select"
|
|
13
|
-
:markFormDirty="false"
|
|
14
|
-
:initialValue="obj.target"
|
|
15
|
-
v-model="obj.target"
|
|
16
|
-
/>
|
|
9
|
+
<div class="div-select">
|
|
10
|
+
<SelectStatic :title="obj.title" :data="select" :markFormDirty="false" :initialValue="obj.target"
|
|
11
|
+
v-model="obj.target" />
|
|
17
12
|
</div>
|
|
18
13
|
</th>
|
|
19
14
|
</tr>
|
|
@@ -148,6 +148,7 @@ export default {
|
|
|
148
148
|
let isOrderService = th.innerText.includes("t.produtoOs");
|
|
149
149
|
let isPaymentOsCustomer = th.innerText.includes("t.pagamentoCliente");
|
|
150
150
|
let isPaymentOsSupplier = th.innerText.includes("t.pagamentoFornecedor");
|
|
151
|
+
let isAttachment = th.innerText.includes("t.anexo");
|
|
151
152
|
|
|
152
153
|
if (isProduct) {
|
|
153
154
|
obj.vForSimple = "v-for='produto in d.itensLocacao'";
|
|
@@ -202,6 +203,9 @@ export default {
|
|
|
202
203
|
} else if (isAddressRent) {
|
|
203
204
|
obj.vForSimple = "v-for='endereco in d.saidaRetorno'";
|
|
204
205
|
config.push(obj);
|
|
206
|
+
} else if (isAttachment) {
|
|
207
|
+
obj.vForSimple = "v-for='anexo in d.anexo'";
|
|
208
|
+
config.push(obj);
|
|
205
209
|
} else {
|
|
206
210
|
config.push(obj);
|
|
207
211
|
}
|
|
@@ -232,6 +236,7 @@ export default {
|
|
|
232
236
|
.replaceAll("t.produtoOs", "")
|
|
233
237
|
.replaceAll("t.pagamentoCliente", "")
|
|
234
238
|
.replaceAll("t.pagamentoFornecedor", "")
|
|
239
|
+
.replaceAll("t.anexo", "")
|
|
235
240
|
.replaceAll("<p> !important;</p>", "<p> </p>");
|
|
236
241
|
}
|
|
237
242
|
|