cloud-web-corejs 1.0.53 → 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.
@@ -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('创建时间'),