| 
															
																@@ -29,6 +29,7 @@ 
															 | 
														
													
												
													
														
															| 
															 | 
															
																               <span>我的待办({{tablePage.total}})</span> 
															 | 
															
															 | 
															
																               <span>我的待办({{tablePage.total}})</span> 
															 | 
														
													
												
													
														
															| 
															 | 
															
																  
															 | 
															
															 | 
															
																  
															 | 
														
													
												
													
														
															| 
															 | 
															
																               <div style="float:right;align-items:center;display:flex;height: 18px"> 
															 | 
															
															 | 
															
																               <div style="float:right;align-items:center;display:flex;height: 18px"> 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+                <el-button type="text" style="float:right" @click="resetSearch()">刷新</el-button> 
															 | 
														
													
												
													
														
															| 
															 | 
															
																                 <el-button type="text" style="float:right" @click="toPendingList()">更多>></el-button> 
															 | 
															
															 | 
															
																                 <el-button type="text" style="float:right" @click="toPendingList()">更多>></el-button> 
															 | 
														
													
												
													
														
															| 
															 | 
															
																  
															 | 
															
															 | 
															
																  
															 | 
														
													
												
													
														
															| 
															 | 
															
																               </div> 
															 | 
															
															 | 
															
																               </div> 
															 | 
														
													
												
											
												
													
														
															 | 
															
																@@ -305,7 +306,8 @@ 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         loading2: false, 
															 | 
															
															 | 
															
																         loading2: false, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         visible: false, 
															 | 
															
															 | 
															
																         visible: false, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         currentTask: null, 
															 | 
															
															 | 
															
																         currentTask: null, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																-        processInstanceId: '' 
															 | 
															
															 | 
															
																 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+        processInstanceId: '', 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+        timer: null 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         // pickerOptions: { 
															 | 
															
															 | 
															
																         // pickerOptions: { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         //   shortcuts: [{ 
															 | 
															
															 | 
															
																         //   shortcuts: [{ 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         //     text: '最近一周', 
															 | 
															
															 | 
															
																         //     text: '最近一周', 
															 | 
														
													
												
											
												
													
														
															 | 
															
																@@ -353,7 +355,23 @@ 
															 | 
														
													
												
													
														
															| 
															 | 
															
																     }, 
															 | 
															
															 | 
															
																     }, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																     // watch: { 
															 | 
															
															 | 
															
																     // watch: { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																     // }, 
															 | 
															
															 | 
															
																     // }, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+    mounted () { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      // 页面加载后 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      // 1.在执行定时器前先执行一次获取接口数据的操作函数, 否则接口会1秒钟后才调用 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      // 2.为了避免退出当前页面后,在其他页面也继续调用接口,退出前需要清除定时器. 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      this.queryInfo() 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      this.timer = setInterval(() => { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+        setTimeout(this.queryInfo, 0) 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      }, 60000) 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+    }, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+    beforeDestroy () { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      clearInterval(this.timer) 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      this.timer = null 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+    }, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																     methods: { 
															 | 
															
															 | 
															
																     methods: { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      queryInfo () { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+        this.refreshList() 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      }, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																       toNotice () { 
															 | 
															
															 | 
															
																       toNotice () { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         this.$router.push('/notify/MyNotifyList') 
															 | 
															
															 | 
															
																         this.$router.push('/notify/MyNotifyList') 
															 | 
														
													
												
													
														
															| 
															 | 
															
																       }, 
															 | 
															
															 | 
															
																       }, 
															 | 
														
													
												
											
												
													
														
															 | 
															
																@@ -370,9 +388,13 @@ 
															 | 
														
													
												
													
														
															| 
															 | 
															
																           } 
															 | 
															
															 | 
															
																           } 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         }) 
															 | 
															
															 | 
															
																         }) 
															 | 
														
													
												
													
														
															| 
															 | 
															
																       }, 
															 | 
															
															 | 
															
																       }, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      resetSearch () { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+        this.refreshList() 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+      }, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																       // 获取数据列表 
															 | 
															
															 | 
															
																       // 获取数据列表 
															 | 
														
													
												
													
														
															| 
															 | 
															
																       refreshList () { 
															 | 
															
															 | 
															
																       refreshList () { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         this.loading = true 
															 | 
															
															 | 
															
																         this.loading = true 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+        this.loading2 = true 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         this.taskService.todoList({ 
															 | 
															
															 | 
															
																         this.taskService.todoList({ 
															 | 
														
													
												
													
														
															| 
															 | 
															
																           'current': this.tablePage.currentPage, 
															 | 
															
															 | 
															
																           'current': this.tablePage.currentPage, 
															 | 
														
													
												
													
														
															| 
															 | 
															
																           'size': this.tablePage.pageSize, 
															 | 
															
															 | 
															
																           'size': this.tablePage.pageSize, 
															 | 
														
													
												
											
												
													
														
															 | 
															
																@@ -392,7 +414,7 @@ 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         }).then(({data}) => { 
															 | 
															
															 | 
															
																         }).then(({data}) => { 
															 | 
														
													
												
													
														
															| 
															 | 
															
																           this.dataLists = data.records 
															 | 
															
															 | 
															
																           this.dataLists = data.records 
															 | 
														
													
												
													
														
															| 
															 | 
															
																           this.noticePage.total = data.total 
															 | 
															
															 | 
															
																           this.noticePage.total = data.total 
															 | 
														
													
												
													
														
															| 
															 | 
															
																-          this.loading = false 
															 | 
															
															 | 
															
																 
															 | 
														
													
												
													
														
															| 
															 | 
															
																 
															 | 
															
															 | 
															
																+          this.loading2 = false 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         }) 
															 | 
															
															 | 
															
																         }) 
															 | 
														
													
												
													
														
															| 
															 | 
															
																         this.noticeService.list({ 
															 | 
															
															 | 
															
																         this.noticeService.list({ 
															 | 
														
													
												
													
														
															| 
															 | 
															
																           'current': this.noticePageList.currentPage, 
															 | 
															
															 | 
															
																           'current': this.noticePageList.currentPage, 
															 |