|
|
@@ -82,7 +82,7 @@
|
|
|
<script>
|
|
|
import NavBar from '@/components/NavBar'
|
|
|
import { Col, Row, Cascader, Dialog, DatetimePicker, Icon, Picker } from 'vant'
|
|
|
-import { deptTreeList, selectListApp, registration, resetTask } from '@/api/toConsult.js'
|
|
|
+import { deptTreeList, selectListApp, registration, resetTask ,getMonitorStart} from '@/api/toConsult.js'
|
|
|
import { Toast } from 'vant'
|
|
|
import OrgTree from '@/components/orgTree'
|
|
|
import { newDateMonth } from '@/utils/date.js'
|
|
|
@@ -337,9 +337,13 @@ export default {
|
|
|
},
|
|
|
// 开始调阅事件
|
|
|
startMonitorHandler(taskId) {
|
|
|
- this.taskId = taskId
|
|
|
- this.$refs.scandialog.visible = true
|
|
|
- this.globalLoading=true
|
|
|
+ this.taskId = taskId;
|
|
|
+ getMonitorStart({taskId:taskId},res=>{
|
|
|
+ console.log(res);
|
|
|
+ this.$refs.scandialog.visible = true;
|
|
|
+ this.globalLoading=true;
|
|
|
+ })
|
|
|
+
|
|
|
},
|
|
|
|
|
|
//查看调阅详情
|