From 4d9a35462803c7392dedca8d95fe21ff3d949466 Mon Sep 17 00:00:00 2001 From: “dzb” <2632970487@qq.com> Date: 星期一, 03 十月 2022 08:42:36 +0800 Subject: [PATCH] 用户、角色、部门,新增批量操作,案件池详情展示、以及调度 --- src/components/detail/index.vue | 16 +++++++++------- 1 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/components/detail/index.vue b/src/components/detail/index.vue index a229646..f398e1a 100644 --- a/src/components/detail/index.vue +++ b/src/components/detail/index.vue @@ -119,9 +119,9 @@ <div class="show-item"> <div class="show-wrap"> <MyProcess v-if="activeIndex === 1" :handlePassVo="handlePassVo"></MyProcess> - <MyFilePicture v-else-if="activeIndex === 2" :currentSitVo="currentSitVo" ></MyFilePicture> + <MyFilePicture v-else-if="activeIndex === 2" :filesPictureVo="filesPictureVo" ></MyFilePicture> <MySovleProblem v-else-if="activeIndex === 3" :problemProVo="problemProVo"></MySovleProblem> - <MyScene v-else></MyScene> + <MyScene v-else :currentSitVo="currentSitVo"></MyScene> </div> </div> </div> @@ -133,7 +133,7 @@ import MySovleProblem from '@/components/solveProblem' import MyScene from '@/components/scene' export default { - components: { + components: { MyProcess, MyFilePicture, MySovleProblem, MyScene }, data() { @@ -159,22 +159,24 @@ title: '鐜板満鎯呭喌', index: 4, }, - ], + ], baseCase:{}, handlePassVo:{}, currentSitVo:{}, problemProVo:{}, + filesPictureVo:{} } }, created() { console.log('created'); - const {info} = this; + const {info} = this; this.baseCase = info.baseCase; this.handlePassVo = info.handlePassVo; this.currentSitVo = info.currentSitVo; - this.problemProVo = info.currentSitVo; - console.log(info); + this.problemProVo = info.problemProVo; + this.filesPictureVo = info.filesPictureVo; + console.log(info); }, methods: { changeComponent(index) { -- Gitblit v1.8.0