n20-common-lib 1.3.73 → 1.3.75

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": "1.3.73",
3
+ "version": "1.3.75",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -15,12 +15,20 @@
15
15
  </div>
16
16
  <div v-if="authList.includes('isAddtask')" class="flex-1">
17
17
  <el-form-item label="加签" class="m-b">
18
- <el-input
19
- type="textarea"
20
- :value="addTaskList.map((c) => c.uname).join(', ')"
21
- :autosize="{ minRows: 1 }"
22
- @focus="setAddtaskV = true"
23
- />
18
+ <div class="flex-box">
19
+ <el-select v-model="addTaskType" placeholder="请选择审批方式" style="width: 10em">
20
+ <!-- <el-option label="普通节点" value="1" /> -->
21
+ <el-option label="会签并行" value="2" />
22
+ <el-option label="会签串行" value="3" />
23
+ </el-select>
24
+ <el-input
25
+ class="flex-item"
26
+ type="textarea"
27
+ :value="addTaskList.map((c) => c.uname).join(', ')"
28
+ :autosize="{ minRows: 1 }"
29
+ @focus="setAddtaskV = true"
30
+ />
31
+ </div>
24
32
  </el-form-item>
25
33
  </div>
26
34
  </div>
@@ -98,7 +106,8 @@ export default {
98
106
  setCarboncopyV: false,
99
107
  carbonCopyList: [],
100
108
  setAddtaskV: false,
101
- addTaskList: []
109
+ addTaskList: [],
110
+ addTaskType: undefined
102
111
  }
103
112
  },
104
113
  computed: {
@@ -167,7 +176,8 @@ export default {
167
176
  signText: this.signText,
168
177
  isAgentcy: isAgentcy,
169
178
  carbonCopyUserDtoList: this.carbonCopyList.map((c) => ({ userNo: c.uno, userName: c.uname })),
170
- addTaskList: this.addTaskList.map((c) => ({ userNo: c.uno, userName: c.uname }))
179
+ addTaskList: this.addTaskList.map((c) => ({ userNo: c.uno, userName: c.uname })),
180
+ addTaskType: this.addTaskType
171
181
  }
172
182
  ]
173
183
  },