1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <div>
- <com-all-trend
- :industryRang="industryRang"
- :industry="industry"
- title="行业投放趋势"
- ></com-all-trend>
- <com-structure-b
- :industryRang="industryRang"
- :industry="industry"
- title="中小行业占比"
- ></com-structure-b>
- <com-tranche
- :industryRang="industryRang"
- :industry="industry"
- title="媒体份额"
- ></com-tranche>
- <com-tranche-b2
- :industryRang="industryRang"
- :industry="industry"
- title="频道分布"
- ></com-tranche-b2>
- <com-focus
- :industryRang="industryRang"
- :industry="industry"
- title="重点客户"
- ></com-focus>
- <com-distribution
- :industryRang="industryRang"
- :industry="industry"
- title="节目类型分布"
- ></com-distribution>
- <com-trend-week
- :industryRang="industryRang"
- :industry="industry"
- title="周走势"
- ></com-trend-week>
- </div>
- </template>
- <script>
- // @ is an alias to /src
- // import config from "@/config/index";
- import comAllTrend from "./allTrendB.vue";
- import comStructureB from "./structureB.vue";
- import comTranche from "./trancheB.vue";
- import comTrancheB2 from "./trancheB2.vue";
- import comDistribution from "./distributionB.vue";
- import comFocus from "./focusB.vue";
- import comTrendWeek from "./comTrendWeek.vue";
- export default {
- name: "by",
- data() {
- return {};
- },
- mounted() {
- },
- computed: {},
- filter: {},
- props: {
- industry: Number,
- industryRang: Number,
- },
- methods: {},
- beforeUnmount: function() {},
- components: {
- comAllTrend,
- comStructureB,
- comTranche,
- comTrancheB2,
- comDistribution,
- comFocus,
- comTrendWeek
- },
- };
- </script>
- <style></style>
|