|
@@ -0,0 +1,149 @@
|
|
|
+<template>
|
|
|
+ <div class="Advertisement">
|
|
|
+ <div class="item">
|
|
|
+ <section class="title">
|
|
|
+ <section>电视广告投放简析</section>
|
|
|
+ <img
|
|
|
+ src="../../../assets/image/640.png"
|
|
|
+ width="96.9922px"
|
|
|
+ style="float: right"
|
|
|
+ />
|
|
|
+ </section>
|
|
|
+ <br />
|
|
|
+ <div class="article">
|
|
|
+ <section
|
|
|
+ style="
|
|
|
+ line-height: 1.75em;
|
|
|
+ margin-bottom: 8px;
|
|
|
+ margin-left: 8px;
|
|
|
+ margin-right: 8px;
|
|
|
+ visibility: visible;
|
|
|
+ text-indent: 2em;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <span
|
|
|
+ style="color: rgb(84, 84, 84); font-size: 15px; visibility: visible"
|
|
|
+ >根据CTR媒介智讯的数据显示,
|
|
|
+ </span>
|
|
|
+ <span
|
|
|
+ style="font-size: 15px; color: rgb(255, 88, 0); visibility: visible"
|
|
|
+ >
|
|
|
+ <strong style="visibility: visible">
|
|
|
+ 2022年上半年电视广告刊例花费同比下跌14.7%。电视广告自3月份开始环比持续提升,至6月环比上涨2.2%。
|
|
|
+ </strong>
|
|
|
+ </span>
|
|
|
+ </section>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <section class="title">
|
|
|
+ <section>细分信息对比</section>
|
|
|
+ <img
|
|
|
+ src="../../../assets/image/640.png"
|
|
|
+ width="96.9922px"
|
|
|
+ style="float: right"
|
|
|
+ />
|
|
|
+ </section>
|
|
|
+ <br />
|
|
|
+ <h4 class="xifenxinxiTitle">
|
|
|
+ 电视:
|
|
|
+ <span> 广告花费品牌榜单 </span>
|
|
|
+ </h4>
|
|
|
+ <br />
|
|
|
+ <h6 style="text-align: center">2022年8月电视广告花费TOP10</h6>
|
|
|
+ <br />
|
|
|
+ <van-row class="tableHead">
|
|
|
+ <van-col span="3">排名</van-col>
|
|
|
+ <van-col span="7">品牌</van-col>
|
|
|
+ <van-col span="7">费用(万元)</van-col>
|
|
|
+ <van-col span="7">同比增量</van-col>
|
|
|
+ </van-row>
|
|
|
+ <van-row class="tableBody">
|
|
|
+ <van-col span="3">1</van-col>
|
|
|
+ <van-col span="7">陈李济</van-col>
|
|
|
+ <van-col span="7">76246.93</van-col>
|
|
|
+ <van-col span="7">12.5%</van-col>
|
|
|
+ </van-row>
|
|
|
+ <br />
|
|
|
+ <h4 class="xifenxinxiTitle">
|
|
|
+ 电视:
|
|
|
+ <span> 行业(大类)广告花费变化 </span>
|
|
|
+ </h4>
|
|
|
+ <br />
|
|
|
+ <h6 style="text-align: center">2022年8月电视广告TOP10行业(大类)</h6>
|
|
|
+ <br />
|
|
|
+ <canvas ref="adTop10" width="400" height="260"></canvas>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+// @ is an alias to /src
|
|
|
+import { Col as vanCol, Row as vanRow } from "vant";
|
|
|
+import "vant/lib/col/style/index";
|
|
|
+import "vant/lib/row/style/index";
|
|
|
+
|
|
|
+import {Init} from "./jsx/F2"
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "Advertisement",
|
|
|
+ data() {
|
|
|
+ return {};
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ Init(this.$refs.adTop10,window.devicePixelRatio)
|
|
|
+ },
|
|
|
+ computed: {},
|
|
|
+ methods: {},
|
|
|
+ beforeUnmount: function () {},
|
|
|
+ components: { vanCol, vanRow },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+.Advertisement {
|
|
|
+ height: 100%;
|
|
|
+ padding: 22px 12px 12px 12px;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+.Advertisement .item {
|
|
|
+ max-width: 677px;
|
|
|
+ margin: 0 auto;
|
|
|
+ font-weight: 700;
|
|
|
+}
|
|
|
+.Advertisement section {
|
|
|
+ font-weight: 700;
|
|
|
+}
|
|
|
+.Advertisement .title {
|
|
|
+ background-color: #ff6827;
|
|
|
+ width: 196px;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.Advertisement .title section {
|
|
|
+ background-color: rgba(255, 255, 255, 0.5);
|
|
|
+ color: #fff;
|
|
|
+ font-size: 16px;
|
|
|
+ height: 35px;
|
|
|
+ line-height: 35px;
|
|
|
+ width: 166px;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.xifenxinxiTitle {
|
|
|
+ color: #ff1c1c;
|
|
|
+}
|
|
|
+.xifenxinxiTitle span {
|
|
|
+ color: #1d1d1d;
|
|
|
+}
|
|
|
+.Advertisement .tableHead {
|
|
|
+ background-color: #d11e16;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.tableHead .van-col,
|
|
|
+.tableBody .van-col {
|
|
|
+ height: 2em;
|
|
|
+ line-height: 2em;
|
|
|
+ text-align: center;
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
+</style>
|