IntroductionMembershipApplication.vue 1.5 KB

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