n20-common-lib 2.6.70 → 2.6.72

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "2.6.70",
3
+ "version": "2.6.72",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -53,7 +53,6 @@
53
53
  <el-select
54
54
  v-if="addTaskModel === '1'"
55
55
  v-model="addTaskType"
56
- disabled
57
56
  clearable
58
57
  :placeholder="'请选择审批方式' | $lc"
59
58
  style="width: 10em"
@@ -324,7 +323,7 @@ export default {
324
323
  approvalToV: false,
325
324
  showApprovalTo: false,
326
325
  opiAndUser: false,
327
- addTaskMode: '0',
326
+ addTaskModel: '0',
328
327
  otherAtt: {},
329
328
  fileDtos: [],
330
329
  fileName: '',
@@ -389,7 +388,7 @@ export default {
389
388
  .get(`/bems/activiti/sample/getAddTaskMode`, null, { loading: false, noMsg: true })
390
389
  .then(({ data, code }) => {
391
390
  if (code === 200) {
392
- this.addTaskMode = data
391
+ this.addTaskModel = data
393
392
  }
394
393
  })
395
394
  },