|
@@ -3,7 +3,7 @@
|
|
<div class="vfpHeader">
|
|
<div class="vfpHeader">
|
|
<div class="titleOne">项目管理</div>
|
|
<div class="titleOne">项目管理</div>
|
|
<div class="smallTitle" style="left: 100px;">项目进展详情</div>
|
|
<div class="smallTitle" style="left: 100px;">项目进展详情</div>
|
|
- <el-button type="primary" @click="$router.back()">返回</el-button>
|
|
|
|
|
|
+ <el-button type="primary" @click="$router.push('/ProjectManagement')">返回</el-button>
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<hr>
|
|
|
|
|
|
@@ -19,22 +19,19 @@
|
|
<!-- 特色创客空间建设 -->
|
|
<!-- 特色创客空间建设 -->
|
|
<MakerSpaceWordShow v-if="show==0 && this.$route.query['Id']=='5f7a66d5-c206-11ed-a4cd-509a4c5b67cf'"/>
|
|
<MakerSpaceWordShow v-if="show==0 && this.$route.query['Id']=='5f7a66d5-c206-11ed-a4cd-509a4c5b67cf'"/>
|
|
<!-- 活动开展 -->
|
|
<!-- 活动开展 -->
|
|
- <ProjectManagement3 :changeShow="goto" v-if="show==1"></ProjectManagement3>
|
|
|
|
|
|
+ <ProjectManagementActivity :changeShow="goto" v-if="show==1"/>
|
|
<!-- 活动开展详细 -->
|
|
<!-- 活动开展详细 -->
|
|
- <!-- <ProjectManagement3_1 v-if="show==5"/> -->
|
|
|
|
- <!-- 项目附件 -->
|
|
|
|
- <!-- <ProjectManagement4 v-if="show==2"></ProjectManagement4> -->
|
|
|
|
|
|
+ <ProjectManagementActivityDetail v-if="show==5"/>
|
|
<!-- 项目结题文件 -->
|
|
<!-- 项目结题文件 -->
|
|
- <ProjectManagement5 v-if="show==2"></ProjectManagement5>
|
|
|
|
|
|
+ <ProjectManagementEndProjectFile v-if="show==2"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
|
- import ProjectManagement3 from './components/ProjectManagement3.vue'
|
|
|
|
- // import ProjectManagement3_1 from './components/ProjectManagement3_1.vue'
|
|
|
|
- // import ProjectManagement4 from './components/ProjectManagement4.vue'
|
|
|
|
- import ProjectManagement5 from './components/ProjectManagement5.vue'
|
|
|
|
|
|
+ import ProjectManagementActivity from './components/ProjectManagementActivity.vue'
|
|
|
|
+ import ProjectManagementActivityDetail from './components/ProjectManagementActivityDetail.vue'
|
|
|
|
+ import ProjectManagementEndProjectFile from './components/ProjectManagementEndProjectFile.vue'
|
|
|
|
|
|
// //特色创客空间建设
|
|
// //特色创客空间建设
|
|
import MakerSpaceWordShow from './components/MakerSpaceWordShow.vue'
|
|
import MakerSpaceWordShow from './components/MakerSpaceWordShow.vue'
|
|
@@ -43,24 +40,17 @@
|
|
export default {
|
|
export default {
|
|
components:{
|
|
components:{
|
|
MakerSpaceWordShow,
|
|
MakerSpaceWordShow,
|
|
- // ProjectManagement1,
|
|
|
|
- // ProjectManagement2,
|
|
|
|
- ProjectManagement3,
|
|
|
|
- // ProjectManagement3_1,
|
|
|
|
- // ProjectManagement4,
|
|
|
|
- ProjectManagement5,
|
|
|
|
|
|
+ ProjectManagementActivity,
|
|
|
|
+ ProjectManagementActivityDetail,
|
|
|
|
+ ProjectManagementEndProjectFile,
|
|
studentProjectWordShow,
|
|
studentProjectWordShow,
|
|
- // ProjectManagement1_MakerSpace,
|
|
|
|
- // ProjectManagement2_MakerSpace,
|
|
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
show:0,
|
|
show:0,
|
|
items:[
|
|
items:[
|
|
{tit:'项目详细',cl:'pr1TitBass'},
|
|
{tit:'项目详细',cl:'pr1TitBass'},
|
|
- // {tit:'项目详情',cl:'pr1TitBass'},
|
|
|
|
{tit:'活动开展',cl:'pr1TitBass'},
|
|
{tit:'活动开展',cl:'pr1TitBass'},
|
|
- // {tit:'项目附件',cl:'pr1TitBass'},
|
|
|
|
{tit:'项目结题附件',cl:'pr1TitBass'},
|
|
{tit:'项目结题附件',cl:'pr1TitBass'},
|
|
]
|
|
]
|
|
}
|
|
}
|