cloud-web-corejs 1.0.54-dev.277 → 1.0.54-dev.279
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/vxeFilter/mixin.js +1 -295
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +632 -632
- package/src/layout/components/extractedCode/viewDialog.vue +1 -0
- package/src/views/bd/setting/form_template/mixins/edit.js +234 -209
- package/src/views/bd/setting/push_data/edit.vue +15 -15
- package/src/views/bd/setting/push_data/list.vue +5 -15
- package/src/views/bd/setting/push_data_h/edit.vue +15 -15
- package/src/views/bd/setting/push_data_h/list.vue +5 -19
- package/src/views/bd/setting/table_model/edit.vue +12 -0
- package/src/views/bd/setting/table_model/mixins/edit.js +66 -14
@@ -25,6 +25,7 @@
|
|
25
25
|
:_viewType="1"
|
26
26
|
@reload="$reloadHandle"
|
27
27
|
@openDesignDialog="openDesingerDialogByChild"
|
28
|
+
:extractedObj="extractedObj"
|
28
29
|
></component>
|
29
30
|
<el-drawer :title="$t1('表单设计({formName})',{formName})" :visible.sync="showDesingerDialog" :modal="false"
|
30
31
|
:destroy-on-close="true"
|
@@ -1,209 +1,234 @@
|
|
1
|
-
import projectTagView from "@base/components/projectTag/view.vue";
|
2
|
-
import MenuKindDialog from "@base/views/bd/setting/menu_kind/dialog.vue";
|
3
|
-
import preformDialog from "@base/views/bd/setting/form_template/preformDialog.vue";
|
4
|
-
import formOplogTable from "@base/components/formOplog/index.vue";
|
5
|
-
import {getBdFlag} from "@base/api/user";
|
6
|
-
import otherAuthDialog from "../otherAuthDialog.vue";
|
7
|
-
|
8
|
-
let modules = {};
|
9
|
-
modules = {
|
10
|
-
name: 'bd_form_templateEdit',
|
11
|
-
props: {
|
12
|
-
_dataId: [String, Number],
|
13
|
-
currentFormType: Object,
|
14
|
-
readonly: Boolean,
|
15
|
-
otherFlag:Boolean
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
this.
|
59
|
-
}
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
}
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
this.$
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
}
|
209
|
-
|
1
|
+
import projectTagView from "@base/components/projectTag/view.vue";
|
2
|
+
import MenuKindDialog from "@base/views/bd/setting/menu_kind/dialog.vue";
|
3
|
+
import preformDialog from "@base/views/bd/setting/form_template/preformDialog.vue";
|
4
|
+
import formOplogTable from "@base/components/formOplog/index.vue";
|
5
|
+
import {getBdFlag} from "@base/api/user";
|
6
|
+
import otherAuthDialog from "../otherAuthDialog.vue";
|
7
|
+
|
8
|
+
let modules = {};
|
9
|
+
modules = {
|
10
|
+
name: 'bd_form_templateEdit',
|
11
|
+
props: {
|
12
|
+
_dataId: [String, Number],
|
13
|
+
currentFormType: Object,
|
14
|
+
readonly: Boolean,
|
15
|
+
otherFlag:Boolean,
|
16
|
+
extractedObj:{
|
17
|
+
type:Object,
|
18
|
+
default:()=> null
|
19
|
+
}
|
20
|
+
},
|
21
|
+
components: {
|
22
|
+
projectTagView,
|
23
|
+
MenuKindDialog,
|
24
|
+
preformDialog,
|
25
|
+
formOplogTable,
|
26
|
+
otherAuthDialog
|
27
|
+
},
|
28
|
+
data() {
|
29
|
+
return {
|
30
|
+
isEdit: false,
|
31
|
+
tabIndex: 'first',
|
32
|
+
dataId: '',
|
33
|
+
formTemplate: {
|
34
|
+
enabled: true,
|
35
|
+
history: false,
|
36
|
+
serviceId: 'user',
|
37
|
+
formTypeCode: null,
|
38
|
+
menuKindName: null,
|
39
|
+
menuKindCode: null,
|
40
|
+
serviceName: null,
|
41
|
+
formTemplateTagDTOs: [],
|
42
|
+
hasWf: false
|
43
|
+
},
|
44
|
+
isInited: false,
|
45
|
+
serviceIds: ['user'],
|
46
|
+
showMenuKindDialog: false,
|
47
|
+
isDev: true,
|
48
|
+
showPreformDialog: false,
|
49
|
+
menuKindAuth: {
|
50
|
+
editAuth: 0
|
51
|
+
},
|
52
|
+
sid: null,
|
53
|
+
showOtherAuthDialog:false
|
54
|
+
};
|
55
|
+
},
|
56
|
+
created() {
|
57
|
+
if(this.extractedObj?.objx?.id){
|
58
|
+
this.dataId = this.extractedObj.obj.id;
|
59
|
+
}else if (this._dataId) {
|
60
|
+
this.dataId = this._dataId;
|
61
|
+
} else {
|
62
|
+
this.formTemplate.menuKindName = this.currentFormType?.name || null;
|
63
|
+
this.formTemplate.menuKindCode = this.currentFormType?.menuKindCode || null;
|
64
|
+
this.formTemplate.serviceName = this.currentFormType?.serviceName || null;
|
65
|
+
}
|
66
|
+
},
|
67
|
+
mounted() {
|
68
|
+
this.getBdEnv();
|
69
|
+
this.getData();
|
70
|
+
},
|
71
|
+
methods: {
|
72
|
+
initData(formData){
|
73
|
+
this.isEdit = true;
|
74
|
+
this.formTemplate = formData || {};
|
75
|
+
this.getMenuKindAuth(this.formTemplate.menuKindCode);
|
76
|
+
this.$nextTick(() => {
|
77
|
+
this.isInited = true;
|
78
|
+
});
|
79
|
+
},
|
80
|
+
getData() {
|
81
|
+
if(this.extractedObj?.objx){
|
82
|
+
this.initData(this.extractedObj.objx)
|
83
|
+
}else if (this.dataId) {
|
84
|
+
this.$commonHttp({
|
85
|
+
aes: true,
|
86
|
+
url: USER_PREFIX + `/formTemplate/getByFormCode`,
|
87
|
+
method: `post`,
|
88
|
+
data: {
|
89
|
+
stringOne: this.dataId
|
90
|
+
},
|
91
|
+
isLoading: true,
|
92
|
+
modalStrictly: true,
|
93
|
+
success: res => {
|
94
|
+
this.initData(res.objx)
|
95
|
+
//获取操作日志数据
|
96
|
+
this.$refs['oplogTable'].initData({
|
97
|
+
param: () => {
|
98
|
+
return {
|
99
|
+
logType: "FormTemplate",
|
100
|
+
logObjCode: this.formTemplate.formCode
|
101
|
+
};
|
102
|
+
}
|
103
|
+
});
|
104
|
+
/* this.formTemplate = res.objx || {};
|
105
|
+
this.getMenuKindAuth(this.formTemplate.menuKindCode);
|
106
|
+
this.$nextTick(() => {
|
107
|
+
this.isInited = true;
|
108
|
+
});
|
109
|
+
//获取操作日志数据
|
110
|
+
this.$refs['oplogTable'].initData({
|
111
|
+
param: () => {
|
112
|
+
return {
|
113
|
+
logType: "FormTemplate",
|
114
|
+
logObjCode: this.formTemplate.formCode
|
115
|
+
};
|
116
|
+
}
|
117
|
+
}); */
|
118
|
+
}
|
119
|
+
});
|
120
|
+
} else {
|
121
|
+
this.getMenuKindAuth(this.formTemplate.menuKindCode);
|
122
|
+
this.isInited = true;
|
123
|
+
}
|
124
|
+
},
|
125
|
+
saveData() {
|
126
|
+
this.$refs.editForm.$baseValidate(valid => {
|
127
|
+
if (valid) {
|
128
|
+
this.openPreformDialog();
|
129
|
+
}
|
130
|
+
});
|
131
|
+
},
|
132
|
+
saveDataHandle(preformData) {
|
133
|
+
var url = USER_PREFIX + (this.isEdit ? `/formTemplate/update` : `/formTemplate/save`);
|
134
|
+
let formData = {
|
135
|
+
...this.formTemplate,
|
136
|
+
logContent: preformData.logContent
|
137
|
+
};
|
138
|
+
this.$http({
|
139
|
+
aes: true,
|
140
|
+
url: url,
|
141
|
+
method: `post`,
|
142
|
+
data: formData,
|
143
|
+
isLoading: true,
|
144
|
+
success: res => {
|
145
|
+
this.$message({
|
146
|
+
message: res.content,
|
147
|
+
type: 'success',
|
148
|
+
duration: 500,
|
149
|
+
onClose: t => {
|
150
|
+
if (this.isEdit) {
|
151
|
+
this.$baseReload();
|
152
|
+
} else {
|
153
|
+
this.$baseReload({
|
154
|
+
updateParam: {
|
155
|
+
_dataId: this.formTemplate.formCode
|
156
|
+
}
|
157
|
+
});
|
158
|
+
}
|
159
|
+
}
|
160
|
+
});
|
161
|
+
}
|
162
|
+
});
|
163
|
+
},
|
164
|
+
openPreformDialog() {
|
165
|
+
this.showPreformDialog = true;
|
166
|
+
},
|
167
|
+
confirmPreformDialog(preformData) {
|
168
|
+
this.saveDataHandle(preformData);
|
169
|
+
},
|
170
|
+
confirmInsertMenuKind(rows) {
|
171
|
+
if (rows.length > 0) {
|
172
|
+
let row = rows[0];
|
173
|
+
this.$set(this.formTemplate, 'menuKindCode', row.menuKindCode);
|
174
|
+
this.$set(this.formTemplate, 'menuKindName', row.name);
|
175
|
+
}
|
176
|
+
},
|
177
|
+
getBdEnv() {
|
178
|
+
getBdFlag({
|
179
|
+
success: res => {
|
180
|
+
this.isDev = res.objx == 1
|
181
|
+
}
|
182
|
+
});
|
183
|
+
},
|
184
|
+
openDesignDialog() {
|
185
|
+
let readonly = !this.menuKindAuth.editAuth
|
186
|
+
this.$emit('openDesignDialog', {
|
187
|
+
row: this.formTemplate,
|
188
|
+
readonly,
|
189
|
+
callback: () => {
|
190
|
+
this.$baseReload()
|
191
|
+
}
|
192
|
+
})
|
193
|
+
},
|
194
|
+
getMenuKindAuth(menuKindCode) {
|
195
|
+
if(this.otherFlag){
|
196
|
+
this.getOtherMenuKindAuth();
|
197
|
+
}else if (menuKindCode) {
|
198
|
+
this.$http({
|
199
|
+
// aes: true,
|
200
|
+
url: USER_PREFIX + '/menu_kind_auth/getAuth',
|
201
|
+
method: `post`,
|
202
|
+
data: {stringOne: menuKindCode},
|
203
|
+
isLoading: true,
|
204
|
+
success: res => {
|
205
|
+
this.menuKindAuth = res.objx || {}
|
206
|
+
}
|
207
|
+
});
|
208
|
+
}
|
209
|
+
},
|
210
|
+
|
211
|
+
getOtherMenuKindAuth() {
|
212
|
+
if (this.otherFlag && this.formTemplate.sid) {
|
213
|
+
this.$http({
|
214
|
+
aes: true,
|
215
|
+
url: USER_PREFIX + "/form_template_auth/getAuth",
|
216
|
+
method: `post`,
|
217
|
+
data: {stringOne: this.formTemplate.sid},
|
218
|
+
isLoading: true,
|
219
|
+
success: (res) => {
|
220
|
+
this.menuKindAuth = res.objx || {};
|
221
|
+
},
|
222
|
+
});
|
223
|
+
}
|
224
|
+
},
|
225
|
+
openOtherAuthDialog(){
|
226
|
+
this.sid = this.formTemplate.sid
|
227
|
+
this.showOtherAuthDialog = true
|
228
|
+
},
|
229
|
+
confirmOtherAuthDialog(){
|
230
|
+
this.$baseReload()
|
231
|
+
},
|
232
|
+
}
|
233
|
+
};
|
234
|
+
export default modules
|
@@ -22,14 +22,22 @@
|
|
22
22
|
<td>{{ pushData.id }}</td>
|
23
23
|
<th>{{ $t1('任务编码') }}</th>
|
24
24
|
<td>{{ pushData.taskCode }}</td>
|
25
|
+
<th>{{ $t1('业务方产生时间点') }}</th>
|
26
|
+
<td>{{ pushData.generateDate }}</td>
|
27
|
+
</tr>
|
28
|
+
<tr>
|
29
|
+
<th>{{ $t1('组织编码') }}</th>
|
30
|
+
<td>{{ pushData.callbackCompanyCode }}</td>
|
25
31
|
<th>{{ $t1('数据唯一标识') }}</th>
|
26
32
|
<td colspan="3">{{ pushData.sid }}</td>
|
27
33
|
</tr>
|
28
34
|
<tr>
|
29
|
-
<th>{{ $t1('业务方产生时间点') }}</th>
|
30
|
-
<td>{{ pushData.generateDate }}</td>
|
31
35
|
<th>{{ $t1('业务数据标识') }}</th>
|
32
|
-
<td>{{ pushData.transfer }}</td>
|
36
|
+
<td colspan="7">{{ pushData.transfer }}</td>
|
37
|
+
</tr>
|
38
|
+
<tr>
|
39
|
+
<th>{{ $t1('推送数据') }}</th>
|
40
|
+
<td colspan="7">{{ pushData.data }}</td>
|
33
41
|
</tr>
|
34
42
|
<tr>
|
35
43
|
<th>{{ $t1('冗余字段1') }}</th>
|
@@ -49,18 +57,6 @@
|
|
49
57
|
<th>{{ $t1('备注') }}</th>
|
50
58
|
<td colspan="7">{{ pushData.remark }}</td>
|
51
59
|
</tr>
|
52
|
-
<tr>
|
53
|
-
<th>{{ $t1('推送数据') }}</th>
|
54
|
-
<td colspan="7">{{ pushData.data }}</td>
|
55
|
-
</tr>
|
56
|
-
<tr>
|
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>
|
63
|
-
</tr>
|
64
60
|
<tr>
|
65
61
|
<th>{{ $t1('服务名') }}</th>
|
66
62
|
<td colspan="7">{{ pushData.serverName }}</td>
|
@@ -70,6 +66,10 @@
|
|
70
66
|
<td>{{ pushData.createBy }}</td>
|
71
67
|
<th>{{ $t1('创建时间') }}</th>
|
72
68
|
<td>{{ pushData.createDate }}</td>
|
69
|
+
<th class="no"></th>
|
70
|
+
<td></td>
|
71
|
+
<th class="no"></th>
|
72
|
+
<td></td>
|
73
73
|
</tr>
|
74
74
|
</tbody>
|
75
75
|
</table>
|
@@ -23,7 +23,7 @@
|
|
23
23
|
<template v-slot>
|
24
24
|
<el-select v-model="serverName">
|
25
25
|
<el-option v-for="(serviceId,index) in serviceIds" :key="index" :value="serviceId"
|
26
|
-
:label="serviceId"></el-option>
|
26
|
+
:label="serviceId" @change="searchEvent"></el-option>
|
27
27
|
</el-select>
|
28
28
|
</template>
|
29
29
|
</vxe-form-item>
|
@@ -211,25 +211,15 @@ export default {
|
|
211
211
|
width: 150
|
212
212
|
},
|
213
213
|
{
|
214
|
-
title: '
|
215
|
-
field: '
|
216
|
-
width: 200
|
217
|
-
},
|
218
|
-
{
|
219
|
-
title: '回传的数据类型',
|
220
|
-
field: 'callbackDataType',
|
214
|
+
title: '组织编码',
|
215
|
+
field: 'callbackCompanyCode',
|
221
216
|
width: 150
|
222
217
|
},
|
223
218
|
{
|
224
|
-
title: '
|
225
|
-
field: '
|
219
|
+
title: '备注',
|
220
|
+
field: 'remark',
|
226
221
|
width: 200
|
227
222
|
},
|
228
|
-
{
|
229
|
-
title: '回传的组织编码',
|
230
|
-
field: 'callbackCompanyCode',
|
231
|
-
width: 150
|
232
|
-
},
|
233
223
|
{
|
234
224
|
field: 'createBy',
|
235
225
|
title: this.$t1('创建人'),
|
@@ -22,14 +22,22 @@
|
|
22
22
|
<td>{{ pushDataH.id }}</td>
|
23
23
|
<th>{{ $t1('任务编码') }}</th>
|
24
24
|
<td>{{ pushDataH.taskCode }}</td>
|
25
|
+
<th>{{ $t1('业务方产生时间点') }}</th>
|
26
|
+
<td>{{ pushDataH.generateDate }}</td>
|
27
|
+
</tr>
|
28
|
+
<tr>
|
29
|
+
<th>{{ $t1('组织编码') }}</th>
|
30
|
+
<td>{{ pushDataH.callbackCompanyCode }}</td>
|
25
31
|
<th>{{ $t1('数据唯一标识') }}</th>
|
26
32
|
<td colspan="3">{{ pushDataH.sid }}</td>
|
27
33
|
</tr>
|
28
34
|
<tr>
|
29
|
-
<th>{{ $t1('业务方产生时间点') }}</th>
|
30
|
-
<td>{{ pushDataH.generateDate }}</td>
|
31
35
|
<th>{{ $t1('业务数据标识') }}</th>
|
32
|
-
<td>{{ pushDataH.transfer }}</td>
|
36
|
+
<td colspan="7">{{ pushDataH.transfer }}</td>
|
37
|
+
</tr>
|
38
|
+
<tr>
|
39
|
+
<th>{{ $t1('推送数据') }}</th>
|
40
|
+
<td colspan="7">{{ pushDataH.data }}</td>
|
33
41
|
</tr>
|
34
42
|
<tr>
|
35
43
|
<th>{{ $t1('冗余字段1') }}</th>
|
@@ -49,18 +57,6 @@
|
|
49
57
|
<th>{{ $t1('备注') }}</th>
|
50
58
|
<td colspan="7">{{ pushDataH.remark }}</td>
|
51
59
|
</tr>
|
52
|
-
<tr>
|
53
|
-
<th>{{ $t1('推送数据') }}</th>
|
54
|
-
<td colspan="7">{{ pushDataH.data }}</td>
|
55
|
-
</tr>
|
56
|
-
<tr>
|
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>
|
63
|
-
</tr>
|
64
60
|
<tr>
|
65
61
|
<th>{{ $t1('服务名') }}</th>
|
66
62
|
<td colspan="7">{{ pushDataH.serverName }}</td>
|
@@ -70,6 +66,10 @@
|
|
70
66
|
<td>{{ pushDataH.createBy }}</td>
|
71
67
|
<th>{{ $t1('创建时间') }}</th>
|
72
68
|
<td>{{ pushDataH.createDate }}</td>
|
69
|
+
<th class="no"></th>
|
70
|
+
<td></td>
|
71
|
+
<th class="no"></th>
|
72
|
+
<td></td>
|
73
73
|
</tr>
|
74
74
|
</tbody>
|
75
75
|
</table>
|
@@ -21,7 +21,7 @@
|
|
21
21
|
@submit="searchEvent" @reset="searchEvent">
|
22
22
|
<vxe-form-item :title="$t1('服务名')+':'">
|
23
23
|
<template v-slot>
|
24
|
-
<el-select v-model="serverName">
|
24
|
+
<el-select v-model="serverName" @change="searchEvent">
|
25
25
|
<el-option v-for="(serviceId,index) in serviceIds" :key="index" :value="serviceId"
|
26
26
|
:label="serviceId"></el-option>
|
27
27
|
</el-select>
|
@@ -221,29 +221,15 @@ export default {
|
|
221
221
|
width: 150
|
222
222
|
},
|
223
223
|
{
|
224
|
-
title: '
|
225
|
-
field: '
|
226
|
-
width: 200
|
227
|
-
},
|
228
|
-
{
|
229
|
-
title: '回传的数据类型',
|
230
|
-
field: 'callbackDataType',
|
224
|
+
title: '组织编码',
|
225
|
+
field: 'callbackCompanyCode',
|
231
226
|
width: 150
|
232
227
|
},
|
233
228
|
{
|
234
|
-
title: '
|
235
|
-
field: '
|
229
|
+
title: '备注',
|
230
|
+
field: 'remark',
|
236
231
|
width: 200
|
237
232
|
},
|
238
|
-
{
|
239
|
-
title: '回传的组织编码',
|
240
|
-
field: 'callbackCompanyCode',
|
241
|
-
width: 150
|
242
|
-
},
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
233
|
{
|
248
234
|
field: 'createBy',
|
249
235
|
title: this.$t1('创建人'),
|