all.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <div>
  3. <com-all-trend
  4. :industryRang="industryRang"
  5. :industry="industry"
  6. title="全盘趋势"
  7. ></com-all-trend>
  8. <com-structure
  9. :industryRang="industryRang"
  10. :industry="industry"
  11. title="行业结构"
  12. ></com-structure>
  13. <com-tranche
  14. :industryRang="industryRang"
  15. :industry="industry"
  16. title="媒体份额"
  17. ></com-tranche>
  18. <com-distribution
  19. :industryRang="industryRang"
  20. :industry="industry"
  21. title="软植栏目分布"
  22. ></com-distribution>
  23. <com-focus
  24. :industryRang="industryRang"
  25. :industry="industry"
  26. title="重点客户"
  27. ></com-focus>
  28. </div>
  29. </template>
  30. <script>
  31. // @ is an alias to /src
  32. // import config from "@/config/index";
  33. import comAllTrend from "./allTrend.vue";
  34. import comStructure from "./structure.vue";
  35. import comTranche from "./tranche.vue";
  36. import comDistribution from "./distribution.vue";
  37. import comFocus from "./focus.vue";
  38. export default {
  39. name: "all",
  40. data() {
  41. return {};
  42. },
  43. mounted() {
  44. },
  45. computed: {},
  46. filter: {},
  47. props: {
  48. industry: Number,
  49. industryRang: Number,
  50. },
  51. methods: {},
  52. beforeUnmount: function() {},
  53. components: {
  54. comAllTrend,
  55. comStructure,
  56. comTranche,
  57. comDistribution,
  58. comFocus,
  59. },
  60. };
  61. </script>
  62. <style></style>