4511fb74 by renchao@pashanhoo.com

style:流程图模块功能的完善

1 parent 14da5042
...@@ -168,10 +168,13 @@ ...@@ -168,10 +168,13 @@
168 this.taskCommentList = (this.formData.allCommentList || []).filter(item => { 168 this.taskCommentList = (this.formData.allCommentList || []).filter(item => {
169 return item.taskDefKey === this.selectTaskId 169 return item.taskDefKey === this.selectTaskId
170 }) 170 })
171 if (this.selectTaskId.length > 3) {
172 this.taskCommentList = this.formData.allCommentList;
173 }
171 }, 174 },
172 // 下拉列表切换 175 // 下拉列表切换
173 handleSelect (val) { 176 handleSelect (val) {
174 177 console.log(val, '22222222222222222');
175 this.taskCommentList = (this.formData.allCommentList || []).filter(item => { 178 this.taskCommentList = (this.formData.allCommentList || []).filter(item => {
176 return item.taskDefKey === val 179 return item.taskDefKey === val
177 }) 180 })
......