cloud-web-corejs 1.0.54-dev.304 → 1.0.54-dev.306
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/wf/mixins/setCandidateDialog.js +1 -217
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1534 -1
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +4 -4
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +7 -0
- package/src/components/xform/utils/util.js +1451 -1
- package/src/views/user/wf/wf_obj_config/itemEdit.vue +3 -3
- package/src/views/user/wf/wf_obj_config/list.vue +3 -3
@@ -122,13 +122,13 @@
|
|
122
122
|
</tr>
|
123
123
|
<tr>
|
124
124
|
<th>
|
125
|
-
{{ $t1('
|
125
|
+
{{ $t1('流程启动更改候选人') }}
|
126
126
|
</th>
|
127
127
|
<td>
|
128
128
|
<el-form-item prop="startNoSetCandidate" :rules="[{ required: false, trigger: 'blur' }]">
|
129
129
|
<el-radio-group v-model="wfObjConfigItem.startNoSetCandidate">
|
130
|
-
<el-radio :label="
|
131
|
-
<el-radio :label="
|
130
|
+
<el-radio :label="false">{{ $t1('是') }}</el-radio>
|
131
|
+
<el-radio :label="true">{{ $t1('否') }}</el-radio>
|
132
132
|
</el-radio-group>
|
133
133
|
</el-form-item>
|
134
134
|
</td>
|
@@ -474,15 +474,15 @@ export default {
|
|
474
474
|
}
|
475
475
|
},
|
476
476
|
{
|
477
|
-
title: this.$t1('
|
477
|
+
title: this.$t1('流程启动更改候选人'),
|
478
478
|
field: 'startNoSetCandidate',
|
479
479
|
width: 150,
|
480
480
|
slots: {
|
481
481
|
default: ({row}) => {
|
482
482
|
if (row.startNoSetCandidate) {
|
483
|
-
return [<div class="txt-status">{this.$t1('
|
483
|
+
return [<div class="txt-status">{this.$t1('否')}</div>];
|
484
484
|
} else {
|
485
|
-
return [<div class="txt-status s-3">{this.$t1('
|
485
|
+
return [<div class="txt-status s-3">{this.$t1('是')}</div>];
|
486
486
|
}
|
487
487
|
}
|
488
488
|
}
|