|
@@ -117,6 +117,16 @@
|
|
|
</van-row>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
+ <p
|
|
|
+ class="content"
|
|
|
+ :style="
|
|
|
+ 'font-weight: 700;word-break: normal;text-align: justify; padding: 0.5em 3px;font-size: ' +
|
|
|
+ fontSize +
|
|
|
+ 'px;'
|
|
|
+ "
|
|
|
+ v-html="title1.dataSource"
|
|
|
+ ></p>
|
|
|
</div>
|
|
|
|
|
|
<img
|
|
@@ -408,6 +418,16 @@
|
|
|
</p>
|
|
|
</div>
|
|
|
</van-popup>
|
|
|
+
|
|
|
+ <p
|
|
|
+ class="content"
|
|
|
+ :style="
|
|
|
+ 'font-weight: 700; padding: 0.5em 3px;font-size: ' +
|
|
|
+ fontSize +
|
|
|
+ 'px;'
|
|
|
+ "
|
|
|
+ v-html="title.dataSource"
|
|
|
+ ></p>
|
|
|
</div>
|
|
|
<div class="bottom content">
|
|
|
本数据由<span style="color: red">“陕西广电融媒体集团大数据平台”</span
|
|
@@ -498,6 +518,7 @@ export default {
|
|
|
name: res.name || "",
|
|
|
title: res.title || "",
|
|
|
desc: res.desc || "",
|
|
|
+ dataSource: res.dataSource || "",
|
|
|
};
|
|
|
this.title = title;
|
|
|
this.platfromData = res.list || [];
|
|
@@ -522,6 +543,7 @@ export default {
|
|
|
name: res.name || "",
|
|
|
title: res.title || "",
|
|
|
desc: res.desc || "",
|
|
|
+ dataSource: res.dataSource || "",
|
|
|
};
|
|
|
this.title1 = title;
|
|
|
this.platfromData1 = res.list || [];
|