liyongli преди 3 години
родител
ревизия
c8425eb7f0

+ 1 - 0
package.json

@@ -10,6 +10,7 @@
   "dependencies": {
     "core-js": "^3.6.5",
     "echarts": "^5.2.1",
+    "echarts-wordcloud": "^2.0.0",
     "element-plus": "^1.0.2-beta.36",
     "vue": "^3.0.0",
     "vue-router": "^4.0.0-0"

+ 59 - 43
src/api/index.js

@@ -2,148 +2,147 @@ import ajax from "@/utils/request.js";
 
 /**
  * 广告
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function advertisementApi(data) {
+export function advertisementApi(data) {
   return ajax({
     url: "/kuyun_eye_ad/cbd_public/perform",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * 流入流出
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function inOutApi(data) {
+export function inOutApi(data) {
   return ajax({
     url: "/api/recent_inout",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * epg
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function epgApi(data) {
+export function epgApi(data) {
   return ajax({
     url: "/api/recent_epgs",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * 直播实时 分
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function liveRealDataMinApi(data) {
+export function liveRealDataMinApi(data) {
   return ajax({
     url: "/api/sec_ratings",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * 直播实时数据
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function liveRealDataApi(data) {
+export function liveRealDataApi(data) {
   return ajax({
     url: "/api/min_ratings",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * 直播实时数据
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function liveDataApi(data) {
+export function liveDataApi(data) {
   return ajax({
     url: "/api/tvlb",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * 高光数据
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function heightlightDataApi(data) {
+export function heightlightDataApi(data) {
   return ajax({
     url: "/api/hl/calendar",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * 高光时刻
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
 export function heightlightApi(data) {
   return ajax({
     url: "/api/hl/list-milestone",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * 节目
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function list(data) {
+export function list(data) {
   return ajax({
     url: "/api/proepglb",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * 节目导出
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function listcsv(data) {
+export function listcsv(data) {
   return ajax({
     url: "/api/proepglb/csv",
     method: "get",
     downCsv: true,
-    data
+    data,
   });
 }
 /**
  * 频道
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
 export function channel(data) {
   return ajax({
     url: "/api/protvlb",
     method: "get",
-    data
+    data,
   });
 }
 /**
  * 频道导出
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
 export function channelcsv(data) {
   return ajax({
     url: "/api/protvlb/csv",
     method: "get",
     downCsv: true,
-    data
+    data,
   });
 }
 
-
 /**
  * 获取精品节目列表
  * @props {}
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
- export function epgList() {
+export function epgList() {
   return ajax({
-    urlType: 'url2',
+    urlType: "url2",
     url: "/program",
     method: "get",
   });
@@ -151,26 +150,43 @@ export function channelcsv(data) {
 /**
  * 获取精品节目详情
  * @props {}
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
 export function epgDetail(data) {
   return ajax({
-    urlType: 'url2',
+    urlType: "url2",
     url: "/epg-detail",
     method: "get",
-    data
+    target: data.target,
+    data: { epgId: data.epgId },
   });
 }
 /**
  * 获取精品节目指标
  * @props {}
- * @returns {AxiosPromise}
+ * @returns {AxjxPromise}
  */
 export function epgResult(data) {
   return ajax({
-    urlType: 'url2',
+    urlType: "url2",
     url: "/epg-result",
     method: "get",
-    data
+    data,
+  });
+}
+
+/**
+ * 自由接口
+ * @props {url, data}
+ * @return {AxjxPromise}
+ */
+export function defaultAjax(props) {
+  return ajax({
+    urlType: "url3",
+    url: props.url,
+    method: "get",
+    notLoad: props.notLoad,
+    target: props.target,
+    data: props.data,
   });
 }

+ 1 - 0
src/config/index.js

@@ -11,6 +11,7 @@ export default {
   base: {
     url: useApiUrl,
     url2: useApiUrl1,
+    url3: "",
     timeout: 60000,
     isRelease,
     requestRetry: 4,

+ 5292 - 0
src/list.json

@@ -0,0 +1,5292 @@
+[
+    {
+        "nickname": "陕西新闻广播",
+        "comment_count": 5,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西文艺",
+        "comment_count": 689,
+        "mplatform_followers_count": 0,
+        "digg_count": 699,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 85,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西影视频道",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "只吃油麦菜01",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "冷BulingBuling",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "技击已经存在",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "戰世小王",
+        "comment_count": 22,
+        "mplatform_followers_count": 0,
+        "digg_count": 14,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西农村广播",
+        "comment_count": 35,
+        "mplatform_followers_count": 31255,
+        "digg_count": 998,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 7,
+        "pv": 0
+    },
+    {
+        "nickname": "群众新闻网",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "1018陕广新闻",
+        "comment_count": 74,
+        "mplatform_followers_count": 9473205,
+        "digg_count": 3789,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 15,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西网络广播电视台",
+        "comment_count": 8,
+        "mplatform_followers_count": 0,
+        "digg_count": 140,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 44,
+        "pv": 0
+    },
+    {
+        "nickname": "粉巷财经",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "中华网陕西",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西城事",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "FM999",
+        "comment_count": 11,
+        "mplatform_followers_count": 0,
+        "digg_count": 84,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 12,
+        "pv": 0
+    },
+    {
+        "nickname": "西部网",
+        "comment_count": 254,
+        "mplatform_followers_count": 0,
+        "digg_count": 954,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 249,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西广播电视台第七频道",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "FM104襄阳之声",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕视生活",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 7,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西农村报",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西新媒体联合会",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "三秦青年",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 7,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西发布",
+        "comment_count": 152,
+        "mplatform_followers_count": 0,
+        "digg_count": 369,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 107,
+        "pv": 0
+    },
+    {
+        "nickname": "西安音乐学院",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "1011陕西秦腔广播",
+        "comment_count": 17,
+        "mplatform_followers_count": 0,
+        "digg_count": 44,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 14,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西大事小事",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "一条有梦想的咸小鱼",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "各界新闻网官微",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 24,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "磊叔家的阿志学弟",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西安发布",
+        "comment_count": 23,
+        "mplatform_followers_count": 646116,
+        "digg_count": 1585,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 18,
+        "pv": 0
+    },
+    {
+        "nickname": "三秦小喇叭",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "黄陵融媒",
+        "comment_count": 130,
+        "mplatform_followers_count": 12444,
+        "digg_count": 3714,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 44,
+        "pv": 0
+    },
+    {
+        "nickname": "火锅底料牛",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "今日长安事",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西安文旅之声",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 20,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 6,
+        "pv": 0
+    },
+    {
+        "nickname": "晶小白小晶",
+        "comment_count": 12,
+        "mplatform_followers_count": 0,
+        "digg_count": 16,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "陈珏如_",
+        "comment_count": 113,
+        "mplatform_followers_count": 0,
+        "digg_count": 216,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 103,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西省文化和旅游厅",
+        "comment_count": 34,
+        "mplatform_followers_count": 0,
+        "digg_count": 125,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 35,
+        "pv": 0
+    },
+    {
+        "nickname": "法治雁塔",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "阳光网",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "肃南检察",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "凤翔龙飞",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "渭南身边事",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "半屏乐士",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "乐活范儿",
+        "comment_count": 0,
+        "mplatform_followers_count": 359,
+        "digg_count": 222,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西头条",
+        "comment_count": 17,
+        "mplatform_followers_count": 1608295,
+        "digg_count": 1392,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西广播电视台好管家",
+        "comment_count": 2,
+        "mplatform_followers_count": 21443,
+        "digg_count": 272,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "没志向的妮妮",
+        "comment_count": 11,
+        "mplatform_followers_count": 659,
+        "digg_count": 134,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "阳光报榆林记者站",
+        "comment_count": 11,
+        "mplatform_followers_count": 14715,
+        "digg_count": 1638,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "澄城县融媒体中心",
+        "comment_count": 0,
+        "mplatform_followers_count": 122405,
+        "digg_count": 37,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "黎",
+        "comment_count": 16,
+        "mplatform_followers_count": 5668,
+        "digg_count": 258,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "王友梅",
+        "comment_count": 1,
+        "mplatform_followers_count": 4076,
+        "digg_count": 21,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "《熊氏文化传播抖音》",
+        "comment_count": 10,
+        "mplatform_followers_count": 6234,
+        "digg_count": 255,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "安名州  知天下",
+        "comment_count": 0,
+        "mplatform_followers_count": 93,
+        "digg_count": 14,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "仙女测试馆🍡",
+        "comment_count": 6,
+        "mplatform_followers_count": 344,
+        "digg_count": 29,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "中华陈氏❤️",
+        "comment_count": 41,
+        "mplatform_followers_count": 1469,
+        "digg_count": 248,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "舞之林",
+        "comment_count": 1,
+        "mplatform_followers_count": 48090,
+        "digg_count": 86,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "锦盛装饰(尘客)",
+        "comment_count": 0,
+        "mplatform_followers_count": 1854,
+        "digg_count": 33,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "古梵奇",
+        "comment_count": 0,
+        "mplatform_followers_count": 560,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "李氏文化分享",
+        "comment_count": 11,
+        "mplatform_followers_count": 2814,
+        "digg_count": 132,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "小鱼娱乐",
+        "comment_count": 3,
+        "mplatform_followers_count": 1282,
+        "digg_count": 30,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "小灵",
+        "comment_count": 0,
+        "mplatform_followers_count": 1197,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "铁面猴",
+        "comment_count": 1,
+        "mplatform_followers_count": 1336,
+        "digg_count": 54,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "理智脑",
+        "comment_count": 4,
+        "mplatform_followers_count": 85,
+        "digg_count": 16,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "Mr.胡",
+        "comment_count": 3,
+        "mplatform_followers_count": 717,
+        "digg_count": 58,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "小喵娱乐",
+        "comment_count": 0,
+        "mplatform_followers_count": 1689,
+        "digg_count": 15,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "丶从小就美的蕾蕾妞",
+        "comment_count": 3,
+        "mplatform_followers_count": 1839,
+        "digg_count": 148,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "颜氏文化传媒 颜嘉",
+        "comment_count": 92,
+        "mplatform_followers_count": 2214,
+        "digg_count": 647,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "老毕",
+        "comment_count": 0,
+        "mplatform_followers_count": 179,
+        "digg_count": 11,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "李小胖(陶笛)",
+        "comment_count": 5,
+        "mplatform_followers_count": 533,
+        "digg_count": 28,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "大新",
+        "comment_count": 0,
+        "mplatform_followers_count": 458,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "软糖解说",
+        "comment_count": 0,
+        "mplatform_followers_count": 1024,
+        "digg_count": 45,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "飘香易人",
+        "comment_count": 0,
+        "mplatform_followers_count": 76,
+        "digg_count": 11,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "白国成电动车",
+        "comment_count": 8,
+        "mplatform_followers_count": 5221,
+        "digg_count": 32,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "衣昂扬",
+        "comment_count": 1,
+        "mplatform_followers_count": 52,
+        "digg_count": 36,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "超级火🔥",
+        "comment_count": 0,
+        "mplatform_followers_count": 2057,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "杨弎歳",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 27,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "执着的辣条",
+        "comment_count": 3,
+        "mplatform_followers_count": 14,
+        "digg_count": 13,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "希华",
+        "comment_count": 0,
+        "mplatform_followers_count": 1935,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "宝鸡人民广播电台",
+        "comment_count": 0,
+        "mplatform_followers_count": 32531,
+        "digg_count": 156,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "张鸣同学",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西县域",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "渭南日报社",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "三秦都市报",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕视点",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 17,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西都市热线",
+        "comment_count": 98,
+        "mplatform_followers_count": 423327,
+        "digg_count": 230,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 25,
+        "pv": 0
+    },
+    {
+        "nickname": "韩磊歌迷会",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "丝路嘉年华",
+        "comment_count": 1783,
+        "mplatform_followers_count": 0,
+        "digg_count": 13927,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1827,
+        "pv": 0
+    },
+    {
+        "nickname": "火晶视频",
+        "comment_count": 77,
+        "mplatform_followers_count": 0,
+        "digg_count": 14,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "深渊·Augenstern",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 24,
+        "pv": 0
+    },
+    {
+        "nickname": "1975-组合广播台丨Themisto",
+        "comment_count": 13,
+        "mplatform_followers_count": 0,
+        "digg_count": 232,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 67,
+        "pv": 0
+    },
+    {
+        "nickname": "大风刮过dfgg",
+        "comment_count": 24,
+        "mplatform_followers_count": 0,
+        "digg_count": 946,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 588,
+        "pv": 0
+    },
+    {
+        "nickname": "295色",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "吕小仙儿ing",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 9,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "好好滴嘎",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "ICE白冰数据组",
+        "comment_count": 28,
+        "mplatform_followers_count": 0,
+        "digg_count": 9,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "西安网络广播电视台",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "新闻夜航",
+        "comment_count": 394,
+        "mplatform_followers_count": 0,
+        "digg_count": 80,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "第一新闻",
+        "comment_count": 254,
+        "mplatform_followers_count": 0,
+        "digg_count": 652,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 256,
+        "pv": 0
+    },
+    {
+        "nickname": "优酷",
+        "comment_count": 307,
+        "mplatform_followers_count": 0,
+        "digg_count": 2182,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 361,
+        "pv": 0
+    },
+    {
+        "nickname": "优酷综艺",
+        "comment_count": 180,
+        "mplatform_followers_count": 0,
+        "digg_count": 1652,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 219,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中事儿",
+        "comment_count": 9,
+        "mplatform_followers_count": 0,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 5,
+        "pv": 0
+    },
+    {
+        "nickname": "吴小咖是个好孩子",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 22,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 776,
+        "pv": 0
+    },
+    {
+        "nickname": "deoR",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 139,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 138,
+        "pv": 0
+    },
+    {
+        "nickname": "邙洛山",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 17,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 171,
+        "pv": 0
+    },
+    {
+        "nickname": "奶粉揭秘",
+        "comment_count": 7,
+        "mplatform_followers_count": 0,
+        "digg_count": 49,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 61,
+        "pv": 0
+    },
+    {
+        "nickname": "鹿有鳍",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 21,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 91,
+        "pv": 0
+    },
+    {
+        "nickname": "冰的wife",
+        "comment_count": 8,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "浪里赤条小粗林",
+        "comment_count": 54,
+        "mplatform_followers_count": 0,
+        "digg_count": 1603,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1863,
+        "pv": 0
+    },
+    {
+        "nickname": "Amy冰雹",
+        "comment_count": 162,
+        "mplatform_followers_count": 0,
+        "digg_count": 186,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 6,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西广播电视报",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "Ariesbb_Yu凤凰",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "凤凰传奇全球后援会",
+        "comment_count": 11,
+        "mplatform_followers_count": 0,
+        "digg_count": 35,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 10,
+        "pv": 0
+    },
+    {
+        "nickname": "年代878",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 6,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西省文化共享工程",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "碑林文化旅游",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 15,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西安新闻网",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "饭圈蜀黍",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西部决策",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "抚州黎川发布",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "喜誉音乐",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "梁朋杰粉丝后援会",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西安鹅毛扇",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "曲江新区",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西安战士战旗杂技团",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "带劲滴辣条",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "���部法制报",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "贵溪发布",
+        "comment_count": 7,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "王建萍GSTV",
+        "comment_count": 10,
+        "mplatform_followers_count": 0,
+        "digg_count": 30,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "网说西安",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 16,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "宝鸡视点",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "咸阳聚焦",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "孟梦梦儿",
+        "comment_count": 42,
+        "mplatform_followers_count": 0,
+        "digg_count": 144,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 20,
+        "pv": 0
+    },
+    {
+        "nickname": "啵丝猫眼里的星星",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 24,
+        "pv": 0
+    },
+    {
+        "nickname": "娱乐督查",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "张超_Baritone全国粉丝后援会",
+        "comment_count": 8,
+        "mplatform_followers_count": 0,
+        "digg_count": 76,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 42,
+        "pv": 0
+    },
+    {
+        "nickname": "dashengyue",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "老云家的旋转柜门儿",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "橘种子和柚子",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "李团夫人",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西铁资讯",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "王座法庭鏟屎官",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 12,
+        "pv": 0
+    },
+    {
+        "nickname": "我就是嘻嘻__",
+        "comment_count": 28,
+        "mplatform_followers_count": 0,
+        "digg_count": 24,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "张妙研",
+        "comment_count": 12,
+        "mplatform_followers_count": 0,
+        "digg_count": 70,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "TWTING98",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "爱小叮当的大熊",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "新手指南",
+        "comment_count": 18,
+        "mplatform_followers_count": 0,
+        "digg_count": 422,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 56,
+        "pv": 0
+    },
+    {
+        "nickname": "夏洛特特别烦恼",
+        "comment_count": 12,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "霍汶希Mani",
+        "comment_count": 44,
+        "mplatform_followers_count": 0,
+        "digg_count": 334,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 8,
+        "pv": 0
+    },
+    {
+        "nickname": "英皇娱乐--北京",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 18,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "白冰",
+        "comment_count": 6926,
+        "mplatform_followers_count": 0,
+        "digg_count": 14694,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 6438,
+        "pv": 0
+    },
+    {
+        "nickname": "风息神泪",
+        "comment_count": 78,
+        "mplatform_followers_count": 0,
+        "digg_count": 1552,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1160,
+        "pv": 0
+    },
+    {
+        "nickname": "万事风过耳",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 22,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 218,
+        "pv": 0
+    },
+    {
+        "nickname": "楠木-X",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "二喬先生",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "MGOS芒老吉",
+        "comment_count": 7,
+        "mplatform_followers_count": 0,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "xiantoutiao",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "微观大秦",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "迪拜中阿卫视",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 9,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "爱奇艺",
+        "comment_count": 529,
+        "mplatform_followers_count": 0,
+        "digg_count": 12533,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 349,
+        "pv": 0
+    },
+    {
+        "nickname": "腾讯视频",
+        "comment_count": 51,
+        "mplatform_followers_count": 0,
+        "digg_count": 152,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "腾讯超级影视VIP",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "腾讯视频音乐",
+        "comment_count": 25,
+        "mplatform_followers_count": 0,
+        "digg_count": 104,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 8,
+        "pv": 0
+    },
+    {
+        "nickname": "腾讯综艺",
+        "comment_count": 42,
+        "mplatform_followers_count": 0,
+        "digg_count": 226,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 7,
+        "pv": 0
+    },
+    {
+        "nickname": "KO酱酱可爱",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "-小围炉",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西安欧利网络传媒",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "木子山月s",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "鹅团捏捏",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "芝士榴莲饼x_",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "小肆是个小心眼",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西韩城旅游",
+        "comment_count": 10,
+        "mplatform_followers_count": 0,
+        "digg_count": 14,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "郑板栗",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "Viridis·",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "B-美丽",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "爱爱爱爱mai迈",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "Graduationtrip-勘探報告",
+        "comment_count": 8,
+        "mplatform_followers_count": 0,
+        "digg_count": 242,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 69,
+        "pv": 0
+    },
+    {
+        "nickname": "优小黑剧透社",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "黄浦江边卖麻辣烫的丸子",
+        "comment_count": 24,
+        "mplatform_followers_count": 0,
+        "digg_count": 28,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "彤-TL-only",
+        "comment_count": 20,
+        "mplatform_followers_count": 0,
+        "digg_count": 69,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 24,
+        "pv": 0
+    },
+    {
+        "nickname": "百度尚雯婕吧",
+        "comment_count": 18,
+        "mplatform_followers_count": 0,
+        "digg_count": 71,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 26,
+        "pv": 0
+    },
+    {
+        "nickname": "尚雯婕工作室",
+        "comment_count": 195,
+        "mplatform_followers_count": 0,
+        "digg_count": 1756,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 185,
+        "pv": 0
+    },
+    {
+        "nickname": "Name_杨飙",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 19,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "O_OJANICE",
+        "comment_count": 27,
+        "mplatform_followers_count": 0,
+        "digg_count": 41,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 8,
+        "pv": 0
+    },
+    {
+        "nickname": "奋青小美女",
+        "comment_count": 8,
+        "mplatform_followers_count": 0,
+        "digg_count": 20,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "丹妮88小盆友",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "泼茶煮豆",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 9,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "张超Baritone_0425号数据中心",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 9,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "走不动的胖墩儿",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "LaureBluesky",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 21,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "代玮事务所",
+        "comment_count": 56,
+        "mplatform_followers_count": 0,
+        "digg_count": 523,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 44,
+        "pv": 0
+    },
+    {
+        "nickname": "临渭旅游",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "志丹县融媒体中心",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "华军Evan",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "988张咪",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "李连源",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "商洛团市委",
+        "comment_count": 29,
+        "mplatform_followers_count": 0,
+        "digg_count": 109,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 5,
+        "pv": 0
+    },
+    {
+        "nickname": "2021丝路嘉年华",
+        "comment_count": 3,
+        "mplatform_followers_count": 95,
+        "digg_count": 187,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "咸阳时间",
+        "comment_count": 2,
+        "mplatform_followers_count": 80430,
+        "digg_count": 20,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "莎莎",
+        "comment_count": 50,
+        "mplatform_followers_count": 125,
+        "digg_count": 854,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "传媒小子鹏程",
+        "comment_count": 2,
+        "mplatform_followers_count": 221,
+        "digg_count": 11,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "妙研小姐姐",
+        "comment_count": 101,
+        "mplatform_followers_count": 6417,
+        "digg_count": 1500,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "@韩城军军",
+        "comment_count": 6,
+        "mplatform_followers_count": 2403,
+        "digg_count": 71,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "jane珍~",
+        "comment_count": 2,
+        "mplatform_followers_count": 37,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "人生自有诗意",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "和睦影像摄影工作室",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 14,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西电信",
+        "comment_count": 1291,
+        "mplatform_followers_count": 250323,
+        "digg_count": 15495,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 22,
+        "pv": 0
+    },
+    {
+        "nickname": "大唐观察员",
+        "comment_count": 26,
+        "mplatform_followers_count": 23309,
+        "digg_count": 528,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "万全翼智家",
+        "comment_count": 171,
+        "mplatform_followers_count": 464732,
+        "digg_count": 1692,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "我@我家",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "王Stench",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "主持人王建萍",
+        "comment_count": 46,
+        "mplatform_followers_count": 16099,
+        "digg_count": 248,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "航拍人在路上",
+        "comment_count": 60,
+        "mplatform_followers_count": 833,
+        "digg_count": 462,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 5,
+        "pv": 0
+    },
+    {
+        "nickname": "王憨憨回大唐(19点大型演出直播)",
+        "comment_count": 122,
+        "mplatform_followers_count": 1665,
+        "digg_count": 668,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "🔥张能能🔥",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 7,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "长安天下",
+        "comment_count": 21,
+        "mplatform_followers_count": 0,
+        "digg_count": 529,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 6,
+        "pv": 0
+    },
+    {
+        "nickname": "阿成哥哥💕",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 71,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西安二少影像",
+        "comment_count": 1,
+        "mplatform_followers_count": 256,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "主持人小珂",
+        "comment_count": 47,
+        "mplatform_followers_count": 0,
+        "digg_count": 417,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "呦悠悠的生活日记",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "棒棒不是糖🍬",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "一缕阳光☀",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "✨Andrea✨",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 16,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "神农魔芋品牌食品木子",
+        "comment_count": 0,
+        "mplatform_followers_count": 3554,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "雅痞",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "主持人刘芳",
+        "comment_count": 36,
+        "mplatform_followers_count": 49209,
+        "digg_count": 336,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "皮皮Vivian",
+        "comment_count": 31,
+        "mplatform_followers_count": 58265,
+        "digg_count": 230,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "殷女士的搬运工",
+        "comment_count": 6,
+        "mplatform_followers_count": 73,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "向陽花開Zal🌻🌻",
+        "comment_count": 64,
+        "mplatform_followers_count": 0,
+        "digg_count": 127,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "先生37.长安",
+        "comment_count": 2,
+        "mplatform_followers_count": 12972,
+        "digg_count": 39,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "X.   Fan",
+        "comment_count": 2,
+        "mplatform_followers_count": 102,
+        "digg_count": 11,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "独步同学",
+        "comment_count": 7,
+        "mplatform_followers_count": 57,
+        "digg_count": 89,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "Luna",
+        "comment_count": 7,
+        "mplatform_followers_count": 183,
+        "digg_count": 13,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "CATV0001",
+        "comment_count": 1,
+        "mplatform_followers_count": 58,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西卫视剧有料",
+        "comment_count": 14,
+        "mplatform_followers_count": 462616,
+        "digg_count": 261,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "如果",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 9,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "长安舞蹈团~",
+        "comment_count": 6,
+        "mplatform_followers_count": 10407,
+        "digg_count": 26,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "爱尚旅游/富县盈科旅行社",
+        "comment_count": 1,
+        "mplatform_followers_count": 323,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "小魏同學",
+        "comment_count": 5,
+        "mplatform_followers_count": 714,
+        "digg_count": 47,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "犀利糊屠。",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "大秦张杨",
+        "comment_count": 5,
+        "mplatform_followers_count": 1004,
+        "digg_count": 86,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "千年古都,常来长安",
+        "comment_count": 12,
+        "mplatform_followers_count": 5110,
+        "digg_count": 121,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "✨ʕ •ᴥ•ʔ👙zp",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "金津有味",
+        "comment_count": 0,
+        "mplatform_followers_count": 111,
+        "digg_count": 7,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "额滴妈耶未央",
+        "comment_count": 13,
+        "mplatform_followers_count": 4281,
+        "digg_count": 180,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "西安碑林文旅集团",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "留影四季",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "蓝之媒大鹏",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "悠游醉陕西",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "大邢在长安",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "宁静88185",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "女人不糊涂",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "蔚蓝天空xxW",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "大秦人V",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "莲花飞儿",
+        "comment_count": 6,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "自媒体报道团",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "舌尖上的陕西",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "吃喝玩乐最西安",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "白马王子200609",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "千千阙歌0131",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "文观视界",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "闻览世界",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "吖尕四",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "各界导报社官微",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "西安吃喝游",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "三石随影",
+        "comment_count": 9,
+        "mplatform_followers_count": 0,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "楼市一览",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "王朝的废墟",
+        "comment_count": 45,
+        "mplatform_followers_count": 0,
+        "digg_count": 116,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 83,
+        "pv": 0
+    },
+    {
+        "nickname": "宝鸡心音传媒艺考",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "长安旅行君",
+        "comment_count": 8,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "高生辉",
+        "comment_count": 86,
+        "mplatform_followers_count": 0,
+        "digg_count": 102,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 132,
+        "pv": 0
+    },
+    {
+        "nickname": "大耳将军",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "傲竹巴山",
+        "comment_count": 20,
+        "mplatform_followers_count": 0,
+        "digg_count": 28,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 18,
+        "pv": 0
+    },
+    {
+        "nickname": "西安杨大姐",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "篮蓝的梦",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "艾拴女",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西部网三农",
+        "comment_count": 143,
+        "mplatform_followers_count": 0,
+        "digg_count": 43,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 34,
+        "pv": 0
+    },
+    {
+        "nickname": "扶风资讯",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "宝鸡生态环境",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "咸阳生态环境",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 14,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "凤县团委",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "咖啡飘香AA",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "战神-A",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "A爱新琪",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西吃喝玩乐生活",
+        "comment_count": 6,
+        "mplatform_followers_count": 0,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "旅游来陕西",
+        "comment_count": 40,
+        "mplatform_followers_count": 0,
+        "digg_count": 38,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 24,
+        "pv": 0
+    },
+    {
+        "nickname": "贝姨",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "文化艺术报报社",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "流星花园yyyj",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "金枫叶-佩棣",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西安老梁",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "今日点击",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "晓风薇语",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "蹊成自下言不李桃",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "国际在线陕西频道",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西忒别忒",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "旅行美食军",
+        "comment_count": 51,
+        "mplatform_followers_count": 0,
+        "digg_count": 173,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 51,
+        "pv": 0
+    },
+    {
+        "nickname": "周原汉子史鹏飞",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "闪视频",
+        "comment_count": 0,
+        "mplatform_followers_count": 8,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "@赵公子",
+        "comment_count": 32,
+        "mplatform_followers_count": 310,
+        "digg_count": 86,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "咸阳日报",
+        "comment_count": 60,
+        "mplatform_followers_count": 713321,
+        "digg_count": 3972,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 8,
+        "pv": 0
+    },
+    {
+        "nickname": "遇见咸阳",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "咸阳永哥",
+        "comment_count": 758,
+        "mplatform_followers_count": 4997,
+        "digg_count": 3967,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 16,
+        "pv": 0
+    },
+    {
+        "nickname": "小梁Show",
+        "comment_count": 2,
+        "mplatform_followers_count": 614,
+        "digg_count": 25,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "@卓越建筑",
+        "comment_count": 2,
+        "mplatform_followers_count": 1805,
+        "digg_count": 26,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "上官",
+        "comment_count": 0,
+        "mplatform_followers_count": 144,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "索海龍书法",
+        "comment_count": 2,
+        "mplatform_followers_count": 3004,
+        "digg_count": 50,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "咸阳非遗",
+        "comment_count": 0,
+        "mplatform_followers_count": 180,
+        "digg_count": 28,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "宁陕宣传",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西广播电视台安康记者站",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西部法制报",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西魏延安",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "916田子",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "阿史那鹏",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "徐奕1596",
+        "comment_count": 89,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 315,
+        "pv": 0
+    },
+    {
+        "nickname": "竹林深处的看客",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "花椒小姐515",
+        "comment_count": 5,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "释念",
+        "comment_count": 14,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 5,
+        "pv": 0
+    },
+    {
+        "nickname": "西秦佳子",
+        "comment_count": 13,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 18,
+        "pv": 0
+    },
+    {
+        "nickname": "哥在新筑",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "小日子的印记",
+        "comment_count": 6,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "sinyo",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "My波涛",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西旅游",
+        "comment_count": 8,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "老妖带你吃西安",
+        "comment_count": 14,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 8,
+        "pv": 0
+    },
+    {
+        "nickname": "YTCM",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "满河是水",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 9,
+        "pv": 0
+    },
+    {
+        "nickname": "佛祖笑了",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "康康先锋",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "六六sk8",
+        "comment_count": 11,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "亞瓊_趙",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "零度橙汁",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "月揽江南",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "Cindy心翼",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "磨牙鼠-豆",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "迷云障雾",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "旬阳融媒",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "安康日报",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "北京铁路",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "石泉检察",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "天津交通广播",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "共青团张家界",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "宁夏新闻广播",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "安康发布",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 6,
+        "pv": 0
+    },
+    {
+        "nickname": "美丽汉滨",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "岩院长说农播",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "中国食品报",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "安康环境",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "渭南市委政法委",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西统招专升本考试网",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "麥子Ruby",
+        "comment_count": 10,
+        "mplatform_followers_count": 86,
+        "digg_count": 15,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "新浪陕西安康",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西康杰",
+        "comment_count": 14,
+        "mplatform_followers_count": 3769,
+        "digg_count": 78,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "寒江雪",
+        "comment_count": 48,
+        "mplatform_followers_count": 3494,
+        "digg_count": 1391,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 11,
+        "pv": 0
+    },
+    {
+        "nickname": "用户752820157409",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "小移说通信",
+        "comment_count": 0,
+        "mplatform_followers_count": 719,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "Luffy",
+        "comment_count": 2,
+        "mplatform_followers_count": 42,
+        "digg_count": 16,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "屁屁哥哥",
+        "comment_count": 15,
+        "mplatform_followers_count": 10417,
+        "digg_count": 61,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "YoungDay·W",
+        "comment_count": 0,
+        "mplatform_followers_count": 54,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "开❤就好🌹#有赞必回#",
+        "comment_count": 0,
+        "mplatform_followers_count": 471,
+        "digg_count": 7,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "警察故事",
+        "comment_count": 6,
+        "mplatform_followers_count": 157446,
+        "digg_count": 348,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中阅览",
+        "comment_count": 210,
+        "mplatform_followers_count": 13685,
+        "digg_count": 905,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 6,
+        "pv": 0
+    },
+    {
+        "nickname": "留坝融媒",
+        "comment_count": 0,
+        "mplatform_followers_count": 8206,
+        "digg_count": 35,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "留坝宣传",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中门户网",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中发布",
+        "comment_count": 52,
+        "mplatform_followers_count": 0,
+        "digg_count": 206,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 947,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中经合",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "西乡宣传",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中视听",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 7,
+        "pv": 0
+    },
+    {
+        "nickname": "艾尚彤",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中城边事",
+        "comment_count": 9,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 7,
+        "pv": 0
+    },
+    {
+        "nickname": "今日汉中网",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西网汉中频道",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 9,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西省地震局",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "西咸文化讯点",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "佛坪县旅游发展委员会",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "腻好你好",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中市文化和旅游局",
+        "comment_count": 8,
+        "mplatform_followers_count": 0,
+        "digg_count": 54,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 28,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中税务",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中传媒",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "佛坪发布",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "镇巴发布",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "微略阳",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 6,
+        "pv": 0
+    },
+    {
+        "nickname": "南郑宣传",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "新闻热点搜索",
+        "comment_count": 52,
+        "mplatform_followers_count": 0,
+        "digg_count": 36,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "天汉青年-汉中共青团",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 28,
+        "pv": 0
+    },
+    {
+        "nickname": "西乡融媒",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "城固宣传",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "佛坪共青团",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "新浪榆林旅游",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "汉中时空网",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "勉县发布",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 48,
+        "pv": 0
+    },
+    {
+        "nickname": "南郑发布",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西政协",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "佛坪融媒",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "海以南向阳而开",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "视点蓝田",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "镇巴团青",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "汉台旅游",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "隔著雲端的女子YB",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "正义庄浪",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "秦女子之声",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "神秘的马娜丽莎",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 9,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "宁强团县委",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西咸新区空港新城",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西日报",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西生态环境",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 10,
+        "pv": 0
+    },
+    {
+        "nickname": "镇安县融媒体中心",
+        "comment_count": 3,
+        "mplatform_followers_count": 5536,
+        "digg_count": 242,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "铜川广播电视台",
+        "comment_count": 2,
+        "mplatform_followers_count": 2913379,
+        "digg_count": 254,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "Alice。🎈",
+        "comment_count": 2,
+        "mplatform_followers_count": 976,
+        "digg_count": 9,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "铜川发布",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西广播电视台刘芳",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "宝鸡文理学院教育学院团总支",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "咸阳同城",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西工人报",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "耿万崇",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "甘泉县融媒体中心",
+        "comment_count": 2,
+        "mplatform_followers_count": 8423,
+        "digg_count": 23,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "94一只猴",
+        "comment_count": 1,
+        "mplatform_followers_count": 838,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "用户8128561308145",
+        "comment_count": 1,
+        "mplatform_followers_count": 8,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "凝露百合",
+        "comment_count": 3,
+        "mplatform_followers_count": 18,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "徽州反邪教",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西日报新媒体",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "石阡检察",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "智游陕西",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "延安青年",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "云图媒介",
+        "comment_count": 97,
+        "mplatform_followers_count": 0,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "西安生态环境",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "汉阴检察",
+        "comment_count": 20,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西咸微距离",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "淮南山南警方在线",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 3,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "宁波镇海检察",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "延安生活",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "延安民声",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "子长融媒",
+        "comment_count": 551,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "文艺虎",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "寻人总动员鸣警",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "湖州同城会",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "微虎说事",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "兵子聊宅",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "988陕西音乐广播",
+        "comment_count": 26,
+        "mplatform_followers_count": 0,
+        "digg_count": 53,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 41,
+        "pv": 0
+    },
+    {
+        "nickname": "黄龙宣传",
+        "comment_count": 6,
+        "mplatform_followers_count": 0,
+        "digg_count": 12,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "国网陕西电力",
+        "comment_count": 64,
+        "mplatform_followers_count": 0,
+        "digg_count": 14,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 120,
+        "pv": 0
+    },
+    {
+        "nickname": "广西沿海铁路",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "三秦微校园",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "三江源国家公园",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "人民视频",
+        "comment_count": 10,
+        "mplatform_followers_count": 0,
+        "digg_count": 67,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 10,
+        "pv": 0
+    },
+    {
+        "nickname": "新浪陕西榆林",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "伊犁全攻略",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "谷禾在线",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "880山西交通广播",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "延安身边事",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "正义南康",
+        "comment_count": 5,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "老县城李刚",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 10,
+        "pv": 0
+    },
+    {
+        "nickname": "陪英格兰度过漫长岁月",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "临夏检察",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "瞭望",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 7,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "三秦二三事",
+        "comment_count": 9,
+        "mplatform_followers_count": 0,
+        "digg_count": 6,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 7,
+        "pv": 0
+    },
+    {
+        "nickname": "新浪陕西",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 5,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "延安新鲜事儿",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "延安新区",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西新鲜事儿",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "陕西气象",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "歪果仁在西安",
+        "comment_count": 223,
+        "mplatform_followers_count": 3560844,
+        "digg_count": 3983,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "抖八八",
+        "comment_count": 94,
+        "mplatform_followers_count": 21152,
+        "digg_count": 291,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 12,
+        "pv": 0
+    },
+    {
+        "nickname": "主持人高蓓",
+        "comment_count": 7,
+        "mplatform_followers_count": 14109,
+        "digg_count": 37,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "榆林日报",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "阿斯不甜7",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "988高蓓",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "安康检察",
+        "comment_count": 2,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 3,
+        "pv": 0
+    },
+    {
+        "nickname": "点击三秦",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "榆林身边事",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 2,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "西安晚报",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2,
+        "pv": 0
+    },
+    {
+        "nickname": "巍巍上郡风一平安榆林",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "玩转大榆林",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1,
+        "pv": 0
+    },
+    {
+        "nickname": "榆林宣传",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 1,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 0
+    },
+    {
+        "nickname": "西安商网",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 0
+    },
+    {
+        "nickname": "蓝直播",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 69
+    },
+    {
+        "nickname": "我爱我的家乡",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 350
+    },
+    {
+        "nickname": "小编视界",
+        "comment_count": 1,
+        "mplatform_followers_count": 0,
+        "digg_count": 7,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 364
+    },
+    {
+        "nickname": "延安市融媒体中心",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 368
+    },
+    {
+        "nickname": "妍",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 734
+    },
+    {
+        "nickname": "陕西广播电视台",
+        "comment_count": 376,
+        "mplatform_followers_count": 5923835,
+        "digg_count": 11376,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 260,
+        "pv": 756
+    },
+    {
+        "nickname": "马到成功焦保平",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 992
+    },
+    {
+        "nickname": "主持人阳朔",
+        "comment_count": 21,
+        "mplatform_followers_count": 0,
+        "digg_count": 21,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 1878
+    },
+    {
+        "nickname": "陕西延安洛川生产队",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 19,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 2302
+    },
+    {
+        "nickname": "陕西卫视",
+        "comment_count": 564,
+        "mplatform_followers_count": 3635573,
+        "digg_count": 18161,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 587,
+        "pv": 2540
+    },
+    {
+        "nickname": "楚小扬&怀旧金曲",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 38,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 2638
+    },
+    {
+        "nickname": "流年殇",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 10,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 2812
+    },
+    {
+        "nickname": "雪玉儿",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 4,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 3015
+    },
+    {
+        "nickname": "时光转角 默然",
+        "comment_count": 6,
+        "mplatform_followers_count": 0,
+        "digg_count": 21,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 3157
+    },
+    {
+        "nickname": "洛川融媒",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 8,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 3375
+    },
+    {
+        "nickname": "陕北说书乔仰文",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 27,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 3566
+    },
+    {
+        "nickname": "主持人杨硕",
+        "comment_count": 37,
+        "mplatform_followers_count": 22959,
+        "digg_count": 212,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 3982
+    },
+    {
+        "nickname": "杨峰",
+        "comment_count": 12,
+        "mplatform_followers_count": 0,
+        "digg_count": 40,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 4956
+    },
+    {
+        "nickname": "坚定小哥哥",
+        "comment_count": 189,
+        "mplatform_followers_count": 0,
+        "digg_count": 189,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 4978
+    },
+    {
+        "nickname": "宝鸡新闻网",
+        "comment_count": 143,
+        "mplatform_followers_count": 636969,
+        "digg_count": 2037,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 7,
+        "pv": 5825
+    },
+    {
+        "nickname": "秦试听",
+        "comment_count": 85,
+        "mplatform_followers_count": 0,
+        "digg_count": 85,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 6391
+    },
+    {
+        "nickname": "航拍榆林",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 50,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 6884
+    },
+    {
+        "nickname": "网看天下395",
+        "comment_count": 4,
+        "mplatform_followers_count": 0,
+        "digg_count": 60,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 8385
+    },
+    {
+        "nickname": "农林卫视",
+        "comment_count": 242,
+        "mplatform_followers_count": 2418200,
+        "digg_count": 15821,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 13,
+        "pv": 8471
+    },
+    {
+        "nickname": "红尘",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 45,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 8627
+    },
+    {
+        "nickname": "榆林传媒中心",
+        "comment_count": 381,
+        "mplatform_followers_count": 1193311,
+        "digg_count": 42068,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 48,
+        "pv": 9766
+    },
+    {
+        "nickname": "华影传媒",
+        "comment_count": 0,
+        "mplatform_followers_count": 0,
+        "digg_count": 0,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 10000
+    },
+    {
+        "nickname": "主持人秦越",
+        "comment_count": 223,
+        "mplatform_followers_count": 0,
+        "digg_count": 223,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 11978
+    },
+    {
+        "nickname": "丝绸之路手机台",
+        "comment_count": 3,
+        "mplatform_followers_count": 0,
+        "digg_count": 98,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 14000
+    },
+    {
+        "nickname": "长安龙少",
+        "comment_count": 103,
+        "mplatform_followers_count": 0,
+        "digg_count": 257,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 14000
+    },
+    {
+        "nickname": "China-ArabTV",
+        "comment_count": 16,
+        "mplatform_followers_count": 0,
+        "digg_count": 201,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 19166
+    },
+    {
+        "nickname": "陕北之声·官方",
+        "comment_count": 20,
+        "mplatform_followers_count": 0,
+        "digg_count": 477,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 24000
+    },
+    {
+        "nickname": "陕西戏曲广播",
+        "comment_count": 120,
+        "mplatform_followers_count": 0,
+        "digg_count": 467,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 31,
+        "pv": 40870
+    },
+    {
+        "nickname": "木槿 不少",
+        "comment_count": 54,
+        "mplatform_followers_count": 0,
+        "digg_count": 589,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 46000
+    },
+    {
+        "nickname": "优酷综艺汇",
+        "comment_count": 11,
+        "mplatform_followers_count": 0,
+        "digg_count": 267,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 58000
+    },
+    {
+        "nickname": "我是延安",
+        "comment_count": 5,
+        "mplatform_followers_count": 0,
+        "digg_count": 456,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 62883
+    },
+    {
+        "nickname": "香港旺角小龙女龙婷",
+        "comment_count": 129,
+        "mplatform_followers_count": 0,
+        "digg_count": 1139,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 69000
+    },
+    {
+        "nickname": "守灵人金龙",
+        "comment_count": 368,
+        "mplatform_followers_count": 0,
+        "digg_count": 1789,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 69540
+    },
+    {
+        "nickname": "额滴妈耶 未央",
+        "comment_count": 51,
+        "mplatform_followers_count": 0,
+        "digg_count": 941,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 72000
+    },
+    {
+        "nickname": "听陕西",
+        "comment_count": 209,
+        "mplatform_followers_count": 4534329,
+        "digg_count": 4258,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 4,
+        "pv": 90358
+    },
+    {
+        "nickname": "西安街拍老聂",
+        "comment_count": 80,
+        "mplatform_followers_count": 0,
+        "digg_count": 1810,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 175000
+    },
+    {
+        "nickname": "西安网",
+        "comment_count": 392,
+        "mplatform_followers_count": 0,
+        "digg_count": 306,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 16,
+        "pv": 312027
+    },
+    {
+        "nickname": "896汽车调频",
+        "comment_count": 46,
+        "mplatform_followers_count": 0,
+        "digg_count": 625,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 34,
+        "pv": 321916
+    },
+    {
+        "nickname": "陕西都市快报",
+        "comment_count": 47352,
+        "mplatform_followers_count": 19641639,
+        "digg_count": 1524529,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 2283,
+        "pv": 374837
+    },
+    {
+        "nickname": "好听1055",
+        "comment_count": 122,
+        "mplatform_followers_count": 0,
+        "digg_count": 419,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 38,
+        "pv": 432104
+    },
+    {
+        "nickname": "陕西广播电视报 ",
+        "comment_count": 40,
+        "mplatform_followers_count": 0,
+        "digg_count": 514,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 26,
+        "pv": 452811
+    },
+    {
+        "nickname": "陕拾叁",
+        "comment_count": 715,
+        "mplatform_followers_count": 0,
+        "digg_count": 9215,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 511,
+        "pv": 480294
+    },
+    {
+        "nickname": "陕西1频道",
+        "comment_count": 103,
+        "mplatform_followers_count": 8933113,
+        "digg_count": 11230,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 12,
+        "pv": 516921
+    },
+    {
+        "nickname": "陕西交通广播",
+        "comment_count": 60,
+        "mplatform_followers_count": 2662,
+        "digg_count": 690,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 40,
+        "pv": 572565
+    },
+    {
+        "nickname": "陕西文艺 ",
+        "comment_count": 46,
+        "mplatform_followers_count": 0,
+        "digg_count": 620,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 32,
+        "pv": 689582
+    },
+    {
+        "nickname": "大胖航拍",
+        "comment_count": 1083,
+        "mplatform_followers_count": 0,
+        "digg_count": 11736,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 0,
+        "pv": 735000
+    },
+    {
+        "nickname": "人民视频 ",
+        "comment_count": 852,
+        "mplatform_followers_count": 0,
+        "digg_count": 10987,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 610,
+        "pv": 12210210
+    },
+    {
+        "nickname": "陕视新闻",
+        "comment_count": 5877,
+        "mplatform_followers_count": 17100624,
+        "digg_count": 734809,
+        "total_digg_count": 0,
+        "share_count": 0,
+        "forward_count": 1449,
+        "pv": 67603348
+    }
+]

+ 72 - 0
src/node.js

@@ -0,0 +1,72 @@
+const { Promise } = require("core-js");
+const https = require("https");
+const fs = require("fs");
+
+async function getlist() {
+  return new Promise((resolve, reject) => {
+    https
+      .get("https://bigdata.smcic.net/overview?&season=1", res => {
+        let d = "";
+
+        res.on("data", data => {
+          d += data;
+        });
+        res.on("end", () => {
+          let date = JSON.parse(d);
+          resolve(date);
+        });
+      })
+      .on("error", e => {
+        reject(e);
+      });
+  });
+}
+async function getpla(v) {
+  return new Promise((resolve, reject) => {
+    https
+      .get(
+        "https://bigdata.smcic.net/name?topic_name=" +
+          v +
+          "&platform=ALL&type=all&season=1",
+        res => {
+          let d = "";
+          res.on("data", data => {
+            d += data;
+          });
+          res.on("end", () => {
+            let date = JSON.parse(d);
+            resolve(date);
+          });
+        }
+      )
+      .on("error", e => {
+        reject(e);
+      });
+  });
+}
+
+async function t() {
+  const list = await getlist();
+  const out = {};
+  const li = [];
+  for (let i = 0; i < list.length; i++) {
+    const v = list[i];
+    const plist = await getpla(v.topic_name);
+    for (let o = 0; o < plist.length; o++) {
+      const item = plist[o];
+      if (out[item.nickname] === undefined) {
+        li.push(item);
+        out[item.nickname] = li.length - 1;
+        continue;
+      }
+      let keys = Object.keys(item);
+      for (let p = 0; p < keys.length; p++) {
+        const value = keys[p];
+        if (value !== "nickname") li[out[item.nickname]][value] += item[value];
+      }
+    }
+  }
+  fs.writeFileSync("./list.json", JSON.stringify(li.sort((a,b)=>a.pv -b.pv)));
+}
+
+t();

+ 5 - 0
src/router/index.js

@@ -33,6 +33,11 @@ const routes = [
     path: "/boutiqueColumn",
     name: 'boutiqueColumn',
     component: () => import(/* webpackChunkName: "boutiqueColumn" */ '../views/BoutiqueColumn/BoutiqueColumn.vue')
+  },
+  {
+    path: "/activity",
+    name: 'Activity',
+    component: () => import(/* webpackChunkName: "Activity" */ '../views/Activity/Activity.vue')
   }
 ]
 

+ 12 - 8
src/utils/request.js

@@ -1,6 +1,6 @@
 import config from "../config/index";
 
-import { ElLoading } from 'element-plus'
+import { ElLoading } from "element-plus";
 
 function getdata(data) {
   let text = "";
@@ -16,10 +16,13 @@ export default function(ori) {
   let baseurl = config.base[ori.urlType || "url"];
   let url = baseurl + ori.url + getdata(ori.data || {});
   if (ori.downCsv) return window.open(url);
-  let load = ElLoading.service({
+  let d = {
     lock: true,
-    background: 'rgba(255, 255, 255, 0.7)',
-  })
+    background: "rgba(255, 255, 255, 0.7)",
+  };
+  ori.target && (d.target = ori.target);
+  let load = {};
+  if (!ori.notLoad) load = ElLoading.service(d);
   return new Promise((resolve, reject) => {
     var xhttp;
     if (window.XMLHttpRequest) xhttp = new XMLHttpRequest();
@@ -29,18 +32,19 @@ export default function(ori) {
     xhttp.open(method, url, true);
     method === "GET" ? xhttp.send() : xhttp.send(JSON.stringify(ori.data));
     xhttp.onreadystatechange = function() {
-      if (this.readyState === 4) load.close()
+      if (this.readyState === 4 && load.close) load.close();
       if (this.readyState != 4 || this.status != 200) return;
       let data = {};
       try {
-        data = JSON.parse(this.responseText || "{}");
+        data = this.responseText !== 'null' ? JSON.parse(this.responseText || "{}") : {};
       } catch (err) {
         console.error(err);
         reject(err);
       }
-      data.response && (data = data.response);
+
+      data && data.response && (data = data.response);
       if (!ori.urlType && !data.status) return reject(data.message);
-      resolve(data.data || data.response);
+      resolve(data.data || data.response || data);
     };
   });
 }

+ 140 - 0
src/views/Activity/Activity.vue

@@ -0,0 +1,140 @@
+<template>
+  <div class="activity">
+    <el-loading></el-loading>
+    <el-breadcrumb separator-class="el-icon-arrow-right">
+      <el-breadcrumb-item>新媒体</el-breadcrumb-item>
+      <el-breadcrumb-item>重大活动传播数据</el-breadcrumb-item>
+    </el-breadcrumb>
+    <br />
+    <el-tabs
+      tab-position="top"
+      style="max-height: 100%;"
+      @tab-click="selectTab"
+    >
+      <el-tab-pane :label="item.name" v-for="(item, i) in activitys" :key="i">
+        <el-scrollbar
+          height="100%"
+          always
+          wrap-class="scorll"
+          :name="i"
+          v-if="item.component === select || selectA[item.component]"
+        >
+          <component :is="item.component" :item="item"></component>
+        </el-scrollbar>
+      </el-tab-pane>
+    </el-tabs>
+  </div>
+</template>
+
+<script>
+// @ is an alias to /src
+import { defaultAjax } from "@/api/index";
+import derunsanqin from "./views/derunsanqin.vue";
+import huashanyunhai from "./views/huashanyunhai.vue";
+import mianmianjiedao from "./views/mianmianjiedao.vue";
+import zhongqiuzhiye from "./views/zhongqiuzhiye.vue";
+import shanxijiaoao1 from "./views/shanxijiaoao1.vue";
+import shanxijiaoao2 from "./views/shanxijiaoao2.vue";
+export default {
+  name: "Activity",
+  data() {
+    return {
+      activitys: [],
+      select: "",
+      selectA: {},
+    };
+  },
+  mounted() {
+    defaultAjax({
+      url: "https://djweb.smcic.net/dj/static/chinaMap.json?t=" + Date.now(),
+    }).then(map => {
+      localStorage.setItem("chinaMap", JSON.stringify(map.json));
+      this.activitys = [
+        {
+          name: "德润三秦",
+          url: ["https://djweb.smcic.net/dj/static/t.json?" + Date.now()],
+          component: "derunsanqin",
+        },
+        {
+          name: "华山云海音乐会",
+          component: "huashanyunhai",
+        },
+        {
+          name: "面面皆道",
+          component: "mianmianjiedao",
+        },
+        {
+          name: "中秋之夜",
+          component: "zhongqiuzhiye",
+        },
+        {
+          name: "陕西骄傲-第二季",
+          component: "shanxijiaoao2",
+        },
+        {
+          name: "陕西骄傲-第一季",
+          component: "shanxijiaoao1",
+        },
+      ];
+      this.select = (this.activitys[0] || {}).component;
+      this.selectA[this.select] = true;
+    });
+  },
+  computed: {},
+  methods: {
+    selectTab(tab) {
+      try {
+        this.select = this.activitys[tab.index].component;
+        this.selectA[this.select] = true;
+      } catch (err) {
+        console.log(err);
+      }
+    },
+  },
+  beforeUnmount: function() {},
+  components: {
+    derunsanqin,
+    huashanyunhai,
+    mianmianjiedao,
+    zhongqiuzhiye,
+    shanxijiaoao1,
+    shanxijiaoao2,
+  },
+};
+</script>
+
+<style>
+.activity {
+  padding: 10px 15px;
+  box-sizing: border-box;
+}
+
+.activity .num {
+  font-size: 42px;
+  color: #91afc8;
+}
+.titleNum {
+  text-align: center;
+}
+.chart {
+  padding: 5px 3px;
+}
+
+.subtitle {
+  font-size: 16px;
+  font-weight: 600;
+}
+
+.wumen {
+  height: 1.5em;
+  overflow: hidden;
+  border-radius: 3px;
+  background-color: #fc8452;
+  text-align: right;
+}
+.men {
+  width: 50%;
+  background-color: #566ec6;
+  height: 100%;
+}
+</style>

+ 437 - 0
src/views/Activity/views/derunsanqin.vue

@@ -0,0 +1,437 @@
+<template>
+  <div class="derunsanqin">
+    <el-row v-if="data.total" class="titleNum">
+      <el-col :span="6">
+        <div class="num">{{ formateNum(data.total.play_count) }}</div>
+        传播量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #ffbb44;">
+          {{ formateNum(data.total.all) }}
+        </div>
+        发稿量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #11a0f8;">
+          {{ formateNum(data.total.digg_count) }}
+        </div>
+        点赞量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #f47f92;">
+          {{ formateNum(data.total.comment_count) }}
+        </div>
+        评论量
+      </el-col>
+    </el-row>
+    <br />
+    <el-row>
+      <el-col :span="24">
+        <div class="chart">
+          <div class="subtitle">受众性别比</div>
+          <br />
+          <el-row>
+            <el-col :span="2" style="text-align: center;"
+              >男{{ ((sexMen / all) * 100).toFixed(2) }}%</el-col
+            >
+            <el-col :span="20">
+              <div class="wumen">
+                <div
+                  class="men"
+                  :style="{ width: ((sexMen / all) * 100).toFixed(2) + '%' }"
+                ></div>
+              </div>
+            </el-col>
+            <el-col :span="2" style="text-align: center;"
+              >{{ ((sexWoman / all) * 100).toFixed(2) }}%女</el-col
+            >
+          </el-row>
+        </div>
+      </el-col>
+    </el-row>
+    <br />
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">发稿平台</div>
+          <el-divider></el-divider>
+          <div class="pieChart" ref="pieChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">词云</div>
+          <el-divider></el-divider>
+          <div class="cloudChart" ref="cloudChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">地域分布</div>
+          <el-divider></el-divider>
+          <div class="mapChart" ref="mapChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">情感分布</div>
+          <el-divider></el-divider>
+          <div class="emotionChart" ref="emotionChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+// @ is an alias to /src
+import { defaultAjax } from "@/api/index";
+
+import * as echarts from "echarts/core";
+import { PieChart, MapChart } from "echarts/charts";
+import {
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  ToolboxComponent,
+  VisualMapComponent,
+  LegendComponent,
+} from "echarts/components";
+import { LabelLayout, UniversalTransition } from "echarts/features";
+import { CanvasRenderer } from "echarts/renderers";
+echarts.use([
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  PieChart,
+  MapChart,
+  CanvasRenderer,
+  ToolboxComponent,
+  VisualMapComponent,
+  LabelLayout,
+  UniversalTransition,
+  LegendComponent,
+]);
+import "echarts-wordcloud";
+export default {
+  name: "derunsanqin",
+  props: ["item"],
+  data() {
+    return {
+      data: {},
+      sexMen: 0,
+      sexWoman: 0,
+      all: 1,
+    };
+  },
+  mounted() {
+    defaultAjax({
+      url: "https://djweb.smcic.net/dj/static/drsq.json?t=" + Date.now(),
+    }).then(res => {
+      this.cloudChart(res || []);
+    });
+    defaultAjax({
+      url: this.item.url[0],
+      data: {},
+    }).then(res => {
+      this.data = res || {};
+      for (let i = 0; i < this.data.character.sex.length; i++) {
+        const v = this.data.character.sex[i];
+        if (v.name === "男") {
+          this.sexMen = v.value;
+        } else if (v.name === "女") {
+          this.sexWoman = v.value;
+        }
+        this.all += v.value;
+      }
+      this.pieChartFun();
+      this.emotionChartFun();
+      this.mapChartFun(JSON.parse(localStorage.getItem("chinaMap") || "{}"));
+    });
+  },
+  computed: {},
+  methods: {
+    formateNum(n) {
+      return (n + "").replace(/\B(?=(?:\d{3})+\b)/g, ",");
+    },
+    pieChartFun() {
+      const li = this.data.platform.map(v => {
+        return {
+          value: v.total,
+          name: v.groupValue,
+        };
+      });
+      this.chart1 = echarts.init(this.$refs.pieChart);
+      this.chart1.resize({
+        height: (this.$refs.pieChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{a} <br/>{b}: {c} ({d}%)",
+        },
+        series: [
+          {
+            name: "发稿量",
+            type: "pie",
+            radius: ["30%", "50%"],
+            labelLine: {
+              length: 30,
+            },
+            label: {
+              formatter: "{a|{a}}{abg|}\n{hr|}\n  {b|{b}:}{c}  {per|{d}%}  ",
+              borderColor: "#8C8D8E",
+              borderWidth: 1,
+              borderRadius: 4,
+              rich: {
+                a: {
+                  color: "#6E7079",
+                  lineHeight: 22,
+                  align: "center",
+                },
+                hr: {
+                  borderColor: "#8C8D8E",
+                  width: "100%",
+                  borderWidth: 1,
+                  height: 0,
+                },
+                b: {
+                  color: "#4C5058",
+                  fontSize: 14,
+                  fontWeight: "bold",
+                  lineHeight: 33,
+                },
+                per: {
+                  color: "#fff",
+                  backgroundColor: "#4C5058",
+                  padding: [3, 4],
+                  borderRadius: 4,
+                },
+              },
+            },
+            data: li,
+          },
+        ],
+      };
+
+      option && this.chart1.setOption(option);
+    },
+    mapChartFun(map) {
+      this.chart2 = echarts.init(this.$refs.mapChart);
+      this.chart2.resize({
+        height: this.$refs.mapChart.offsetWidth,
+      });
+      echarts.registerMap("china", map);
+      var option = {
+        tooltip: {
+          show: true,
+          formatter: function(res) {
+            if (!res.data) return "";
+            return res.data.name + ":" + (res.data.value || 0);
+          },
+        },
+        visualMap: {
+          show: false,
+          min: 0,
+          max: 1000,
+          inRange: {
+            color: ["rgba(118,172,255, .2)", "orangered"],
+          },
+        },
+        series: [
+          {
+            type: "map",
+            mapType: "china",
+            geoIndex: 0,
+            zppm: 1.25,
+            label: {
+              normal: {
+                show: true,
+                formatter: function(r) {
+                  let d = r.data || {};
+                  if (!d.name) return "";
+                  var out = d.value;
+                  if (out >= 100000000) {
+                    out = (out / 100000000).toFixed(2) + "亿";
+                  } else if (out >= 10000) {
+                    out = (out / 10000).toFixed(2) + "万";
+                  }
+                  return d.name + ":" + out;
+                },
+              },
+              emphasis: {
+                show: false,
+              },
+            },
+            scaleLimit: {
+              //滚轮缩放的极限控制
+              min: 1.25,
+              max: 2,
+            },
+            itemStyle: {
+              normal: {
+                borderColor: "#76acff", //每个区域的边框色
+                areaColor: "rgba(118,172,255, 0)", //区域背景色
+              },
+            },
+            data: this.data.map || [],
+          },
+        ],
+      };
+
+      option && this.chart2.setOption(option);
+    },
+    emotionChartFun() {
+      const li = this.data.character ? this.data.character.emotion || [] : [];
+      const feeling = this.data.character
+        ? this.data.character.feeling || []
+        : [];
+      let l = [],
+        feelingList = [];
+      for (let i = 0; i < li.length; i++) {
+        const v = li[i];
+        v.value && l.push(v);
+      }
+      for (let i = 0; i < feeling.length; i++) {
+        const v = feeling[i];
+        v.value && feelingList.push(v);
+      }
+      this.chart2 = echarts.init(this.$refs.emotionChart);
+      this.chart2.resize({
+        height: this.$refs.emotionChart.offsetWidth,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{b}: {c} ({d}%)",
+        },
+        legend: {
+          data: [
+            "Direct",
+            "Marketing",
+            "Search Engine",
+            "Email",
+            "Union Ads",
+            "Video Ads",
+            "Baidu",
+            "Google",
+            "Bing",
+            "Others",
+          ],
+        },
+        series: [
+          {
+            name: "Access From",
+            type: "pie",
+            selectedMode: "single",
+            radius: [0, "30%"],
+            label: {
+              position: "inner",
+              fontSize: 14,
+            },
+            labelLine: {
+              show: false,
+            },
+            data: feelingList,
+          },
+          {
+            name: "Access From",
+            type: "pie",
+            radius: ["45%", "60%"],
+            labelLine: {
+              length: 30,
+            },
+            label: {
+              formatter: "{b}:{d}%",
+            },
+            data: l,
+          },
+        ],
+      };
+
+      option && this.chart2.setOption(option);
+    },
+    cloudChart(list) {
+      this.chart3 = echarts.init(this.$refs.cloudChart);
+      this.chart3.resize({
+        height: (this.$refs.cloudChart.offsetWidth * 9) / 16,
+      });
+      this.chart3.setOption({
+        series: [
+          {
+            type: "wordCloud",
+
+            // The shape of the "cloud" to draw. Can be any polar equation represented as a
+            // callback function, or a keyword present. Available presents are circle (default),
+            // cardioid (apple or heart shape curve, the most known polar equation), diamond (
+            // alias of square), triangle-forward, triangle, (alias of triangle-upright, pentagon, and star.
+
+            shape: "alias of square",
+            // Folllowing left/top/width/height/right/bottom are used for positioning the word cloud
+            // Default to be put in the center and has 75% x 80% size.
+            width: "100%",
+            height: "100%",
+
+            // Text size range which the value in data will be mapped to.
+            // Default to have minimum 12px and maximum 60px size.
+
+            sizeRange: [12, 60],
+
+            // Text rotation range and step in degree. Text will be rotated randomly in range [-90, 90] by rotationStep 45
+
+            rotationRange: [-90, 90],
+            rotationStep: 45,
+
+            // size of the grid in pixels for marking the availability of the canvas
+            // the larger the grid size, the bigger the gap between words.
+
+            gridSize: 8,
+
+            // set to true to allow word being draw partly outside of the canvas.
+            // Allow word bigger than the size of the canvas to be drawn
+            drawOutOfBound: false,
+
+            // If perform layout animation.
+            // NOTE disable it will lead to UI blocking when there is lots of words.
+            layoutAnimation: true,
+
+            // Global text style
+            textStyle: {
+              fontFamily: "sans-serif",
+              fontWeight: "bold",
+              // Color can be a callback function or a color string
+              color: function() {
+                // Random color
+                return (
+                  "rgb(" +
+                  [
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                  ].join(",") +
+                  ")"
+                );
+              },
+            },
+            emphasis: {
+              focus: "self",
+
+              textStyle: {
+                shadowBlur: 10,
+                shadowColor: "#333",
+              },
+            },
+            data: list,
+          },
+        ],
+      });
+    },
+  },
+  beforeUnmount: function() {},
+  components: {},
+};
+</script>
+
+<style></style>

+ 398 - 0
src/views/Activity/views/huashanyunhai.vue

@@ -0,0 +1,398 @@
+<template>
+  <div class="huashanyunhai">
+    <el-row v-if="allPlatform" class="titleNum">
+      <el-col :span="4">
+        <div class="num">{{ formateNum(allPlatform.read || 0) }}</div>
+        传播量
+      </el-col>
+      <el-col :span="4">
+        <div class="num" style="color: #11a0f8;">
+          {{ formateNum(allPlatform.digg || 0) }}
+        </div>
+        点赞量
+      </el-col>
+      <el-col :span="4">
+        <div class="num" style="color: #ffbb44;">
+          {{ formateNum(allPlatform.comment || 0) }}
+        </div>
+        评论量
+      </el-col>
+      <el-col :span="4">
+        <div class="num" style="color: #f47f92;">
+          {{ formateNum(allPlatform.share || 0) }}
+        </div>
+        分享量
+      </el-col>
+      <el-col :span="4">
+        <div class="num" style="color: #42b983;">
+          {{ formateNum(allPlatform.share || 0) }}
+        </div>
+        大屏收视率
+      </el-col>
+      <el-col :span="4">
+        <div class="num" style="color: #5470c6;">
+          {{ formateNum(allPlatform.share || 0) }}
+        </div>
+        市场占有率
+      </el-col>
+    </el-row>
+    <br />
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">平台传播量</div>
+          <el-divider></el-divider>
+          <div class="pieChart" ref="pieChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">词云</div>
+          <el-divider></el-divider>
+          <div class="cloudChart" ref="cloudChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">地域分布</div>
+          <el-divider></el-divider>
+          <div class="mapChart" ref="mapChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">平台发稿量</div>
+          <el-divider></el-divider>
+          <div class="platformChart" ref="platformChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+// @ is an alias to /src
+import { defaultAjax } from "@/api/index";
+
+import * as echarts from "echarts/core";
+import { PieChart, MapChart } from "echarts/charts";
+import {
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  ToolboxComponent,
+  VisualMapComponent,
+  LegendComponent,
+} from "echarts/components";
+import { LabelLayout, UniversalTransition } from "echarts/features";
+import { CanvasRenderer } from "echarts/renderers";
+echarts.use([
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  PieChart,
+  MapChart,
+  CanvasRenderer,
+  ToolboxComponent,
+  VisualMapComponent,
+  LabelLayout,
+  UniversalTransition,
+  LegendComponent,
+]);
+import "echarts-wordcloud";
+export default {
+  name: "huashanyunhai",
+  props: ["item"],
+  data() {
+    return {
+      platform: [],
+      allPlatform: {},
+      oriData: {},
+    };
+  },
+  mounted() {
+    defaultAjax({
+      url:
+        "https://djweb.smcic.net/data/chongyang/CY_data.json?v=" + Date.now(),
+    }).then(res => {
+      this.platform = res || [];
+      this.allPlatform = this.platform.shift();
+      this.pieChartFun();
+    });
+    defaultAjax({
+      url:
+        "https://djweb.smcic.net/data/chongyang/CY_topic.json?v=" + Date.now(),
+    }).then(res => {
+      console.log(res);
+      this.oriData = res || { map: [], platform: [], words: [] };
+      this.platformChartFun();
+      this.cloudChart();
+      this.mapChartFun(JSON.parse(localStorage.getItem("chinaMap") || "{}"));
+    });
+  },
+  computed: {},
+  methods: {
+    formateNum(n) {
+      return (n + "").replace(/\B(?=(?:\d{3})+\b)/g, ",");
+    },
+    pieChartFun() {
+      const li = this.platform.map(v => {
+        return {
+          value: v.read,
+          name: v.name,
+        };
+      });
+      this.chart0 = echarts.init(this.$refs.pieChart);
+      this.chart0.resize({
+        height: (this.$refs.pieChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{a} <br/>{b}: {c} ({d}%)",
+        },
+        series: [
+          {
+            name: "发稿量",
+            type: "pie",
+            radius: ["30%", "50%"],
+            labelLine: {
+              length: 30,
+            },
+            label: {
+              formatter: " {b|{b}:} {per|{d}%}  ",
+              borderColor: "#8C8D8E",
+              borderWidth: 1,
+              borderRadius: 4,
+              rich: {
+                a: {
+                  color: "#6E7079",
+                  lineHeight: 22,
+                  align: "center",
+                },
+                hr: {
+                  borderColor: "#8C8D8E",
+                  width: "100%",
+                  borderWidth: 1,
+                  height: 0,
+                },
+                b: {
+                  color: "#4C5058",
+                  fontSize: 14,
+                  fontWeight: "bold",
+                  lineHeight: 33,
+                },
+                per: {
+                  color: "#fff",
+                  backgroundColor: "#4C5058",
+                  padding: [3, 4],
+                  borderRadius: 4,
+                },
+              },
+            },
+            data: li,
+          },
+        ],
+      };
+
+      option && this.chart0.setOption(option);
+    },
+    platformChartFun() {
+      const li = [],
+        liKey = [];
+      this.oriData.platform
+        .sort((a, b) => a.value - b.value)
+        .map(v => {
+          li.push(v.value);
+          liKey.push(v.name);
+        });
+      this.chart1 = echarts.init(this.$refs.platformChart);
+      this.chart1.resize({
+        height: this.$refs.platformChart.offsetWidth
+      });
+      var option = {
+        tooltip: {
+          trigger: "axis",
+          axisPointer: {
+            type: "shadow",
+          },
+        },
+        legend: {},
+        grid: {
+          left: "3%",
+          right: "4%",
+          bottom: "3%",
+          containLabel: true,
+        },
+        xAxis: {
+          type: "value",
+          boundaryGap: [0, 0.01],
+        },
+        yAxis: {
+          type: "category",
+          data: liKey,
+        },
+        series: [
+          {
+            name: "2011",
+            type: "bar",
+            data: li,
+          },
+        ],
+      };
+
+      option && this.chart1.setOption(option);
+    },
+    mapChartFun(map) {
+      this.chart2 = echarts.init(this.$refs.mapChart);
+      this.chart2.resize({
+        height: this.$refs.mapChart.offsetWidth,
+      });
+      echarts.registerMap("china", map);
+      var option = {
+        tooltip: {
+          show: true,
+          formatter: function(res) {
+            if (!res.data) return "";
+            return res.data.name + ":" + (res.data.value || 0);
+          },
+        },
+        visualMap: {
+          show: false,
+          min: 0,
+          max: 1000,
+          inRange: {
+            color: ["rgba(118,172,255, .2)", "orangered"],
+          },
+        },
+        series: [
+          {
+            type: "map",
+            mapType: "china",
+            geoIndex: 0,
+            zppm: 1.25,
+            label: {
+              normal: {
+                show: true,
+                formatter: function(r) {
+                  let d = r.data || {};
+                  if (!d.name) return "";
+                  var out = d.value;
+                  if (out >= 100000000) {
+                    out = (out / 100000000).toFixed(2) + "亿";
+                  } else if (out >= 10000) {
+                    out = (out / 10000).toFixed(2) + "万";
+                  }
+                  return d.name + ":" + out;
+                },
+              },
+              emphasis: {
+                show: false,
+              },
+            },
+            scaleLimit: {
+              //滚轮缩放的极限控制
+              min: 1.25,
+              max: 2,
+            },
+            itemStyle: {
+              normal: {
+                borderColor: "#76acff", //每个区域的边框色
+                areaColor: "rgba(118,172,255, 0)", //区域背景色
+              },
+            },
+            data: this.oriData.map || [],
+          },
+        ],
+      };
+
+      option && this.chart2.setOption(option);
+    },
+    cloudChart() {
+      this.chart3 = echarts.init(this.$refs.cloudChart);
+      this.chart3.resize({
+        height: (this.$refs.cloudChart.offsetWidth * 9) / 16,
+      });
+      this.chart3.setOption({
+        series: [
+          {
+            type: "wordCloud",
+
+            // The shape of the "cloud" to draw. Can be any polar equation represented as a
+            // callback function, or a keyword present. Available presents are circle (default),
+            // cardioid (apple or heart shape curve, the most known polar equation), diamond (
+            // alias of square), triangle-forward, triangle, (alias of triangle-upright, pentagon, and star.
+
+            shape: "alias of square",
+            // Folllowing left/top/width/height/right/bottom are used for positioning the word cloud
+            // Default to be put in the center and has 75% x 80% size.
+            width: "100%",
+            height: "100%",
+
+            // Text size range which the value in data will be mapped to.
+            // Default to have minimum 12px and maximum 60px size.
+
+            sizeRange: [12, 60],
+
+            // Text rotation range and step in degree. Text will be rotated randomly in range [-90, 90] by rotationStep 45
+
+            rotationRange: [-90, 90],
+            rotationStep: 45,
+
+            // size of the grid in pixels for marking the availability of the canvas
+            // the larger the grid size, the bigger the gap between words.
+
+            gridSize: 8,
+
+            // set to true to allow word being draw partly outside of the canvas.
+            // Allow word bigger than the size of the canvas to be drawn
+            drawOutOfBound: false,
+
+            // If perform layout animation.
+            // NOTE disable it will lead to UI blocking when there is lots of words.
+            layoutAnimation: true,
+
+            // Global text style
+            textStyle: {
+              fontFamily: "sans-serif",
+              fontWeight: "bold",
+              // Color can be a callback function or a color string
+              color: function() {
+                // Random color
+                return (
+                  "rgb(" +
+                  [
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                  ].join(",") +
+                  ")"
+                );
+              },
+            },
+            emphasis: {
+              focus: "self",
+
+              textStyle: {
+                shadowBlur: 10,
+                shadowColor: "#333",
+              },
+            },
+            data: this.oriData.words,
+          },
+        ],
+      });
+    },
+  },
+  beforeUnmount: function() {},
+  components: {},
+};
+</script>
+
+<style>
+.huashanyunhai {
+  min-width: 1200px;
+}
+</style>

+ 403 - 0
src/views/Activity/views/mianmianjiedao.vue

@@ -0,0 +1,403 @@
+<template>
+  <div class="mianmianjiedao">
+    <el-row v-if="allPlatform" class="titleNum">
+      <el-col :span="5">
+        <div class="num">{{ formateNum(allPlatform.read) }}</div>
+        阅读量
+      </el-col>
+      <el-col :span="5">
+        <div class="num" style="color: #11a0f8;">
+          {{ formateNum(allPlatform.digg) }}
+        </div>
+        点赞量
+      </el-col>
+      <el-col :span="5">
+        <div class="num" style="color: #ffbb44;">
+          {{ formateNum(allPlatform.comment) }}
+        </div>
+        评论量
+      </el-col>
+      <el-col :span="5">
+        <div class="num" style="color: #f47f92;">
+          {{ formateNum(allPlatform.share) }}
+        </div>
+        分享量
+      </el-col>
+      <el-col :span="4">
+        <div class="num" style="color: #42b983;">
+          {{ formateNum(allPlatform.publish) }}
+        </div>
+        发稿量
+      </el-col>
+    </el-row>
+    <br />
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">平台传播量</div>
+          <el-divider></el-divider>
+          <div class="pieChart" ref="pieChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">词云</div>
+          <el-divider></el-divider>
+          <div class="cloudChart" ref="cloudChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">地域分布</div>
+          <el-divider></el-divider>
+          <div class="mapChart" ref="mapChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">平台发稿量</div>
+          <el-divider></el-divider>
+          <div class="platformChart" ref="platformChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+// @ is an alias to /src
+import { defaultAjax } from "@/api/index";
+
+import * as echarts from "echarts/core";
+import { PieChart, MapChart } from "echarts/charts";
+import {
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  ToolboxComponent,
+  VisualMapComponent,
+  LegendComponent,
+} from "echarts/components";
+import { LabelLayout, UniversalTransition } from "echarts/features";
+import { CanvasRenderer } from "echarts/renderers";
+echarts.use([
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  PieChart,
+  MapChart,
+  CanvasRenderer,
+  ToolboxComponent,
+  VisualMapComponent,
+  LabelLayout,
+  UniversalTransition,
+  LegendComponent,
+]);
+import "echarts-wordcloud";
+export default {
+  name: "mianmianjiedao",
+  props: ["item"],
+  data() {
+    return {
+      platform: [],
+      allPlatform: {
+        digg: 0,
+        comment: 0,
+        publish: 0,
+        read: 0,
+        share: 0,
+      },
+      oriData: {},
+    };
+  },
+  mounted() {
+    defaultAjax({
+      url:
+        "https://dangjian-web.oss-cn-chengdu.aliyuncs.com/data/mmjd/all.json?v=" +
+        Date.now(),
+    }).then(res => {
+      console.log(res);
+      this.platform = res.platform || [];
+      let allPlatform = {
+        digg: 0,
+        comment: 0,
+        publish: 0,
+        read: 0,
+        share: 0,
+      };
+      for (let i = 0; i < (res.total || []).length; i++) {
+        const v = res.total[i];
+        allPlatform.digg += v.digg || 0;
+        allPlatform.comment += v.comment || 0;
+        allPlatform.publish += v.publish || 0;
+        allPlatform.read += v.read || 0;
+        allPlatform.share += v.share || 0;
+      }
+      this.allPlatform = allPlatform;
+      this.oriData = res || {};
+      this.pieChartFun();
+      this.platformChartFun();
+      this.cloudChart();
+      this.mapChartFun(JSON.parse(localStorage.getItem("chinaMap") || "{}"));
+    });
+  },
+  computed: {},
+  methods: {
+    formateNum(n) {
+      return (n + "").replace(/\B(?=(?:\d{3})+\b)/g, ",");
+    },
+    pieChartFun() {
+      this.chart0 = echarts.init(this.$refs.pieChart);
+      this.chart0.resize({
+        height: (this.$refs.pieChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{a} <br/>{b}: {c} ({d}%)",
+        },
+        series: [
+          {
+            name: "发稿量",
+            type: "pie",
+            radius: ["30%", "50%"],
+            labelLine: {
+              length: 30,
+            },
+            label: {
+              formatter: " {b|{b}:} {per|{d}%}  ",
+              borderColor: "#8C8D8E",
+              borderWidth: 1,
+              borderRadius: 4,
+              rich: {
+                a: {
+                  color: "#6E7079",
+                  lineHeight: 22,
+                  align: "center",
+                },
+                hr: {
+                  borderColor: "#8C8D8E",
+                  width: "100%",
+                  borderWidth: 1,
+                  height: 0,
+                },
+                b: {
+                  color: "#4C5058",
+                  fontSize: 14,
+                  fontWeight: "bold",
+                  lineHeight: 33,
+                },
+                per: {
+                  color: "#fff",
+                  backgroundColor: "#4C5058",
+                  padding: [3, 4],
+                  borderRadius: 4,
+                },
+              },
+            },
+            data: this.platform,
+          },
+        ],
+      };
+
+      option && this.chart0.setOption(option);
+    },
+    platformChartFun() {
+      const li = [],
+        liKey = [];
+      this.oriData.platform
+        .sort((a, b) => a.value - b.value)
+        .map(v => {
+          li.push(v.value);
+          liKey.push(v.name);
+        });
+      this.chart1 = echarts.init(this.$refs.platformChart);
+      this.chart1.resize({
+        height: this.$refs.platformChart.offsetWidth,
+      });
+      var option = {
+        tooltip: {
+          trigger: "axis",
+          axisPointer: {
+            type: "shadow",
+          },
+        },
+        legend: {},
+        grid: {
+          left: "3%",
+          right: "4%",
+          bottom: "3%",
+          containLabel: true,
+        },
+        xAxis: {
+          type: "value",
+          boundaryGap: [0, 0.01],
+        },
+        yAxis: {
+          type: "category",
+          data: liKey,
+        },
+        series: [
+          {
+            name: "2011",
+            type: "bar",
+            data: li,
+          },
+        ],
+      };
+
+      option && this.chart1.setOption(option);
+    },
+    mapChartFun(map) {
+      this.chart2 = echarts.init(this.$refs.mapChart);
+      this.chart2.resize({
+        height: this.$refs.mapChart.offsetWidth,
+      });
+      echarts.registerMap("china", map);
+      var option = {
+        tooltip: {
+          show: true,
+          formatter: function(res) {
+            if (!res.data) return "";
+            return res.data.name + ":" + (res.data.value || 0);
+          },
+        },
+        visualMap: {
+          show: false,
+          min: 0,
+          max: 1000,
+          inRange: {
+            color: ["rgba(118,172,255, .2)", "orangered"],
+          },
+        },
+        series: [
+          {
+            type: "map",
+            mapType: "china",
+            geoIndex: 0,
+            zppm: 1.25,
+            label: {
+              normal: {
+                show: true,
+                formatter: function(r) {
+                  let d = r.data || {};
+                  if (!d.name) return "";
+                  var out = d.value;
+                  if (out >= 100000000) {
+                    out = (out / 100000000).toFixed(2) + "亿";
+                  } else if (out >= 10000) {
+                    out = (out / 10000).toFixed(2) + "万";
+                  }
+                  return d.name + ":" + out;
+                },
+              },
+              emphasis: {
+                show: false,
+              },
+            },
+            scaleLimit: {
+              //滚轮缩放的极限控制
+              min: 1.25,
+              max: 2,
+            },
+            itemStyle: {
+              normal: {
+                borderColor: "#76acff", //每个区域的边框色
+                areaColor: "rgba(118,172,255, 0)", //区域背景色
+              },
+            },
+            data: this.oriData.map || [],
+          },
+        ],
+      };
+
+      option && this.chart2.setOption(option);
+    },
+    cloudChart() {
+      this.chart3 = echarts.init(this.$refs.cloudChart);
+      this.chart3.resize({
+        height: (this.$refs.cloudChart.offsetWidth * 9) / 16,
+      });
+      this.chart3.setOption({
+        series: [
+          {
+            type: "wordCloud",
+
+            // The shape of the "cloud" to draw. Can be any polar equation represented as a
+            // callback function, or a keyword present. Available presents are circle (default),
+            // cardioid (apple or heart shape curve, the most known polar equation), diamond (
+            // alias of square), triangle-forward, triangle, (alias of triangle-upright, pentagon, and star.
+
+            shape: "alias of square",
+            // Folllowing left/top/width/height/right/bottom are used for positioning the word cloud
+            // Default to be put in the center and has 75% x 80% size.
+            width: "100%",
+            height: "100%",
+
+            // Text size range which the value in data will be mapped to.
+            // Default to have minimum 12px and maximum 60px size.
+
+            sizeRange: [12, 60],
+
+            // Text rotation range and step in degree. Text will be rotated randomly in range [-90, 90] by rotationStep 45
+
+            rotationRange: [-90, 90],
+            rotationStep: 45,
+
+            // size of the grid in pixels for marking the availability of the canvas
+            // the larger the grid size, the bigger the gap between words.
+
+            gridSize: 8,
+
+            // set to true to allow word being draw partly outside of the canvas.
+            // Allow word bigger than the size of the canvas to be drawn
+            drawOutOfBound: false,
+
+            // If perform layout animation.
+            // NOTE disable it will lead to UI blocking when there is lots of words.
+            layoutAnimation: true,
+
+            // Global text style
+            textStyle: {
+              fontFamily: "sans-serif",
+              fontWeight: "bold",
+              // Color can be a callback function or a color string
+              color: function() {
+                // Random color
+                return (
+                  "rgb(" +
+                  [
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                  ].join(",") +
+                  ")"
+                );
+              },
+            },
+            emphasis: {
+              focus: "self",
+
+              textStyle: {
+                shadowBlur: 10,
+                shadowColor: "#333",
+              },
+            },
+            data: this.oriData.words,
+          },
+        ],
+      });
+    },
+  },
+  beforeUnmount: function() {},
+  components: {},
+};
+</script>
+
+<style>
+.huashanyunhai {
+  min-width: 1200px;
+}
+</style>

+ 460 - 0
src/views/Activity/views/shanxijiaoao1.vue

@@ -0,0 +1,460 @@
+<template>
+  <div class="shanxijiaoao">
+    <el-row v-if="allPlatform" class="titleNum">
+      <el-col :span="5">
+        <div class="num" style="color: #ffbb44;">
+          {{ formateNum(allPlatform.total_pv || 0) }}
+        </div>
+        浏览量
+      </el-col>
+      <el-col :span="5">
+        <div class="num" style="color: #f47f92;">
+          {{ formateNum(allPlatform.total_ori || 0) }}
+        </div>
+        原创量
+      </el-col>
+      <el-col :span="5">
+        <div class="num" style="color: #11a0f8;">
+          {{ formateNum(allPlatform.total_digg || 0) }}
+        </div>
+        点赞量
+      </el-col>
+      <el-col :span="5">
+        <div class="num" style="color: #f47f92;">
+          {{ formateNum(allPlatform.total_comment || 0) }}
+        </div>
+        评论量
+      </el-col>
+      <el-col :span="4">
+        <div class="num">{{ formateNum(allPlatform.total_forward || 0) }}</div>
+        转发量
+      </el-col>
+    </el-row>
+    <br />
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">平台传播量</div>
+          <el-divider></el-divider>
+          <div class="pieChart" ref="pieChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">词云</div>
+          <el-divider></el-divider>
+          <div class="cloudChart" ref="cloudChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">直播观众性别比例</div>
+          <el-divider></el-divider>
+          <div class="sexChart" ref="sexChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">排行top10</div>
+          <el-divider></el-divider>
+
+          <el-carousel :height="h + 'px'">
+            <el-carousel-item v-for="item in 3" :key="item">
+              <div
+                :class="'platformChart' + item"
+                :ref="'platformChart' + item"
+              ></div>
+            </el-carousel-item>
+          </el-carousel>
+        </div>
+      </el-col>
+    </el-row>
+    <br />
+    <br />
+    <br />
+    <el-table
+      :header-cell-style="{ backgroundColor: '#f4f5f7', color: '#606266' }"
+      :data="platformLi"
+      style="width: 100%"
+      default-expand-all
+    >
+      <el-table-column align="center" label="子活动名称" prop="alias_name">
+      </el-table-column>
+      <el-table-column align="center" label="浏览量" prop="total_pv">
+        <template #default="scope">
+          {{ formateNum(scope.row.total_pv || 0) }}
+        </template>
+      </el-table-column>
+      <el-table-column align="center" label="原创量" prop="total_ori">
+        <template #default="scope">
+          {{ formateNum(scope.row.total_ori || 0) }}
+        </template>
+      </el-table-column>
+      <el-table-column align="center" label="点赞数" prop="total_digg">
+        <template #default="scope">
+          {{ formateNum(scope.row.total_digg || 0) }}
+        </template>
+      </el-table-column>
+      <el-table-column align="center" label="评论数" prop="total_comment">
+        <template #default="scope">
+          {{ formateNum(scope.row.total_comment || 0) }}
+        </template>
+      </el-table-column>
+      <el-table-column align="center" label="转发量" prop="total_forward">
+        <template #default="scope">
+          {{ formateNum(scope.row.total_forward || 0) }}
+        </template>
+      </el-table-column>
+    </el-table>
+    <br />
+  </div>
+</template>
+
+<script>
+// @ is an alias to /src
+import { defaultAjax } from "@/api/index";
+
+import * as echarts from "echarts/core";
+import { PieChart, BarChart } from "echarts/charts";
+import {
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  ToolboxComponent,
+  VisualMapComponent,
+  LegendComponent,
+} from "echarts/components";
+import { LabelLayout, UniversalTransition } from "echarts/features";
+import { CanvasRenderer } from "echarts/renderers";
+echarts.use([
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  PieChart,
+  BarChart,
+  CanvasRenderer,
+  ToolboxComponent,
+  VisualMapComponent,
+  LabelLayout,
+  UniversalTransition,
+  LegendComponent,
+]);
+import "echarts-wordcloud";
+export default {
+  name: "shanxijiaoao",
+  props: ["item"],
+  data() {
+    return {
+      platform: [],
+      channelList: [],
+      platformLi: [],
+      words: [],
+      sex: [],
+      h: 0,
+      allPlatform: { digg: 0, comment: 0, publish: 0, read: 0, share: 0 },
+      oriData: {},
+    };
+  },
+  mounted() {
+    defaultAjax({
+      url: "https://bigdata.smcic.net/overview?season=1",
+    }).then(res => {
+      // 总概览数
+      let allPlatform = {
+        total_pv: 0,
+        total_ori: 0,
+        total_digg: 0,
+        total_comment: 0,
+        total_forward: 0,
+        topic_name: "陕西骄傲",
+      };
+      this.platformLi = res || [];
+      this.platformLi.map(v => {
+        allPlatform.total_pv += v.total_pv;
+        allPlatform.total_ori += v.total_ori;
+        allPlatform.total_digg += v.total_digg;
+        allPlatform.total_comment += v.total_comment;
+        allPlatform.total_forward += v.total_forward;
+      });
+      this.allPlatform = allPlatform;
+      defaultAjax({
+        url:
+          "https://djweb.smcic.net/dj/static/shaanxijiaoao1.json?t=" +
+          Date.now(),
+      }).then(platform => {
+        this.platform = platform || [];
+        this.pieChartFun();
+      });
+
+      defaultAjax({
+        url:
+          "https://djweb.smcic.net/dj/static/list.json?t=" +
+          Date.now(),
+      }).then(res => {
+        this.channelList = res || [];
+        this.platformChartFun(1);
+        this.platformChartFun(2);
+        this.platformChartFun(3);
+      });
+
+      defaultAjax({
+        url:
+          "https://bigdata.smcic.net/live-result?topic=陕西骄傲第一季&platform=douyin&type=all&season=1",
+      }).then(res => {
+        let l = res ? res.gender || [] : [];
+        console.log(res);
+        this.sex = l.map(v => {
+          return {
+            name: v.key === "1" ? "男" : "女",
+            ...v,
+          };
+        });
+        this.smailChart();
+      });
+    });
+    defaultAjax({
+      url: "https://bigdata.smcic.net/data/diyiji.json?t=" + Date.now(),
+    }).then(res => {
+      this.cloudChart(res || []);
+    });
+  },
+  computed: {},
+  methods: {
+    formateNum(n) {
+      if (n === -1) return 0;
+      return (n + "").replace(/\B(?=(?:\d{3})+\b)/g, ",");
+    },
+    pieChartFun() {
+      this.chart0 = echarts.init(this.$refs.pieChart);
+      this.chart0.resize({
+        height: (this.$refs.pieChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{a} <br/>{b}: {c} ({d}%)",
+        },
+        series: [
+          {
+            name: "发稿量",
+            type: "pie",
+            radius: ["30%", "50%"],
+            labelLine: {
+              length: 30,
+            },
+            label: {
+              formatter: " {b|{b}:} {per|{d}%}  ",
+              borderColor: "#8C8D8E",
+              borderWidth: 1,
+              borderRadius: 4,
+              rich: {
+                b: {
+                  color: "#4C5058",
+                  fontSize: 14,
+                  fontWeight: "bold",
+                  lineHeight: 33,
+                },
+                per: {
+                  color: "#fff",
+                  backgroundColor: "#4C5058",
+                  padding: [3, 4],
+                  borderRadius: 4,
+                },
+              },
+            },
+            data: this.platform.map(v => {
+              return {
+                name: v.platform,
+                value: v.total_pv,
+              };
+            }),
+          },
+        ],
+      };
+
+      option && this.chart0.setOption(option);
+    },
+    platformChartFun(num) {
+      const li = [],
+        liKey = [];
+      let title = ["点赞排行", "评论排行", "转发排行"];
+      let titlekdy = ["digg_count", "comment_count", "forward_count"];
+
+      let l = JSON.parse(JSON.stringify(this.channelList)).sort(
+        (b, a) => a[titlekdy[num - 1]] - b[titlekdy[num - 1]]
+      );
+      for (let i = 0; i < 10; i++) {
+        const v = l[i];
+        li.push(v[titlekdy[num - 1]]);
+        liKey.push(v.nickname);
+      }
+      li.reverse();
+      liKey.reverse();
+
+      this.chart1 = echarts.init(this.$refs["platformChart" + num]);
+      this.h = (this.$refs["platformChart" + num].offsetWidth * 9) / 16;
+      this.chart1.resize({
+        height: this.h,
+      });
+      var option = {
+        title: {
+          text: title[num - 1],
+        },
+        tooltip: {
+          formatter: "{b} : {c}",
+          trigger: "axis",
+          axisPointer: {
+            type: "shadow",
+          },
+        },
+        legend: {},
+        grid: {
+          left: "3%",
+          right: "10%",
+          bottom: "3%",
+          containLabel: true,
+        },
+        xAxis: {
+          type: "value",
+          boundaryGap: [0, 0.01],
+        },
+        yAxis: {
+          type: "category",
+          data: liKey,
+        },
+        series: [
+          {
+            type: "bar",
+            label: {
+              show: true,
+              position: "right",
+              formatter: "{c}",
+            },
+            data: li,
+          },
+        ],
+      };
+
+      option && this.chart1.setOption(option);
+    },
+    cloudChart(li) {
+      this.chart3 = echarts.init(this.$refs.cloudChart);
+      this.chart3.resize({
+        height: (this.$refs.cloudChart.offsetWidth * 9) / 16,
+      });
+      this.chart3.setOption({
+        series: [
+          {
+            type: "wordCloud",
+
+            // The shape of the "cloud" to draw. Can be any polar equation represented as a
+            // callback function, or a keyword present. Available presents are circle (default),
+            // cardioid (apple or heart shape curve, the most known polar equation), diamond (
+            // alias of square), triangle-forward, triangle, (alias of triangle-upright, pentagon, and star.
+
+            shape: "alias of square",
+            // Folllowing left/top/width/height/right/bottom are used for positioning the word cloud
+            // Default to be put in the center and has 75% x 80% size.
+            width: "100%",
+            height: "100%",
+
+            // Text size range which the value in data will be mapped to.
+            // Default to have minimum 12px and maximum 60px size.
+
+            sizeRange: [12, 60],
+
+            // Text rotation range and step in degree. Text will be rotated randomly in range [-90, 90] by rotationStep 45
+
+            rotationRange: [-90, 90],
+            rotationStep: 45,
+
+            // size of the grid in pixels for marking the availability of the canvas
+            // the larger the grid size, the bigger the gap between words.
+
+            gridSize: 8,
+
+            // set to true to allow word being draw partly outside of the canvas.
+            // Allow word bigger than the size of the canvas to be drawn
+            drawOutOfBound: false,
+
+            // If perform layout animation.
+            // NOTE disable it will lead to UI blocking when there is lots of words.
+            layoutAnimation: true,
+
+            // Global text style
+            textStyle: {
+              fontFamily: "sans-serif",
+              fontWeight: "bold",
+              // Color can be a callback function or a color string
+              color: function() {
+                // Random color
+                return (
+                  "rgb(" +
+                  [
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                  ].join(",") +
+                  ")"
+                );
+              },
+            },
+            emphasis: {
+              focus: "self",
+
+              textStyle: {
+                shadowBlur: 10,
+                shadowColor: "#333",
+              },
+            },
+            data: li,
+          },
+        ],
+      });
+    },
+    smailChart() {
+      this.chart3 = echarts.init(this.$refs.sexChart);
+      this.chart3.resize({
+        height: (this.$refs.sexChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{b} : {d}%",
+        },
+        series: [
+          {
+            type: "pie",
+            center: ["50%", "50%"],
+            roseType: "area",
+            itemStyle: {
+              borderRadius: 5,
+            },
+            label: {
+              formatter: "{b}:{d}%",
+            },
+            data: this.sex.map(v => {
+              return {
+                name: v.name,
+                value: v.count,
+              };
+            }),
+          },
+        ],
+      };
+
+      option && this.chart3.setOption(option);
+    },
+  },
+  beforeUnmount: function() {},
+  components: {},
+};
+</script>
+
+<style>
+.shanxijiaoao {
+  min-width: 1200px;
+}
+</style>

+ 472 - 0
src/views/Activity/views/shanxijiaoao2.vue

@@ -0,0 +1,472 @@
+<template>
+  <div class="shanxijiaoao">
+    <el-row v-if="allPlatform" class="titleNum">
+      <el-col :span="6">
+        <div class="num" style="color: #ffbb44;">
+          {{ formateNum(allPlatform.total_pv || 0) }}
+        </div>
+        浏览量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #f47f92;">
+          {{ formateNum(allPlatform.total_ori || 0) }}
+        </div>
+        原创量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #11a0f8;">
+          {{ formateNum(allPlatform.total_digg || 0) }}
+        </div>
+        点赞量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #f47f92;">
+          {{ formateNum(allPlatform.total_comment || 0) }}
+        </div>
+        评论量
+      </el-col>
+      <el-col :span="6">
+        <div class="num">{{ formateNum(allPlatform.total_forward || 0) }}</div>
+        转发量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #11a0f8;">
+          {{ formateNum(allPlatform.live_uv || 0) }}
+        </div>
+        直播观看人数
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #ffbb44;">
+          {{ formateNum(allPlatform.live_add_fans || 0) }}
+        </div>
+        新增粉丝量
+      </el-col>
+      <el-col :span="6">
+        <div class="num">
+          {{ formateNum(allPlatform.live_comment || 0) }}
+        </div>
+        直播评论量
+      </el-col>
+    </el-row>
+    <br />
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">平台传播量</div>
+          <el-divider></el-divider>
+          <div class="pieChart" ref="pieChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">词云</div>
+          <el-divider></el-divider>
+          <div class="cloudChart" ref="cloudChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">直播观众性别比例</div>
+          <el-divider></el-divider>
+          <div class="sexChart" ref="sexChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">排行top10</div>
+          <el-divider></el-divider>
+
+          <el-carousel :height="h + 'px'">
+            <el-carousel-item v-for="item in 3" :key="item">
+              <div
+                :class="'platformChart' + item"
+                :ref="'platformChart' + item"
+              ></div>
+            </el-carousel-item>
+          </el-carousel>
+        </div>
+      </el-col>
+    </el-row>
+    <br />
+    <br />
+    <br />
+    <el-table
+      :header-cell-style="{ backgroundColor: '#f4f5f7', color: '#606266' }"
+      :data="platformLi"
+      style="width: 100%"
+    >
+      <el-table-column align="center" label="子活动名称" prop="alias_name" >
+      </el-table-column>
+      <el-table-column align="center" label="浏览量" prop="total_pv"  >
+        <template #default="scope">
+          {{ formateNum(scope.row.total_pv || 0) }}
+        </template>
+      </el-table-column>
+      <el-table-column align="center" label="原创量" prop="total_ori" >
+        <template #default="scope">
+          {{ formateNum(scope.row.total_ori || 0) }}
+        </template>
+      </el-table-column>
+      <el-table-column align="center" label="点赞数" prop="total_digg"  >
+        <template #default="scope">
+          {{ formateNum(scope.row.total_digg || 0) }}
+        </template>
+      </el-table-column>
+      <el-table-column align="center" label="评论数" prop="total_comment"  >
+        <template #default="scope">
+          {{ formateNum(scope.row.total_comment || 0) }}
+        </template>
+      </el-table-column>
+      <el-table-column align="center" label="转发量" prop="total_forward"  >
+        <template #default="scope">
+          {{ formateNum(scope.row.total_forward || 0) }}
+        </template>
+      </el-table-column>
+    </el-table>
+    <br />
+  </div>
+</template>
+
+<script>
+// @ is an alias to /src
+import { defaultAjax } from "@/api/index";
+
+import * as echarts from "echarts/core";
+import { PieChart, BarChart } from "echarts/charts";
+import {
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  ToolboxComponent,
+  VisualMapComponent,
+  LegendComponent,
+} from "echarts/components";
+import { LabelLayout, UniversalTransition } from "echarts/features";
+import { CanvasRenderer } from "echarts/renderers";
+echarts.use([
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  PieChart,
+  BarChart,
+  CanvasRenderer,
+  ToolboxComponent,
+  VisualMapComponent,
+  LabelLayout,
+  UniversalTransition,
+  LegendComponent,
+]);
+import "echarts-wordcloud";
+export default {
+  name: "shanxijiaoao",
+  props: ["item"],
+  data() {
+    return {
+      platform: [],
+      channelList: [],
+      platformLi:[],
+      words: [],
+      sex: [],
+      h: 0,
+      allPlatform: { digg: 0, comment: 0, publish: 0, read: 0, share: 0 },
+      oriData: {},
+    };
+  },
+  mounted() {
+    defaultAjax({
+      url: "https://bigdata.smcic.net/overview?season=2",
+    }).then(res => {
+      // 总概览数
+      this.allPlatform = (res || [])[0] || {};
+      this.platformLi = res || [];
+      console.log(this.platformLi)
+      defaultAjax({
+        url:
+          "https://bigdata.smcic.net/platform?topic_name=" +
+          this.allPlatform.topic_name +
+          "&season=2",
+      }).then(platform => {
+        this.platform = platform || [];
+        this.pieChartFun();
+      });
+
+      defaultAjax({
+        url:
+          "https://bigdata.smcic.net/name?topic_name=" +
+          this.allPlatform.topic_name +
+          "&platform=ALL&type=all&season=2",
+      }).then(res => {
+        this.channelList = res || [];
+        this.platformChartFun(1);
+        this.platformChartFun(2);
+        this.platformChartFun(3);
+      });
+
+      defaultAjax({
+        url:
+          "https://bigdata.smcic.net/live-result?topic=" +
+          this.allPlatform.topic_name +
+          "&platform=douyin&type=all&season=2",
+      }).then(res => {
+        let l = res ? res.gender || [] : [];
+        this.sex = l.map(v => {
+          return {
+            name: v.key === "1" ? "男" : "女",
+            ...v,
+          };
+        });
+        this.smailChart();
+      });
+    });
+    defaultAjax({
+      url: "https://djweb.smcic.net/dj/static/sxja.json?t=" + Date.now(),
+    }).then(res => {
+      this.cloudChart(res || []);
+    });
+
+  },
+  computed: {},
+  methods: {
+    formateNum(n) {
+      if (n === -1) return 0;
+      return (n + "").replace(/\B(?=(?:\d{3})+\b)/g, ",");
+    },
+    pieChartFun() {
+      this.chart0 = echarts.init(this.$refs.pieChart);
+      this.chart0.resize({
+        height: (this.$refs.pieChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{a} <br/>{b}: {c} ({d}%)",
+        },
+        series: [
+          {
+            name: "发稿量",
+            type: "pie",
+            radius: ["30%", "50%"],
+            labelLine: {
+              length: 30,
+            },
+            label: {
+              formatter: " {b|{b}:} {per|{d}%}  ",
+              borderColor: "#8C8D8E",
+              borderWidth: 1,
+              borderRadius: 4,
+              rich: {
+                a: {
+                  color: "#6E7079",
+                  lineHeight: 22,
+                  align: "center",
+                },
+                b: {
+                  color: "#4C5058",
+                  fontSize: 14,
+                  fontWeight: "bold",
+                  lineHeight: 33,
+                },
+                per: {
+                  color: "#fff",
+                  backgroundColor: "#4C5058",
+                  padding: [3, 4],
+                  borderRadius: 4,
+                },
+              },
+            },
+            data: this.platform.map(v => {
+              return {
+                name: v.platform,
+                value: v.total_pv,
+              };
+            }),
+          },
+        ],
+      };
+
+      option && this.chart0.setOption(option);
+    },
+    platformChartFun(num) {
+      const li = [],
+        liKey = [];
+      let title = ["点赞排行", "评论排行", "转发排行"];
+      let titlekdy = ["digg_count", "comment_count", "forward_count"];
+
+      let l = JSON.parse(JSON.stringify(this.channelList)).sort(
+        (b, a) => a[titlekdy[num - 1]] - b[titlekdy[num - 1]]
+      );
+      for (let i = 0; i < 10; i++) {
+        const v = l[i];
+        li.push(v[titlekdy[num - 1]]);
+        liKey.push(v.nickname);
+      }
+      li.reverse();
+      liKey.reverse();
+
+      this.chart1 = echarts.init(this.$refs["platformChart" + num]);
+      this.h = (this.$refs["platformChart" + num].offsetWidth * 9) / 16;
+      this.chart1.resize({
+        height: this.h,
+      });
+      var option = {
+        title: {
+          text: title[num - 1],
+        },
+        tooltip: {
+          formatter: "{b} : {c}",
+          trigger: "axis",
+          axisPointer: {
+            type: "shadow",
+          },
+        },
+        legend: {},
+        grid: {
+          left: "3%",
+          right: "10%",
+          bottom: "3%",
+          containLabel: true,
+        },
+        xAxis: {
+          type: "value",
+          boundaryGap: [0, 0.01],
+        },
+        yAxis: {
+          type: "category",
+          data: liKey,
+        },
+        series: [
+          {
+            type: "bar",
+            label: {
+              show: true,
+              position: "right",
+              formatter: "{c}",
+            },
+            data: li,
+          },
+        ],
+      };
+
+      option && this.chart1.setOption(option);
+    },
+    cloudChart(li) {
+      this.chart3 = echarts.init(this.$refs.cloudChart);
+      this.chart3.resize({
+        height: (this.$refs.cloudChart.offsetWidth * 9) / 16,
+      });
+      this.chart3.setOption({
+        series: [
+          {
+            type: "wordCloud",
+
+            // The shape of the "cloud" to draw. Can be any polar equation represented as a
+            // callback function, or a keyword present. Available presents are circle (default),
+            // cardioid (apple or heart shape curve, the most known polar equation), diamond (
+            // alias of square), triangle-forward, triangle, (alias of triangle-upright, pentagon, and star.
+
+            shape: "alias of square",
+            // Folllowing left/top/width/height/right/bottom are used for positioning the word cloud
+            // Default to be put in the center and has 75% x 80% size.
+            width: "100%",
+            height: "100%",
+
+            // Text size range which the value in data will be mapped to.
+            // Default to have minimum 12px and maximum 60px size.
+
+            sizeRange: [12, 60],
+
+            // Text rotation range and step in degree. Text will be rotated randomly in range [-90, 90] by rotationStep 45
+
+            rotationRange: [-90, 90],
+            rotationStep: 45,
+
+            // size of the grid in pixels for marking the availability of the canvas
+            // the larger the grid size, the bigger the gap between words.
+
+            gridSize: 8,
+
+            // set to true to allow word being draw partly outside of the canvas.
+            // Allow word bigger than the size of the canvas to be drawn
+            drawOutOfBound: false,
+
+            // If perform layout animation.
+            // NOTE disable it will lead to UI blocking when there is lots of words.
+            layoutAnimation: true,
+
+            // Global text style
+            textStyle: {
+              fontFamily: "sans-serif",
+              fontWeight: "bold",
+              // Color can be a callback function or a color string
+              color: function() {
+                // Random color
+                return (
+                  "rgb(" +
+                  [
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                  ].join(",") +
+                  ")"
+                );
+              },
+            },
+            emphasis: {
+              focus: "self",
+
+              textStyle: {
+                shadowBlur: 10,
+                shadowColor: "#333",
+              },
+            },
+            data: li,
+          },
+        ],
+      });
+    },
+    smailChart() {
+      this.chart3 = echarts.init(this.$refs.sexChart);
+      this.chart3.resize({
+        height: (this.$refs.sexChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{b} : {d}%",
+        },
+        series: [
+          {
+            type: "pie",
+            center: ["50%", "50%"],
+            roseType: "area",
+            itemStyle: {
+              borderRadius: 5,
+            },
+            label: {
+              formatter: "{b}:{d}%",
+            },
+            data: this.sex.map(v => {
+              return {
+                name: v.name,
+                value: v.count,
+              };
+            }),
+          },
+        ],
+      };
+
+      option && this.chart3.setOption(option);
+    },
+  },
+  beforeUnmount: function() {},
+  components: {},
+};
+</script>
+
+<style>
+.shanxijiaoao {
+  min-width: 1200px;
+}
+</style>

+ 381 - 0
src/views/Activity/views/zhongqiuzhiye.vue

@@ -0,0 +1,381 @@
+<template>
+  <div class="zhongqiuzhiye">
+    <el-row v-if="allPlatform" class="titleNum">
+      <el-col :span="6">
+        <div class="num" style="color: #ffbb44;">
+          {{ formateNum(allPlatform.total_pv || 0) }}
+        </div>
+        浏览量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #f47f92;">
+          {{ formateNum(allPlatform.total_ori || 0) }}
+        </div>
+        原创量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #11a0f8;">
+          {{ formateNum(allPlatform.total_digg || 0) }}
+        </div>
+        点赞量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #f47f92;">
+          {{ formateNum(allPlatform.total_comment || 0) }}
+        </div>
+        评论量
+      </el-col>
+      <el-col :span="6">
+        <div class="num">{{ formateNum(allPlatform.total_forward || 0) }}</div>
+        转发量
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #11a0f8;">
+          {{ formateNum(allPlatform.live_uv || 0) }}
+        </div>
+        直播观看人数
+      </el-col>
+      <el-col :span="6">
+        <div class="num" style="color: #ffbb44;">
+          {{ formateNum(allPlatform.live_add_fans || 0) }}
+        </div>
+        新增粉丝量
+      </el-col>
+      <el-col :span="6">
+        <div class="num">
+          {{ formateNum(allPlatform.live_comment || 0) }}
+        </div>
+        直播评论量
+      </el-col>
+    </el-row>
+    <br />
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">平台传播量</div>
+          <el-divider></el-divider>
+          <div class="pieChart" ref="pieChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">词云</div>
+          <el-divider></el-divider>
+          <div class="cloudChart" ref="cloudChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+    <el-row>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">中秋晚会小屏传播量对比</div>
+          <el-divider></el-divider>
+          <div class="smalChart" ref="smalChart"></div>
+        </div>
+      </el-col>
+      <el-col :span="12">
+        <div class="chart">
+          <div class="subtitle">中秋晚会大屏收视对比</div>
+          <el-divider></el-divider>
+          <div class="platformChart" ref="platformChart"></div>
+        </div>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+// @ is an alias to /src
+import { defaultAjax } from "@/api/index";
+
+import * as echarts from "echarts/core";
+import { PieChart,BarChart } from "echarts/charts";
+import {
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  ToolboxComponent,
+  VisualMapComponent,
+  LegendComponent,
+} from "echarts/components";
+import { LabelLayout, UniversalTransition } from "echarts/features";
+import { CanvasRenderer } from "echarts/renderers";
+echarts.use([
+  TitleComponent,
+  TooltipComponent,
+  GridComponent,
+  PieChart,
+  BarChart,
+  CanvasRenderer,
+  ToolboxComponent,
+  VisualMapComponent,
+  LabelLayout,
+  UniversalTransition,
+  LegendComponent,
+]);
+import "echarts-wordcloud";
+export default {
+  name: "zhongqiuzhiye",
+  props: ["item"],
+  data() {
+    return {
+      platform: [],
+      channelList:[],
+      words:[],
+      allPlatform: { digg: 0, comment: 0, publish: 0, read: 0, share: 0 },
+      oriData: {},
+    };
+  },
+  mounted() {
+    defaultAjax({
+      url:
+        "https://bigdata.smcic.net/overview?topic_name=%E9%99%95%E8%A5%BF%E5%8D%AB%E8%A7%86%E4%B8%AD%E7%A7%8B%E4%B9%8B%E5%A4%9C&season=2",
+    }).then(res => {
+      // 总概览数
+      this.allPlatform = res || {};
+    });
+
+    defaultAjax({
+      url:
+        "https://bigdata.smcic.net/platform?topic_name=%E9%99%95%E8%A5%BF%E5%8D%AB%E8%A7%86%E4%B8%AD%E7%A7%8B%E4%B9%8B%E5%A4%9C&season=2",
+    }).then(res => {
+      this.platform = res || [];
+      this.pieChartFun();
+    });
+
+    defaultAjax({
+      url: "https://bigdata.smcic.net/static/json/zq.json?t=" + Date.now(),
+    }).then(res => {
+      this.channelList = res || []
+      this.platformChartFun();
+      this.smailChart();
+    });
+     defaultAjax({
+      url: "https://djweb.smcic.net/dj/static/sxwszqzy.json?t=" + Date.now(),
+    }).then(res => {
+      this.cloudChart(res || []);
+    });
+  },
+  computed: {},
+  methods: {
+    formateNum(n) {
+      return (n + "").replace(/\B(?=(?:\d{3})+\b)/g, ",");
+    },
+    pieChartFun() {
+      this.chart0 = echarts.init(this.$refs.pieChart);
+      this.chart0.resize({
+        height: (this.$refs.pieChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{a} <br/>{b}: {c} ({d}%)",
+        },
+        series: [
+          {
+            name: "发稿量",
+            type: "pie",
+            radius: ["30%", "50%"],
+            labelLine: {
+              length: 30,
+            },
+            label: {
+              formatter: " {b|{b}:} {per|{d}%}  ",
+              borderColor: "#8C8D8E",
+              borderWidth: 1,
+              borderRadius: 4,
+              rich: {
+                a: {
+                  color: "#6E7079",
+                  lineHeight: 22,
+                  align: "center",
+                },
+                b: {
+                  color: "#4C5058",
+                  fontSize: 14,
+                  fontWeight: "bold",
+                  lineHeight: 33,
+                },
+                per: {
+                  color: "#fff",
+                  backgroundColor: "#4C5058",
+                  padding: [3, 4],
+                  borderRadius: 4,
+                },
+              },
+            },
+            data: this.platform.map(v => {
+              return {
+                name: v.platform,
+                value: v.total_pv,
+              };
+            }),
+          },
+        ],
+      };
+
+      option && this.chart0.setOption(option);
+    },
+    platformChartFun() {
+      const li = [],
+        liKey = [];
+      this.channelList
+        .sort((a, b) => a.tv_rate - b.tv_rate)
+        .map(v => {
+          li.push(v.tv_rate);
+          liKey.push(v.channel);
+        });
+      this.chart1 = echarts.init(this.$refs.platformChart);
+      this.chart1.resize({
+        height: (this.$refs.cloudChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "axis",
+          axisPointer: {
+            type: "shadow",
+          },
+        },
+        legend: {},
+        grid: {
+          left: "3%",
+          right: "4%",
+          bottom: "3%",
+          containLabel: true,
+        },
+        xAxis: {
+          type: "value",
+          boundaryGap: [0, 0.01],
+        },
+        yAxis: {
+          type: "category",
+          data: liKey,
+        },
+        series: [
+          {
+            name: "2011",
+            type: "bar",
+            data: li,
+          },
+        ],
+      };
+
+      option && this.chart1.setOption(option);
+    },
+    cloudChart(li) {
+      this.chart3 = echarts.init(this.$refs.cloudChart);
+      this.chart3.resize({
+        height: (this.$refs.cloudChart.offsetWidth * 9) / 16,
+      });
+      this.chart3.setOption({
+        series: [
+          {
+            type: "wordCloud",
+
+            // The shape of the "cloud" to draw. Can be any polar equation represented as a
+            // callback function, or a keyword present. Available presents are circle (default),
+            // cardioid (apple or heart shape curve, the most known polar equation), diamond (
+            // alias of square), triangle-forward, triangle, (alias of triangle-upright, pentagon, and star.
+
+            shape: "alias of square",
+            // Folllowing left/top/width/height/right/bottom are used for positioning the word cloud
+            // Default to be put in the center and has 75% x 80% size.
+            width: "100%",
+            height: "100%",
+
+            // Text size range which the value in data will be mapped to.
+            // Default to have minimum 12px and maximum 60px size.
+
+            sizeRange: [12, 60],
+
+            // Text rotation range and step in degree. Text will be rotated randomly in range [-90, 90] by rotationStep 45
+
+            rotationRange: [-90, 90],
+            rotationStep: 45,
+
+            // size of the grid in pixels for marking the availability of the canvas
+            // the larger the grid size, the bigger the gap between words.
+
+            gridSize: 8,
+
+            // set to true to allow word being draw partly outside of the canvas.
+            // Allow word bigger than the size of the canvas to be drawn
+            drawOutOfBound: false,
+
+            // If perform layout animation.
+            // NOTE disable it will lead to UI blocking when there is lots of words.
+            layoutAnimation: true,
+
+            // Global text style
+            textStyle: {
+              fontFamily: "sans-serif",
+              fontWeight: "bold",
+              // Color can be a callback function or a color string
+              color: function() {
+                // Random color
+                return (
+                  "rgb(" +
+                  [
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                    Math.round(Math.random() * 160),
+                  ].join(",") +
+                  ")"
+                );
+              },
+            },
+            emphasis: {
+              focus: "self",
+
+              textStyle: {
+                shadowBlur: 10,
+                shadowColor: "#333",
+              },
+            },
+            data: li,
+          },
+        ],
+      });
+    },
+    smailChart() {
+      this.chart3 = echarts.init(this.$refs.smalChart);
+      this.chart3.resize({
+        height: (this.$refs.smalChart.offsetWidth * 9) / 16,
+      });
+      var option = {
+        tooltip: {
+          trigger: "item",
+          formatter: "{b} : {c} ({d}%)",
+        },
+        series: [
+          {
+            type: "pie",
+            radius: [20, 140],
+            center: ["50%", "50%"],
+            roseType: "area",
+            itemStyle: {
+              borderRadius: 5,
+            },
+            data: this.channelList.map(v=>{
+              return {
+                name: v.channel,
+                value: v.total
+              }
+            }),
+          },
+        ],
+      };
+
+      option && this.chart3.setOption(option);
+    },
+  },
+  beforeUnmount: function() {},
+  components: {},
+};
+</script>
+
+<style>
+.zhongqiuzhiye {
+  min-width: 1200px;
+}
+</style>

+ 10 - 2
src/views/BoutiqueColumn/BoutiqueColumn.vue

@@ -1,5 +1,9 @@
 <template>
-  <div class="boutiqueColumn" >
+  <div class="boutiqueColumn">
+    <el-breadcrumb separator-class="el-icon-arrow-right">
+      <el-breadcrumb-item>传统媒体</el-breadcrumb-item>
+      <el-breadcrumb-item>重点栏目分析</el-breadcrumb-item>
+    </el-breadcrumb>
     <el-loading></el-loading>
     <el-tabs
       tab-position="top"
@@ -22,7 +26,7 @@
             class="tab-body"
             v-if="item.component === select || selectA[item.component]"
           >
-            <component :is="item.component" :item="item" ></component>
+            <component :is="item.component" :item="item"></component>
           </div>
         </el-scrollbar>
       </el-tab-pane>
@@ -88,4 +92,8 @@ export default {
 .tab-body {
   padding-bottom: 20px;
 }
+.el-table {
+  font-size: 12px;
+  color: rgb(33, 33, 33);
+}
 </style>

+ 12 - 3
src/views/BoutiqueColumn/components/watchrate.vue

@@ -1,9 +1,12 @@
 <template>
   <el-row>
-    <el-col :span="4">{{watchrate}}%</el-col>
+    <el-col :span="4" class="watchCss">{{ watchrate }}%</el-col>
     <el-col :span="20">
       <div class="Watchrate">
-        <div class="nei" :style="'width:' + (watchrate/(zoom || 1)*100) + '%'"></div>
+        <div
+          class="nei"
+          :style="'width:' + (watchrate / (zoom || 1)) * 100 + '%'"
+        ></div>
       </div>
     </el-col>
   </el-row>
@@ -36,7 +39,7 @@ echarts.use([
 ]);
 export default {
   name: "Watchrate",
-  props: ["watchrate",'zoom'],
+  props: ["watchrate", "zoom"],
   data() {
     return {
       tableData: [],
@@ -71,4 +74,10 @@ export default {
   display: inline-block;
   vertical-align: middle;
 }
+.watchCss {
+  /* white-space: nowrap;
+  overflow: hidden;
+  text-overflow: ellipsis; */
+  min-width: 4em;
+}
 </style>

+ 15 - 11
src/views/BoutiqueColumn/views/huashanlunjian.vue

@@ -8,7 +8,7 @@
     >
       <el-table-column type="expand">
         <template #default="props">
-          <div>
+          <div :class="'loadare' + props.row.epg_id">
             <el-row v-if="item.programType !== 'simple'">
               <el-col :span="20">
                 <div :ref="'huashanChart' + props.row.epg_id"></div>
@@ -34,7 +34,7 @@
     </el-table>
     <el-pagination
       :page-size="size"
-      v-if="total/size > 1"
+      v-if="total / size > 1"
       v-model:current-page="current"
       @current-change="changePage"
       :total="total"
@@ -123,15 +123,19 @@ export default {
         }
         return;
       }
-      epgDetail({ epgId: row.epg_id }).then(res => {
-        let more = this.createChart(
-          this.$refs["huashanChart" + row.epg_id],
-          res
-        );
-        openList[row.epg_id] = more.chart;
-        openLi[row.epg_id] = this.createBarChart(
-          this.$refs["huashanListChart" + row.epg_id],
-          more.height
+      this.$nextTick(() => {
+        epgDetail({ epgId: row.epg_id, target: ".loadare" + row.epg_id }).then(
+          res => {
+            let more = this.createChart(
+              this.$refs["huashanChart" + row.epg_id],
+              res
+            );
+            openList[row.epg_id] = more.chart;
+            openLi[row.epg_id] = this.createBarChart(
+              this.$refs["huashanListChart" + row.epg_id],
+              more.height
+            );
+          }
         );
       });
     },

+ 5 - 0
yarn.lock

@@ -3496,6 +3496,11 @@ ecc-jsbn@~0.1.1:
     jsbn "~0.1.0"
     safer-buffer "^2.1.0"
 
+echarts-wordcloud@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.nlark.com/echarts-wordcloud/download/echarts-wordcloud-2.0.0.tgz#52ef817895801ffe9e99dd1bacab7686b2dec04a"
+  integrity sha1-Uu+BeJWAH/6emd0brKt2hrLewEo=
+
 echarts@^5.2.1:
   version "5.2.1"
   resolved "https://registry.nlark.com/echarts/download/echarts-5.2.1.tgz?cache=0&sync_timestamp=1632191355993&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fecharts%2Fdownload%2Fecharts-5.2.1.tgz#bd58ec011cd82def4a714e4038ef4b73b8417bc3"