@nixweb/nixloc-ui 0.0.296 → 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
|
@@ -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
|
|