123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <div>
- <div class="autoBox box">
- <div class="crumbs">
- <el-breadcrumb separator="/" replace>
- <el-breadcrumb-item :to="{ path: 'home' }">首页</el-breadcrumb-item>
- <el-breadcrumb-item :to="{ path: 'IntroductionMemberProfile' }">合作网络</el-breadcrumb-item>
- <el-breadcrumb-item >合作概况</el-breadcrumb-item>
- </el-breadcrumb>
- </div>
- </div>
- </div>
- </template>
-
- <script>
- export default {
- name: 'IntroductionGeneralSituation',
- data () {
- return {
- enterpriseDetails:'',
- }
- },
- created(){
- this.enterpriseDetails=this.$route.params.key
- },
- mounted(){
- },
- methods:{
- getIconUrl(url){
- return require("@/assets/img/introductionCooperation/"+url);
- },
- toView(router,json){
- this.$router.push({name:router,params:json})
- },
- screenBack(data){
- console.log(data,'screenBackscreenBackscreenBackscreenBack')
- },
- screen(i){
- this.index=i
- }
- }
- }
- </script>
-
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style scoped>
- .box {
- margin-top: 10px;
- background: #fff;
- /* height: 500px; */
- padding: 20px 0;
- }
- .crumbs {
- margin-left: 20px;
- }
- body {
- margin: 0;
- }
- </style>
-
|