cloud-web-corejs 1.0.54-dev.271 → 1.0.54-dev.272
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/components/excelExport/index.vue +2 -2
- package/src/components/table/index.js +2 -0
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2403 -1
- package/src/views/bd/setting/push_data_h/edit.vue +5 -3
- package/src/views/bd/setting/push_data_h/list.vue +2 -2
@@ -23,7 +23,7 @@
|
|
23
23
|
<th>{{ $t1('产生业务数据时间') }}</th>
|
24
24
|
<td>{{ pushDataH.generateDate }}</td>
|
25
25
|
<th>{{ $t1('插入历史表时间') }}</th>
|
26
|
-
<td>{{ pushDataH.
|
26
|
+
<td>{{ pushDataH.hcreateDate }}</td>
|
27
27
|
</tr>
|
28
28
|
<tr>
|
29
29
|
<th>{{ $t1('回传的数据类型') }}</th>
|
@@ -37,6 +37,10 @@
|
|
37
37
|
<th>{{ $t1('备注') }}</th>
|
38
38
|
<td colspan="7">{{ pushDataH.remark }}</td>
|
39
39
|
</tr>
|
40
|
+
<tr>
|
41
|
+
<th>{{ $t1('服务名') }}</th>
|
42
|
+
<td colspan="7">{{ pushDataH.serverName }}</td>
|
43
|
+
</tr>
|
40
44
|
<tr>
|
41
45
|
<th>{{ $t1('真实数据') }}</th>
|
42
46
|
<td colspan="7">{{ pushDataH.data }}</td>
|
@@ -67,8 +71,6 @@
|
|
67
71
|
<tr>
|
68
72
|
<th>{{ $t1('冗余字段5') }}</th>
|
69
73
|
<td>{{ pushDataH.field5 }}</td>
|
70
|
-
<th>{{ $t1('服务名') }}</th>
|
71
|
-
<td>{{ pushDataH.serverName }}</td>
|
72
74
|
<th>{{ $t1('创建人') }}</th>
|
73
75
|
<td>{{ pushDataH.createBy }}</td>
|
74
76
|
<th>{{ $t1('创建时间') }}</th>
|
@@ -166,7 +166,7 @@ export default {
|
|
166
166
|
},
|
167
167
|
{
|
168
168
|
title: '插入历史表时间',
|
169
|
-
field: '
|
169
|
+
field: 'hcreateDate',
|
170
170
|
width: 200,
|
171
171
|
},
|
172
172
|
{
|
@@ -228,7 +228,7 @@ export default {
|
|
228
228
|
{
|
229
229
|
title: '服务名',
|
230
230
|
field: 'serverName',
|
231
|
-
width:
|
231
|
+
width: 200
|
232
232
|
},
|
233
233
|
{
|
234
234
|
field: 'createBy',
|