|  | @@ -61,7 +61,7 @@
 | 
	
		
			
				|  |  |              size="large"
 | 
	
		
			
				|  |  |              :label="item.planStartTime+'~'+item.planEndTime"
 | 
	
		
			
				|  |  |              is-link
 | 
	
		
			
				|  |  | -            @click="linkHandler(item.status,item.id)"
 | 
	
		
			
				|  |  | +            @click="linkHandler(item.status,item.id,item)"
 | 
	
		
			
				|  |  |            >
 | 
	
		
			
				|  |  |              <template #title>
 | 
	
		
			
				|  |  |                <span class="custom-title">{{ item.taskName }}</span>
 | 
	
	
		
			
				|  | @@ -160,9 +160,20 @@ export default {
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    methods: {
 | 
	
		
			
				|  |  |      //单元格点击事件
 | 
	
		
			
				|  |  | -    linkHandler(status,id){
 | 
	
		
			
				|  |  | +    linkHandler(status,id,item){
 | 
	
		
			
				|  |  | +      
 | 
	
		
			
				|  |  |        if(status==0){
 | 
	
		
			
				|  |  | -        this.startMonitorHandler(id)
 | 
	
		
			
				|  |  | +       
 | 
	
		
			
				|  |  | +        //判断当前时间是否小于开始时间 小于则不能进行操作
 | 
	
		
			
				|  |  | +        let date = new Date().getTime()
 | 
	
		
			
				|  |  | +        let startDate = Date.parse(new Date(item.planStartTime))
 | 
	
		
			
				|  |  | +       
 | 
	
		
			
				|  |  | +        if(date<=startDate){
 | 
	
		
			
				|  |  | +          Toast.success('当前调阅任务还未开始,不能进行调阅')
 | 
	
		
			
				|  |  | +        }else{
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +          this.startMonitorHandler(id)
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  |        if(status!=0&&status!=3){
 | 
	
		
			
				|  |  |          this.lookInfoHandler(id,status)
 |