cloud-web-corejs 1.0.54-dev.273 → 1.0.54-dev.275
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.js +48 -48
- package/src/components/excelExport/mixins.js +1 -1
- package/src/components/table/vxeFilter/mixin.js +300 -6
- package/src/components/wf/content.vue +4 -7
- package/src/components/xform/form-designer/form-widget/field-widget/select-export-button-widget.vue +86 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-button-editor.vue +56 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +2 -1
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +748 -666
- package/src/components/xform/lang/zh-CN.js +1 -0
- package/src/views/bd/setting/push_data/edit.vue +30 -30
- package/src/views/bd/setting/push_data/list.vue +29 -25
- package/src/views/bd/setting/push_data_h/edit.vue +44 -37
- package/src/views/bd/setting/push_data_h/list.vue +35 -27
@@ -18,54 +18,54 @@
|
|
18
18
|
<table class="table-detail">
|
19
19
|
<tbody>
|
20
20
|
<tr>
|
21
|
+
<th>{{ $t1('ID') }}</th>
|
22
|
+
<td>{{ pushData.id }}</td>
|
21
23
|
<th>{{ $t1('任务编码') }}</th>
|
22
24
|
<td>{{ pushData.taskCode }}</td>
|
23
|
-
<th>{{ $t1('
|
25
|
+
<th>{{ $t1('数据唯一标识') }}</th>
|
26
|
+
<td colspan="3">{{ pushData.sid }}</td>
|
27
|
+
</tr>
|
28
|
+
<tr>
|
29
|
+
<th>{{ $t1('业务方产生时间点') }}</th>
|
24
30
|
<td>{{ pushData.generateDate }}</td>
|
31
|
+
<th>{{ $t1('业务数据标识') }}</th>
|
32
|
+
<td>{{ pushData.transfer }}</td>
|
25
33
|
</tr>
|
26
34
|
<tr>
|
27
|
-
<th>{{ $t1('
|
28
|
-
<td>{{ pushData.
|
29
|
-
<th>{{ $t1('
|
30
|
-
<td>{{ pushData.
|
31
|
-
<th>{{ $t1('
|
32
|
-
<td>{{ pushData.
|
35
|
+
<th>{{ $t1('冗余字段1') }}</th>
|
36
|
+
<td>{{ pushData.field1 }}</td>
|
37
|
+
<th>{{ $t1('冗余字段2') }}</th>
|
38
|
+
<td>{{ pushData.field2 }}</td>
|
39
|
+
<th>{{ $t1('冗余字段3') }}</th>
|
40
|
+
<td>{{ pushData.field3 }}</td>
|
41
|
+
</tr>
|
42
|
+
<tr>
|
43
|
+
<th>{{ $t1('冗余字段4') }}</th>
|
44
|
+
<td>{{ pushData.field4 }}</td>
|
45
|
+
<th>{{ $t1('冗余字段5') }}</th>
|
46
|
+
<td>{{ pushData.field5 }}</td>
|
33
47
|
</tr>
|
34
48
|
<tr>
|
35
49
|
<th>{{ $t1('备注') }}</th>
|
36
50
|
<td colspan="7">{{ pushData.remark }}</td>
|
37
51
|
</tr>
|
38
|
-
<th>{{ $t1('服务名') }}</th>
|
39
|
-
<td>{{ pushData.serverName }}</td>
|
40
52
|
<tr>
|
41
|
-
<th>{{ $t1('
|
53
|
+
<th>{{ $t1('推送数据') }}</th>
|
42
54
|
<td colspan="7">{{ pushData.data }}</td>
|
43
55
|
</tr>
|
44
56
|
<tr>
|
45
|
-
<th>{{ $t1('
|
46
|
-
<td
|
57
|
+
<th>{{ $t1('回传的数据类型') }}</th>
|
58
|
+
<td>{{ pushData.callbackDataType }}</td>
|
59
|
+
<th>{{ $t1('回传的单据数据编码或ID') }}</th>
|
60
|
+
<td>{{ pushData.callbackCode }}</td>
|
61
|
+
<th>{{ $t1('回传的组织编码') }}</th>
|
62
|
+
<td>{{ pushData.callbackCompanyCode }}</td>
|
47
63
|
</tr>
|
48
|
-
|
49
64
|
<tr>
|
50
|
-
<th>{{ $t1('
|
51
|
-
<td colspan="7">{{ pushData.
|
65
|
+
<th>{{ $t1('服务名') }}</th>
|
66
|
+
<td colspan="7">{{ pushData.serverName }}</td>
|
52
67
|
</tr>
|
53
|
-
|
54
68
|
<tr>
|
55
|
-
<th>{{ $t1('冗余字段1') }}</th>
|
56
|
-
<td>{{ pushData.field1 }}</td>
|
57
|
-
<th>{{ $t1('冗余字段2') }}</th>
|
58
|
-
<td>{{ pushData.field2 }}</td>
|
59
|
-
<th>{{ $t1('冗余字段3') }}</th>
|
60
|
-
<td>{{ pushData.field3 }}</td>
|
61
|
-
<th>{{ $t1('冗余字段4') }}</th>
|
62
|
-
<td>{{ pushData.field4 }}</td>
|
63
|
-
</tr>
|
64
|
-
<tr>
|
65
|
-
<th>{{ $t1('冗余字段5') }}</th>
|
66
|
-
<td>{{ pushData.field5 }}</td>
|
67
|
-
<th>{{ $t1('ID') }}</th>
|
68
|
-
<td>{{ pushData.id }}</td>
|
69
69
|
<th>{{ $t1('创建人') }}</th>
|
70
70
|
<td>{{ pushData.createBy }}</td>
|
71
71
|
<th>{{ $t1('创建时间') }}</th>
|
@@ -4,9 +4,9 @@
|
|
4
4
|
<template #form>
|
5
5
|
<div class="clearfix screen-btns">
|
6
6
|
<div class="fl">
|
7
|
-
|
7
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog()">
|
8
8
|
{{ $t1('新增') }}
|
9
|
-
</vxe-button
|
9
|
+
</vxe-button>
|
10
10
|
</div>
|
11
11
|
<div class="fr">
|
12
12
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
@@ -32,9 +32,9 @@
|
|
32
32
|
<el-input v-model="formData.taskCode" size="small" clearable/>
|
33
33
|
</template>
|
34
34
|
</vxe-form-item>
|
35
|
-
<vxe-form-item :title="$t1('
|
35
|
+
<vxe-form-item :title="$t1('数据唯一标识')+':'">
|
36
36
|
<template v-slot>
|
37
|
-
<el-input v-model="formData.
|
37
|
+
<el-input v-model="formData.sid" size="small" clearable/>
|
38
38
|
</template>
|
39
39
|
</vxe-form-item>
|
40
40
|
<vxe-form-item title="查询时间:">
|
@@ -166,36 +166,25 @@ export default {
|
|
166
166
|
fixed: 'left'
|
167
167
|
},
|
168
168
|
{
|
169
|
-
title: '
|
170
|
-
field: '
|
171
|
-
width: 200,
|
172
|
-
},
|
173
|
-
|
174
|
-
{
|
175
|
-
title: '回传的数据类型',
|
176
|
-
field: 'callbackDataType',
|
169
|
+
title: '数据唯一标识',
|
170
|
+
field: 'sid',
|
177
171
|
width: 150
|
178
172
|
},
|
179
173
|
{
|
180
|
-
title: '
|
181
|
-
field: '
|
182
|
-
width: 200
|
174
|
+
title: '业务方产生时间点',
|
175
|
+
field: 'generateDate',
|
176
|
+
width: 200,
|
183
177
|
},
|
184
178
|
{
|
185
|
-
title: '
|
186
|
-
field: '
|
179
|
+
title: '服务名',
|
180
|
+
field: 'serverName',
|
187
181
|
width: 150
|
188
182
|
},
|
189
183
|
{
|
190
|
-
title: '
|
184
|
+
title: '业务数据标识',
|
191
185
|
field: 'transfer',
|
192
186
|
width: 250
|
193
187
|
},
|
194
|
-
{
|
195
|
-
title: '数据唯一标识',
|
196
|
-
field: 'sid',
|
197
|
-
width: 150
|
198
|
-
},
|
199
188
|
{
|
200
189
|
title: '冗余字段1',
|
201
190
|
field: 'field1',
|
@@ -222,8 +211,23 @@ export default {
|
|
222
211
|
width: 150
|
223
212
|
},
|
224
213
|
{
|
225
|
-
title: '
|
226
|
-
field: '
|
214
|
+
title: '备注',
|
215
|
+
field: 'remark',
|
216
|
+
width: 200
|
217
|
+
},
|
218
|
+
{
|
219
|
+
title: '回传的数据类型',
|
220
|
+
field: 'callbackDataType',
|
221
|
+
width: 150
|
222
|
+
},
|
223
|
+
{
|
224
|
+
title: '回传的单据数据编码或ID',
|
225
|
+
field: 'callbackCode',
|
226
|
+
width: 200
|
227
|
+
},
|
228
|
+
{
|
229
|
+
title: '回传的组织编码',
|
230
|
+
field: 'callbackCompanyCode',
|
227
231
|
width: 150
|
228
232
|
},
|
229
233
|
{
|
@@ -18,61 +18,54 @@
|
|
18
18
|
<table class="table-detail">
|
19
19
|
<tbody>
|
20
20
|
<tr>
|
21
|
+
<th>{{ $t1('ID') }}</th>
|
22
|
+
<td>{{ pushDataH.id }}</td>
|
21
23
|
<th>{{ $t1('任务编码') }}</th>
|
22
24
|
<td>{{ pushDataH.taskCode }}</td>
|
23
|
-
<th>{{ $t1('
|
24
|
-
<td>{{ pushDataH.
|
25
|
-
<th>{{ $t1('插入历史表时间') }}</th>
|
26
|
-
<td>{{ pushDataH.hcreateDate }}</td>
|
27
|
-
</tr>
|
28
|
-
<tr>
|
29
|
-
<th>{{ $t1('回传的数据类型') }}</th>
|
30
|
-
<td>{{ pushDataH.callbackDataType }}</td>
|
31
|
-
<th>{{ $t1('回传的单据数据编码或ID') }}</th>
|
32
|
-
<td>{{ pushDataH.callbackCode }}</td>
|
33
|
-
<th>{{ $t1('回传的组织编码') }}</th>
|
34
|
-
<td>{{ pushDataH.callbackCompanyCode }}</td>
|
25
|
+
<th>{{ $t1('数据唯一标识') }}</th>
|
26
|
+
<td colspan="3">{{ pushDataH.sid }}</td>
|
35
27
|
</tr>
|
36
28
|
<tr>
|
37
|
-
<th>{{ $t1('
|
38
|
-
<td
|
29
|
+
<th>{{ $t1('业务方产生时间点') }}</th>
|
30
|
+
<td>{{ pushDataH.generateDate }}</td>
|
31
|
+
<th>{{ $t1('业务数据标识') }}</th>
|
32
|
+
<td>{{ pushDataH.transfer }}</td>
|
39
33
|
</tr>
|
40
34
|
<tr>
|
41
|
-
<th>{{ $t1('
|
42
|
-
<td
|
35
|
+
<th>{{ $t1('冗余字段1') }}</th>
|
36
|
+
<td>{{ pushDataH.field1 }}</td>
|
37
|
+
<th>{{ $t1('冗余字段2') }}</th>
|
38
|
+
<td>{{ pushDataH.field2 }}</td>
|
39
|
+
<th>{{ $t1('冗余字段3') }}</th>
|
40
|
+
<td>{{ pushDataH.field3 }}</td>
|
43
41
|
</tr>
|
44
42
|
<tr>
|
45
|
-
<th>{{ $t1('
|
46
|
-
<td
|
43
|
+
<th>{{ $t1('冗余字段4') }}</th>
|
44
|
+
<td>{{ pushDataH.field4 }}</td>
|
45
|
+
<th>{{ $t1('冗余字段5') }}</th>
|
46
|
+
<td>{{ pushDataH.field5 }}</td>
|
47
47
|
</tr>
|
48
48
|
<tr>
|
49
|
-
<th>{{ $t1('
|
50
|
-
<td colspan="7">{{ pushDataH.
|
49
|
+
<th>{{ $t1('备注') }}</th>
|
50
|
+
<td colspan="7">{{ pushDataH.remark }}</td>
|
51
51
|
</tr>
|
52
|
-
|
53
52
|
<tr>
|
54
|
-
<th>{{ $t1('
|
55
|
-
<td colspan="7">{{ pushDataH.
|
53
|
+
<th>{{ $t1('推送数据') }}</th>
|
54
|
+
<td colspan="7">{{ pushDataH.data }}</td>
|
56
55
|
</tr>
|
57
56
|
<tr>
|
58
|
-
<th>{{ $t1('
|
59
|
-
<td
|
57
|
+
<th>{{ $t1('回传的数据类型') }}</th>
|
58
|
+
<td>{{ pushDataH.callbackDataType }}</td>
|
59
|
+
<th>{{ $t1('回传的单据数据编码或ID') }}</th>
|
60
|
+
<td>{{ pushDataH.callbackCode }}</td>
|
61
|
+
<th>{{ $t1('回传的组织编码') }}</th>
|
62
|
+
<td>{{ pushDataH.callbackCompanyCode }}</td>
|
60
63
|
</tr>
|
61
64
|
<tr>
|
62
|
-
<th>{{ $t1('
|
63
|
-
<td>{{ pushDataH.
|
64
|
-
<th>{{ $t1('冗余字段2') }}</th>
|
65
|
-
<td>{{ pushDataH.field2 }}</td>
|
66
|
-
<th>{{ $t1('冗余字段3') }}</th>
|
67
|
-
<td>{{ pushDataH.field3 }}</td>
|
68
|
-
<th>{{ $t1('冗余字段4') }}</th>
|
69
|
-
<td>{{ pushDataH.field4 }}</td>
|
65
|
+
<th>{{ $t1('服务名') }}</th>
|
66
|
+
<td colspan="7">{{ pushDataH.serverName }}</td>
|
70
67
|
</tr>
|
71
68
|
<tr>
|
72
|
-
<th>{{ $t1('冗余字段5') }}</th>
|
73
|
-
<td>{{ pushDataH.field5 }}</td>
|
74
|
-
<th>{{ $t1('ID') }}</th>
|
75
|
-
<td>{{ pushDataH.id }}</td>
|
76
69
|
<th>{{ $t1('创建人') }}</th>
|
77
70
|
<td>{{ pushDataH.createBy }}</td>
|
78
71
|
<th>{{ $t1('创建时间') }}</th>
|
@@ -82,6 +75,20 @@
|
|
82
75
|
</table>
|
83
76
|
</template>
|
84
77
|
</baseTabPane>
|
78
|
+
<baseTabPane :label="$t1('写历史队列信息')">
|
79
|
+
<template #default>
|
80
|
+
<table class="table-detail">
|
81
|
+
<tbody>
|
82
|
+
<tr>
|
83
|
+
<th>{{ $t1('写历史队列时间') }}</th>
|
84
|
+
<td>{{ pushDataH.hcreateDate }}</td>
|
85
|
+
<th>{{ $t1('结果描述') }}</th>
|
86
|
+
<td colspan="7">{{ pushDataH.resultDesc }}</td>
|
87
|
+
</tr>
|
88
|
+
</tbody>
|
89
|
+
</table>
|
90
|
+
</template>
|
91
|
+
</baseTabPane>
|
85
92
|
</baseTabs>
|
86
93
|
</el-form>
|
87
94
|
</div>
|
@@ -32,9 +32,9 @@
|
|
32
32
|
<el-input v-model="formData.taskCode" size="small" clearable/>
|
33
33
|
</template>
|
34
34
|
</vxe-form-item>
|
35
|
-
<vxe-form-item :title="$t1('
|
35
|
+
<vxe-form-item :title="$t1('数据唯一标识')+':'">
|
36
36
|
<template v-slot>
|
37
|
-
<el-input v-model="formData.
|
37
|
+
<el-input v-model="formData.sid" size="small" clearable/>
|
38
38
|
</template>
|
39
39
|
</vxe-form-item>
|
40
40
|
<vxe-form-item title="查询时间:">
|
@@ -166,46 +166,35 @@ export default {
|
|
166
166
|
fixed: 'left'
|
167
167
|
},
|
168
168
|
{
|
169
|
-
title: '
|
170
|
-
field: '
|
171
|
-
width:
|
169
|
+
title: '数据唯一标识',
|
170
|
+
field: 'sid',
|
171
|
+
width: 150
|
172
172
|
},
|
173
173
|
{
|
174
|
-
title: '
|
175
|
-
field: '
|
174
|
+
title: '业务方产生时间点',
|
175
|
+
field: 'generateDate',
|
176
176
|
width: 200,
|
177
177
|
},
|
178
178
|
{
|
179
|
-
title: '
|
179
|
+
title: '结果描述',
|
180
180
|
field: 'resultDesc',
|
181
181
|
width: 150,
|
182
182
|
},
|
183
|
-
|
184
183
|
{
|
185
|
-
title: '
|
186
|
-
field: '
|
187
|
-
width:
|
184
|
+
title: '写历史队列时间',
|
185
|
+
field: 'hcreateDate',
|
186
|
+
width: 200,
|
188
187
|
},
|
189
188
|
{
|
190
|
-
title: '
|
191
|
-
field: '
|
189
|
+
title: '服务名',
|
190
|
+
field: 'serverName',
|
192
191
|
width: 200
|
193
192
|
},
|
194
193
|
{
|
195
|
-
title: '
|
196
|
-
field: 'callbackCompanyCode',
|
197
|
-
width: 150
|
198
|
-
},
|
199
|
-
{
|
200
|
-
title: '别的服务传输数据过来的数据标识',
|
194
|
+
title: '业务数据标识',
|
201
195
|
field: 'transfer',
|
202
196
|
width: 250
|
203
197
|
},
|
204
|
-
{
|
205
|
-
title: '数据唯一标识',
|
206
|
-
field: 'sid',
|
207
|
-
width: 150
|
208
|
-
},
|
209
198
|
{
|
210
199
|
title: '冗余字段1',
|
211
200
|
field: 'field1',
|
@@ -232,10 +221,29 @@ export default {
|
|
232
221
|
width: 150
|
233
222
|
},
|
234
223
|
{
|
235
|
-
title: '
|
236
|
-
field: '
|
224
|
+
title: '备注',
|
225
|
+
field: 'remark',
|
226
|
+
width: 200
|
227
|
+
},
|
228
|
+
{
|
229
|
+
title: '回传的数据类型',
|
230
|
+
field: 'callbackDataType',
|
231
|
+
width: 150
|
232
|
+
},
|
233
|
+
{
|
234
|
+
title: '回传的单据数据编码或ID',
|
235
|
+
field: 'callbackCode',
|
237
236
|
width: 200
|
238
237
|
},
|
238
|
+
{
|
239
|
+
title: '回传的组织编码',
|
240
|
+
field: 'callbackCompanyCode',
|
241
|
+
width: 150
|
242
|
+
},
|
243
|
+
|
244
|
+
|
245
|
+
|
246
|
+
|
239
247
|
{
|
240
248
|
field: 'createBy',
|
241
249
|
title: this.$t1('创建人'),
|