|
|
@ -1,14 +1,26 @@ |
|
|
|
<template> |
|
|
|
<div class="app-container"> |
|
|
|
<!-- 面包屑 --> |
|
|
|
<el-breadcrumb separator="/" style="margin-bottom: 20px"> |
|
|
|
<el-breadcrumb-item |
|
|
|
v-for="(item, index) in routeList" |
|
|
|
:key="item + index" |
|
|
|
:to="routeList.length !== index + 1 ? { path: item.path } : undefined" |
|
|
|
>{{ item.routeName }}</el-breadcrumb-item |
|
|
|
> |
|
|
|
</el-breadcrumb> |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<!-- 面包屑 --> |
|
|
|
<el-breadcrumb separator="/" style="margin-bottom: 20px"> |
|
|
|
<el-breadcrumb-item |
|
|
|
v-for="(item, index) in routeList" |
|
|
|
:key="item + index" |
|
|
|
:to=" |
|
|
|
routeList.length !== index + 1 ? { path: item.path } : undefined |
|
|
|
" |
|
|
|
>{{ item.routeName }}</el-breadcrumb-item |
|
|
|
> |
|
|
|
</el-breadcrumb> |
|
|
|
</el-col> |
|
|
|
<!-- <el-col :span="12"> |
|
|
|
<el-button type="primary">返回</el-button> |
|
|
|
</el-col> --> |
|
|
|
<!-- <el-col :span="24"> |
|
|
|
<el-page-header @back="goBack" content="详情页面"></el-page-header> |
|
|
|
</el-col> --> |
|
|
|
</el-row> |
|
|
|
|
|
|
|
<el-tabs |
|
|
|
v-model="activeName" |
|
|
@ -127,6 +139,9 @@ export default { |
|
|
|
this.getList(); |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
goBack() { |
|
|
|
this.$router.back(); |
|
|
|
}, |
|
|
|
/** 查询专题项目前期背景信息列表 */ |
|
|
|
getList() { |
|
|
|
this.queryParams.data.id = this.$route.query.baseDataId; |
|
|
|