From 78563aa7a2a3304e872fe35094e6925a64f5b4b2 Mon Sep 17 00:00:00 2001 From: wl <173@qq.com> Date: 星期二, 25 十月 2022 17:34:17 +0800 Subject: [PATCH] 案件图片展示 --- src/components/detail/index.vue | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/detail/index.vue b/src/components/detail/index.vue index 7a4ecc6..851e74d 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" :baseCase="baseCase"></MyProcess> - <MyFilePicture v-else-if="activeIndex === 2" :filesPictureVo="filesPictureVo" ></MyFilePicture> - <MySovleProblem v-else-if="activeIndex === 3" :problemProVo="problemProVo"></MySovleProblem> - <MyScene v-else :currentSitVo="currentSitVo"></MyScene> + <MyFilePicture v-else-if="activeIndex === 2" :filesPictureVo="filesPictureVo" :mycode='mycode'></MyFilePicture> + <MySovleProblem v-else-if="activeIndex === 3" :baseCase="baseCase" :handlePassVo="handlePassVo"></MySovleProblem> + <MyScene v-else :currentSitVo="currentSitVo" :baseCase="baseCase"></MyScene> </div> </div> </div> @@ -163,7 +163,7 @@ baseCase:{}, handlePassVo:{}, currentSitVo:{}, - problemProVo:{}, + // problemProVo:{}, filesPictureVo:{} } @@ -174,16 +174,16 @@ this.baseCase = info.baseCase; this.handlePassVo = info.handlePassVo; this.currentSitVo = info.currentSitVo; - this.problemProVo = info.problemProVo; + // this.problemProVo = info.problemProVo; this.filesPictureVo = info.filesPictureVo; - console.log(info); + console.log(info); }, methods: { changeComponent(index) { this.activeIndex = index; }, }, - props: ['info'] + props: ['info','mycode'] } </script> <style lang="scss" scoped> -- Gitblit v1.8.0