IntroductionGeneralSituation.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <div>
  3. <div class="autoBox box">
  4. <div class="crumbs">
  5. <el-breadcrumb separator="/" replace>
  6. <el-breadcrumb-item :to="{ path: 'home' }">首页</el-breadcrumb-item>
  7. <el-breadcrumb-item :to="{ path: 'IntroductionMemberProfile' }">合作网络</el-breadcrumb-item>
  8. <el-breadcrumb-item >合作概况</el-breadcrumb-item>
  9. </el-breadcrumb>
  10. </div>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. name: 'IntroductionGeneralSituation',
  17. data () {
  18. return {
  19. enterpriseDetails:'',
  20. }
  21. },
  22. created(){
  23. this.enterpriseDetails=this.$route.params.key
  24. },
  25. mounted(){
  26. },
  27. methods:{
  28. getIconUrl(url){
  29. return require("@/assets/img/introductionCooperation/"+url);
  30. },
  31. toView(router,json){
  32. this.$router.push({name:router,params:json})
  33. },
  34. screenBack(data){
  35. console.log(data,'screenBackscreenBackscreenBackscreenBack')
  36. },
  37. screen(i){
  38. this.index=i
  39. }
  40. }
  41. }
  42. </script>
  43. <!-- Add "scoped" attribute to limit CSS to this component only -->
  44. <style scoped>
  45. .box {
  46. margin-top: 10px;
  47. background: #fff;
  48. /* height: 500px; */
  49. padding: 20px 0;
  50. }
  51. .crumbs {
  52. margin-left: 20px;
  53. }
  54. body {
  55. margin: 0;
  56. }
  57. </style>