gcs-ui-lib 1.2.10 → 1.2.12
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/lib/gcs-ui-lib.common.js +395 -371
- package/lib/gcs-ui-lib.umd.js +395 -371
- package/lib/gcs-ui-lib.umd.min.js +6 -6
- package/package.json +1 -1
- package/packages/AutoFillDetection/src/components/config.js +21 -0
- package/packages/AutoFillList/src/main.vue +11 -3
- package/src/css/autoFill.scss +7 -0
package/package.json
CHANGED
|
@@ -263,6 +263,20 @@ export const third_tableHeader = [
|
|
|
263
263
|
minWidth: "144",
|
|
264
264
|
"show-overflow-tooltip": true,
|
|
265
265
|
},
|
|
266
|
+
{
|
|
267
|
+
label: "单位编号",
|
|
268
|
+
prop: "unitNo",
|
|
269
|
+
align: "center",
|
|
270
|
+
minWidth: "144",
|
|
271
|
+
"show-overflow-tooltip": true,
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
label: "单位名称",
|
|
275
|
+
prop: "unitName",
|
|
276
|
+
width: "230",
|
|
277
|
+
"show-overflow-tooltip": true,
|
|
278
|
+
align: "left",
|
|
279
|
+
},
|
|
266
280
|
// {
|
|
267
281
|
// label: "本方开户行",
|
|
268
282
|
// prop: "branchBankName",
|
|
@@ -317,6 +331,13 @@ export const third_tableHeader = [
|
|
|
317
331
|
formatter: "formatAmount", // 时间格式化
|
|
318
332
|
"show-overflow-tooltip": true,
|
|
319
333
|
},
|
|
334
|
+
{
|
|
335
|
+
label: "对方账号",
|
|
336
|
+
prop: "opAccountNo",
|
|
337
|
+
align: "center",
|
|
338
|
+
width: "190",
|
|
339
|
+
"show-overflow-tooltip": true,
|
|
340
|
+
},
|
|
320
341
|
{
|
|
321
342
|
label: "动账原因",
|
|
322
343
|
prop: "postScript",
|
|
@@ -155,13 +155,21 @@
|
|
|
155
155
|
:width="200"
|
|
156
156
|
>
|
|
157
157
|
<template slot-scope="scope">
|
|
158
|
-
<div
|
|
158
|
+
<div
|
|
159
|
+
v-if="item.fieldProperty == 'multiSelect'"
|
|
160
|
+
class="coustm-show-overflow"
|
|
161
|
+
>
|
|
159
162
|
{{ viewsMulti(scope.row[item.fieldCode]) }}
|
|
160
163
|
</div>
|
|
161
|
-
<div
|
|
164
|
+
<div
|
|
165
|
+
v-else-if="item.fieldProperty == 'bigDecimal'"
|
|
166
|
+
class="coustm-show-overflow"
|
|
167
|
+
>
|
|
162
168
|
{{ amountFormat(scope.row[item.fieldCode]) }}
|
|
163
169
|
</div>
|
|
164
|
-
<div v-else
|
|
170
|
+
<div v-else class="coustm-show-overflow">
|
|
171
|
+
{{ scope.row[item.fieldCode] || "--" }}
|
|
172
|
+
</div>
|
|
165
173
|
</template>
|
|
166
174
|
</vxe-column>
|
|
167
175
|
</template>
|