cloud-web-corejs 1.0.54-dev.272 → 1.0.54-dev.273
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/table/index.js +1 -1036
- package/src/components/wf/content.vue +42 -48
- package/src/components/wf/wf.js +18 -3
- package/src/components/xform/form-render/container-item/data-table-mixin.js +1 -2403
- package/src/views/bd/setting/push_data/edit.vue +4 -2
- package/src/views/bd/setting/push_data/list.vue +6 -0
- package/src/views/bd/setting/push_data_h/edit.vue +2 -0
- package/src/views/bd/setting/push_data_h/list.vue +6 -0
- package/src/views/bd/setting/request_async_setting/list.vue +1 -1
@@ -35,6 +35,8 @@
|
|
35
35
|
<th>{{ $t1('备注') }}</th>
|
36
36
|
<td colspan="7">{{ pushData.remark }}</td>
|
37
37
|
</tr>
|
38
|
+
<th>{{ $t1('服务名') }}</th>
|
39
|
+
<td>{{ pushData.serverName }}</td>
|
38
40
|
<tr>
|
39
41
|
<th>{{ $t1('真实数据') }}</th>
|
40
42
|
<td colspan="7">{{ pushData.data }}</td>
|
@@ -62,8 +64,8 @@
|
|
62
64
|
<tr>
|
63
65
|
<th>{{ $t1('冗余字段5') }}</th>
|
64
66
|
<td>{{ pushData.field5 }}</td>
|
65
|
-
<th>{{ $t1('
|
66
|
-
<td>{{ pushData.
|
67
|
+
<th>{{ $t1('ID') }}</th>
|
68
|
+
<td>{{ pushData.id }}</td>
|
67
69
|
<th>{{ $t1('创建人') }}</th>
|
68
70
|
<td>{{ pushData.createBy }}</td>
|
69
71
|
<th>{{ $t1('创建时间') }}</th>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<component v-if="showEdit" visible-key="showEdit" :is="editComponentName" :_dataId.sync="dataId" :serverName="serverName"
|
6
6
|
:parent-target="_self" @reload="$reloadHandle"></component>
|
7
7
|
</el-tab-pane>
|
8
|
-
<el-tab-pane :label="$t1('
|
8
|
+
<el-tab-pane :label="$t1('异步推送数据设置')" name="second">
|
9
9
|
<div class="grid-height">
|
10
10
|
<vxe-grid ref="table-m1" v-bind="vxeOption" @resizable-change="$vxeTableUtil.onColumnWitchChange"
|
11
11
|
@custom="$vxeTableUtil.customHandle">
|