liyongli há 2 anos atrás
pai
commit
bd9e6c9f84
1 ficheiros alterados com 11 adições e 0 exclusões
  1. 11 0
      src/views/report/Mobile/index.vue

+ 11 - 0
src/views/report/Mobile/index.vue

@@ -8,6 +8,15 @@
         style="margin-bottom: 1em; display: block"
         alt=""
       />
+    <p
+      class="content"
+      :style="
+        'text-indent: 2em; font-weight: 700; padding: 0.5em 3px;font-size: ' +
+        fontSize +
+        'px;'
+      "
+      v-html="desc"
+    ></p>
     </div>
     <div class="tv-list" :style="'font-size:' + fontSize + 'px'">
       <div class="content">
@@ -251,6 +260,7 @@ export default {
       echarts: undefined,
       dayEcharts: undefined,
       width: document.body.offsetWidth || 0,
+      desc: ""
     };
   },
   watch: {},
@@ -276,6 +286,7 @@ export default {
       this.article = res.article || [];
       this.dep = res.dep || [];
       this.topic = res.topic || [];
+      this.desc = res.desc || "";
     });
   },
   computed: {},