cloud-web-corejs 1.0.54-dev.305 → 1.0.54-dev.307

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.
@@ -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="true">{{ $t1('是') }}</el-radio>
131
- <el-radio :label="false">{{ $t1('否') }}</el-radio>
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('')}</div>];
483
+ return [<div class="txt-status">{this.$t1('')}</div>];
484
484
  } else {
485
- return [<div class="txt-status s-3">{this.$t1('')}</div>];
485
+ return [<div class="txt-status s-3">{this.$t1('')}</div>];
486
486
  }
487
487
  }
488
488
  }