123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div>
- <com-all-trend
- :industryRang="industryRang"
- :industry="industry"
- title="全盘趋势"
- ></com-all-trend>
- <com-structure
- :industryRang="industryRang"
- :industry="industry"
- title="行业结构"
- ></com-structure>
- <com-tranche
- :industryRang="industryRang"
- :industry="industry"
- title="媒体份额"
- ></com-tranche>
- <com-distribution
- :industryRang="industryRang"
- :industry="industry"
- title="软植栏目分布"
- ></com-distribution>
- <com-focus
- :industryRang="industryRang"
- :industry="industry"
- title="重点客户"
- ></com-focus>
- </div>
- </template>
- <script>
- // @ is an alias to /src
- // import config from "@/config/index";
- import comAllTrend from "./allTrend.vue";
- import comStructure from "./structure.vue";
- import comTranche from "./tranche.vue";
- import comDistribution from "./distribution.vue";
- import comFocus from "./focus.vue";
- export default {
- name: "all",
- data() {
- return {};
- },
- mounted() {
- },
- computed: {},
- filter: {},
- props: {
- industry: Number,
- industryRang: Number,
- },
- methods: {},
- beforeUnmount: function() {},
- components: {
- comAllTrend,
- comStructure,
- comTranche,
- comDistribution,
- comFocus,
- },
- };
- </script>
- <style></style>
|