|
|
@@ -170,12 +170,12 @@ export default {
|
|
|
if (date <= startDate) {
|
|
|
Toast.success('当前调阅任务还未开始,不能进行调阅')
|
|
|
} else {
|
|
|
- this.startMonitorHandler(id)
|
|
|
+ this.startMonitorHandler(id,status)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if(status == 1){
|
|
|
- this.startMonitorHandler(id);
|
|
|
+ this.startMonitorHandler(id,status);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
@@ -336,7 +336,7 @@ export default {
|
|
|
this.selectListAppHandler()
|
|
|
},
|
|
|
// 开始调阅事件
|
|
|
- startMonitorHandler(taskId) {
|
|
|
+ startMonitorHandler(taskId,status) {
|
|
|
this.taskId = taskId;
|
|
|
let obj = {taskId:taskId}
|
|
|
getMonitorStart(obj).then(res => {
|
|
|
@@ -344,7 +344,7 @@ export default {
|
|
|
let dayNums = data.dayNums;
|
|
|
let noComplete = data.noComplete;
|
|
|
if (noComplete > 0) {
|
|
|
- this.$router.push('/consultInfo/' + this.taskId)
|
|
|
+ this.$router.push('/consultInfo/' + taskId + '_' + status)
|
|
|
}else{
|
|
|
|
|
|
if(dayNums >= 5){
|