by.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <div>
  3. <com-all-trend
  4. :industryRang="industryRang"
  5. :industry="industry"
  6. title="行业投放趋势"
  7. ></com-all-trend>
  8. <com-structure-b
  9. :industryRang="industryRang"
  10. :industry="industry"
  11. title="中小行业占比"
  12. ></com-structure-b>
  13. <com-tranche
  14. :industryRang="industryRang"
  15. :industry="industry"
  16. title="媒体份额"
  17. ></com-tranche>
  18. <com-tranche-b2
  19. :industryRang="industryRang"
  20. :industry="industry"
  21. title="频道分布"
  22. ></com-tranche-b2>
  23. <com-focus
  24. :industryRang="industryRang"
  25. :industry="industry"
  26. title="重点客户"
  27. ></com-focus>
  28. <com-distribution
  29. :industryRang="industryRang"
  30. :industry="industry"
  31. title="节目类型分布"
  32. ></com-distribution>
  33. <com-trend-week
  34. :industryRang="industryRang"
  35. :industry="industry"
  36. title="周走势"
  37. ></com-trend-week>
  38. </div>
  39. </template>
  40. <script>
  41. // @ is an alias to /src
  42. // import config from "@/config/index";
  43. import comAllTrend from "./allTrendB.vue";
  44. import comStructureB from "./structureB.vue";
  45. import comTranche from "./trancheB.vue";
  46. import comTrancheB2 from "./trancheB2.vue";
  47. import comDistribution from "./distributionB.vue";
  48. import comFocus from "./focusB.vue";
  49. import comTrendWeek from "./comTrendWeek.vue";
  50. export default {
  51. name: "by",
  52. data() {
  53. return {};
  54. },
  55. mounted() {
  56. },
  57. computed: {},
  58. filter: {},
  59. props: {
  60. industry: Number,
  61. industryRang: Number,
  62. },
  63. methods: {},
  64. beforeUnmount: function() {},
  65. components: {
  66. comAllTrend,
  67. comStructureB,
  68. comTranche,
  69. comTrancheB2,
  70. comDistribution,
  71. comFocus,
  72. comTrendWeek
  73. },
  74. };
  75. </script>
  76. <style></style>