cloud-web-corejs 1.0.54-dev.1 → 1.0.54-dev.2
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/xform/form-designer/setting-panel/form-setting.vue +36 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/showRuleFlag-editor.vue +82 -5
- package/src/components/xform/form-designer/setting-panel/wfObjConfigDialog.vue +189 -0
- package/src/components/xform/form-render/indexMixin.js +36 -36
- package/src/views/bd/setting/form_script/list1.vue +1 -2
- package/src/views/bd/setting/form_template/list.vue +1 -2
- package/src/views/bd/setting/form_template/mixins/list.js +1 -1
- package/src/views/bd/setting/table_model/list.vue +1 -2
- package/src/views/user/wf/wf_obj_config/edit.vue +5 -1
- package/src/views/user/wf/wf_obj_config/list.vue +15 -0
@@ -88,6 +88,10 @@
|
|
88
88
|
clearable></el-input>
|
89
89
|
</td>
|
90
90
|
</tr>
|
91
|
+
<tr>
|
92
|
+
<th>{{ $t1('是否表单') }}</th>
|
93
|
+
<td>{{ wfObjConfig.forms ? $t1('是') : $t1('否') }}</td>
|
94
|
+
</tr>
|
91
95
|
<tr>
|
92
96
|
<th>{{ $t1('创建人') }}</th>
|
93
97
|
<td>{{ wfObjConfig.createBy }}</td>
|
@@ -122,7 +126,7 @@ export default {
|
|
122
126
|
tabIndex: 0,
|
123
127
|
isEdit: false,
|
124
128
|
dataId: '',
|
125
|
-
wfObjConfig: {serviceId: null},
|
129
|
+
wfObjConfig: {serviceId: null, forms: false},
|
126
130
|
showCompanyDialog: false,
|
127
131
|
m1Option: {},
|
128
132
|
serviceIds: []
|
@@ -284,6 +284,21 @@ export default {
|
|
284
284
|
title: this.$t1('备注'),
|
285
285
|
width: 150
|
286
286
|
},
|
287
|
+
|
288
|
+
{
|
289
|
+
field: 'forms',
|
290
|
+
title: this.$t1('是否表单'),
|
291
|
+
width: 150,
|
292
|
+
slots: {
|
293
|
+
default: ({row}) => {
|
294
|
+
if (row.forms) {
|
295
|
+
return [<div class="txt-status">{this.$t1('是')}</div>];
|
296
|
+
} else {
|
297
|
+
return [<div class="txt-status s-3">{this.$t1('否')}</div>];
|
298
|
+
}
|
299
|
+
}
|
300
|
+
}
|
301
|
+
},
|
287
302
|
{
|
288
303
|
field: 'createDate',
|
289
304
|
title: this.$t1('创建时间'),
|