Bladeren bron

文章统计图

XMTT 7 jaren geleden
bovenliggende
commit
e275c0392d
4 gewijzigde bestanden met toevoegingen van 325 en 26 verwijderingen
  1. 4 0
      css/model/sys/article.css
  2. 7 7
      html/model/sys/article/index.html
  3. 20 15
      html/model/sys/article/viewcount.html
  4. 294 4
      js/model/sys/article/viewcount.js

+ 4 - 0
css/model/sys/article.css

@ -73,6 +73,10 @@
73 73
    table-layout: fixed;
74 74
}
75 75
76
.sys_article_viewcount #total{
77
    left:18%;
78
}
79
76 80
.sys_article_relate {
77 81
    width: 900px;
78 82
    height: 900px;

+ 7 - 7
html/model/sys/article/index.html

@ -48,20 +48,20 @@
48 48
            <div class="btn opt-view">
49 49
                查看
50 50
            </div>
51
            <div class="btn opt-sort-num">
52
                设置权重
51
            <div class="btn opt-edit">
52
                编辑文章内容
53 53
            </div>
54 54
            <div class="btn opt-subject">
55 55
                设置关键词
56 56
            </div>
57
            <div class="btn opt-relate">
58
                编辑关联信息
59
            </div>
57 60
            <div class="btn opt-col-num">
58 61
                设置栏目
59 62
            </div>
60
            <div class="btn opt-edit">
61
                编辑文章内容
62
            </div>
63
            <div class="btn opt-relate">
64
                编辑关联信息
63
            <div class="btn opt-sort-num">
64
                设置权重
65 65
            </div>
66 66
            <div class="btn opt-count">
67 67
                流量统计

+ 20 - 15
html/model/sys/article/viewcount.html

@ -2,6 +2,7 @@
2 2
    <div class="modal-ctrl">
3 3
        <i class="icon icon-times"></i>
4 4
    </div>
5
    <div id="total" style="height: 400px;width: 850px"></div>
5 6
6 7
    <div class="container queryForm">
7 8
        <div class="col-2"></div>
@ -20,14 +21,14 @@
20 21
        </div>
21 22
        <div class="col-3"></div>
22 23
    </div>
23
    <div class="row"></div>
24
    <div class="container tpl-btns">
25
        <div class="row">
26
            <div class="btn opt-total">
27
                文章总浏览量
28
            </div>
29
        </div>
30
    </div>
24
    <!--<div class="row"></div>-->
25
    <!--<div class="container tpl-btns">-->
26
        <!--<div class="row">-->
27
            <!--<div class="btn opt-total">-->
28
                <!--文章总浏览量-->
29
            <!--</div>-->
30
        <!--</div>-->
31
    <!--</div>-->
31 32
32 33
    <div class="container dt-tpl">
33 34
        <table class="table table-bordered">
@ -41,10 +42,12 @@
41 42
                <th>关键词</th>
42 43
                <th>栏目</th>
43 44
                <th>发布时间</th>
44
                <th class="number">权重</th>
45
                <th class="number">点赞量</th>
46
                <th>总浏览量</th>
47
                <th class="number">pv</th>
45
                <th class="number">当前范围阅读量</th>
46
                <th class="number">总阅读量</th>
47
                <!--<th class="number">权重</th>-->
48
                <th class="number">总点赞量</th>
49
                <th class="number">总留言量</th>
50
                <th class="number">总收藏量</th>
48 51
            </tr>
49 52
            </thead>
50 53
            <tbody>
@ -57,10 +60,12 @@
57 60
                <td class="subject">{{subject}}</td>
58 61
                <td class="colNum">{{colNum}}</td>
59 62
                <td class="publishTime">{{publishTime}}</td>
60
                <td class="sortNum">{{sortNum}}</td>
61
                <td class="articleAgree">{{articleAgree}}</td>
62
                <td class="pageViews">{{pageViews}}</td>
63 63
                <td>{{pv}}</td>
64
                <td class="pageViews">{{pageViews}}</td>
65
                <!--<td class="sortNum">{{sortNum}}</td>-->
66
                <td class="articleAgree">{{articleAgree}}</td>
67
                <td class="lw"></td>
68
                <td class="collection"></td>
64 69
            </tr>
65 70
            </tbody>
66 71
            <tbody ch-dir="array.empty">

+ 294 - 4
js/model/sys/article/viewcount.js

@ -25,10 +25,10 @@ spa_define(function () {
25 25
26 26
                var caption = function (dicts, code) {
27 27
                        var items = dict.get(dicts);
28
                        var cp =  dict.getCap(items, code.toString());
28
                        var cp = dict.getCap(items, code.toString());
29 29
                        if (cp) {
30 30
                            return cp;
31
                        }else {
31
                        } else {
32 32
                            return "不可翻译的";
33 33
                        }
34 34
                        // return dict.get(dicts)[code].caption;
@ -43,7 +43,7 @@ spa_define(function () {
43 43
                            var $e = $(this);
44 44
                            var articleId = $e.attr("articleId");
45 45
                            if (articleId) {
46
                                util.get("../ajax/article/id",{id:articleId}, function (data) {
46
                                util.get("../ajax/article/base", {id: articleId}, function (data) {
47 47
                                    if (data) {
48 48
                                        $e.parent().find(".articleTitle").text(data.articleTitle);
49 49
                                        $e.parent().find(".professorName").text(data.professorName || data.organizationName);
@ -59,6 +59,28 @@ spa_define(function () {
59 59
                            }
60 60
                        });
61 61
                    },
62
                    loadLw = function () {
63
                        root.find(".hand-id").each(function () {
64
                            var $e = $(this);
65
                            var articleId = $e.attr("articleId");
66
                            if (articleId) {
67
                                util.get("/ajax/content/lwCount", {articleId: articleId}, function (data) {
68
                                        $e.parent().find(".lw").text(data);
69
                                }, {});
70
                            }
71
                        });
72
                    },
73
                    loadCol=function () {
74
                        root.find(".hand-id").each(function () {
75
                            var $e = $(this);
76
                            var articleId = $e.attr("articleId");
77
                            if (articleId) {
78
                                util.get("/ajax/content/countProfessor", {id: articleId,type:3}, function (data) {
79
                                        $e.parent().find(".collection").text(data);
80
                                }, {});
81
                            }
82
                        });
83
                    },
62 84
                    load = function () {
63 85
                        // console.log($data);
64 86
                        $.ajax({
@ -77,6 +99,8 @@ spa_define(function () {
77 99
                                tableData.data = allData;
78 100
                                cr.val(tableData.data);
79 101
                                loadContent();
102
                                loadLw();
103
                                loadCol();
80 104
                            }
81 105
                        });
82 106
                    },
@ -119,7 +143,273 @@ spa_define(function () {
119 143
                            pdg.reload();
120 144
                        }
121 145
                    })
122
                })
146
                });
147
                var myChart = echarts.init(document.getElementById('total'));
148
                var tableData = {data: []},
149
                    allData = [];
150
                var dayList = function () {
151
                    var dayList = [];
152
                    var now = new Date();
153
                    var day1 = new Date();
154
                    day1.setMonth(now.getMonth() - 1);
155
                    day1.setDate(1);
156
                    var day2 = new Date();
157
                    day2.setDate(day2.getDate());
158
//                    var s1 = day1.format("yyyy-MM-dd");
159
//                    var s2 = day2.format("yyyy-MM-dd");
160
//                    console.log(s1, s2);
161
                    var days = (day2 - day1) / (24 * 60 * 60 * 1000);
162
                    dayList[0] = {time: day1.format("yyyy-MM-dd")};
163
                    for (var i = 1; i < days + 1; i++) {
164
                        day1.setDate(day1.getDate() + 1);
165
                        dayList[i] = {time: day1.format("yyyy-MM-dd")};
166
                    }
167
                    return dayList;
168
                };
169
                var loadChart = function () {
170
                    $.ajax({
171
                        type: "GET",
172
                        url: "/ajax/operation/statist/total",
173
                        success: function (data) {
174
                            allData = dayList();
175
                            allData.forEach(function (day) {
176
                                var time = (JSON.stringify(day.time)).replace(/\-|^\"|\"$/g, "");
177
                                day.pc = 0;
178
                                day.app = 0;
179
                                day.h5 = 0;
180
                                data.data.forEach(function (log) {
181
                                    if (time == log.day) {
182
                                        if (log.source == 1) {
183
                                            day.pc = log.pv;
184
                                        }
185
                                        if (log.source == 2) {
186
                                            day.app = log.pv;
187
                                        }
188
                                        if (log.source == 3) {
189
                                            day.h5 = log.pv;
190
                                        }
191
                                    }
192
                                    day.num = day.pc + day.app + day.h5;
193
                                })
194
                            });
195
                            var colors = ['#003366', "#660099", '#c23531', "#c23531"];
196
                            var option = {
197
198
                                // color: colors,
199
                                title: {
200
                                    text: '文章总浏览量',
201
                                    subtext: '分渠道'
202
                                },
203
                                tooltip: {
204
                                    trigger: 'axis',
205
                                    // formatter:function (params) {
206
                                    //     // return params[0].name + '<br/>'
207
                                    //     //     + params[3].seriesName + ' : ' + (params[2].value + params[1].value + params[0].value)+ '<br/>'
208
                                    //     //     + params[2].seriesName + ' : ' + params[2].value + '<br/>'
209
                                    //     //     + params[1].seriesName + ' : ' + params[1].value + '<br/>'
210
                                    //     //     + params[0].seriesName + ' : ' + params[0].value + '<br/>';
211
                                    //     console.log(params);
212
                                    // },
213
                                    "axisPointer": {
214
                                        "type": "shadow",
215
                                        textStyle: {
216
                                            color: "#fff"
217
                                        }
218
219
                                    }
220
                                },
221
                                legend: {
222
                                    // selectedMode:false,
223
                                    data: ['PC端', '移动端APP', '移动端H5','合计']
224
                                },
225
                                xAxis: {
226
                                    "type": "category",
227
                                    "axisLine": {
228
                                        lineStyle: {
229
                                            color: '#90979c'
230
                                        }
231
                                    },
232
                                    "splitLine": {
233
                                        "show": false
234
                                    },
235
                                    "axisTick": {
236
                                        "show": false
237
                                    },
238
                                    "splitArea": {
239
                                        "show": false
240
                                    },
241
                                    axisLabel: {
242
                                        showMinLabel:true,
243
                                        showMaxLabel:true
244
                                    },
245
                                    "data": allData.map(function (item) {
246
                                        return item.time;
247
                                    })
248
                                },
249
                                yAxis: {
250
                                    "type": "value",
251
                                    "splitLine": {
252
                                        "show": false
253
                                    },
254
                                    "axisLine": {
255
                                        lineStyle: {
256
                                            color: '#90979c'
257
                                        }
258
                                    },
259
                                    "axisTick": {
260
                                        "show": false
261
                                    },
262
                                    "axisLabel": {
263
                                        showMinLabel:true,
264
                                        showMaxLabel:true
265
                                    },
266
                                    "splitArea": {
267
                                        "show": false
268
                                    }
269
                                },
270
                                toolbox: {
271
                                    show: true,
272
                                    feature: {
273
                                        dataZoom: {
274
                                            yAxisIndex: 'none'
275
                                        },
276
                                        dataView: {readOnly: false},
277
                                        magicType: {type: ['line', 'bar']},
278
                                        restore: {},
279
                                        saveAsImage: {}
280
                                    }
281
                                },
282
                                dataZoom: [{
283
                                    startValue: allData[allData.length - 7].time
284
                                }, {
285
                                    type: 'inside'
286
                                }],
287
                                visualMap: {
288
                                    top: 10,
289
                                    right: 10
290
                                },
291
                                series: [
292
                                    {
293
                                        name: '移动端H5',
294
                                        type: 'bar',
295
                                        stack: '总量',
296
                                        "barMaxWidth": 35,
297
                                        "barGap": "10%",
298
                                        "itemStyle": {
299
                                            "normal": {
300
                                                "color": "#dd4444",
301
                                                "label": {
302
                                                    "show": false,
303
                                                    "textStyle": {
304
                                                        "color": "#fff"
305
                                                    },
306
                                                    "position": "insideTop",
307
                                                    formatter: function(p) {
308
                                                        return p.value > 0 ? (p.value) : '';
309
                                                    }
310
                                                }
311
                                            }
312
                                        },
313
                                        data: allData.map(function (item) {
314
                                            return item.h5;
315
                                        })
316
                                    },
317
                                    {
318
                                        name: 'PC端',
319
                                        type: 'bar',
320
                                        stack: '总量',
321
                                        "barMaxWidth": 35,
322
                                        "barGap": "10%",
323
                                        "itemStyle": {
324
                                            "normal": {
325
                                                "color": "#80F1BE",
326
                                                "label": {
327
                                                    "show": false,
328
                                                    "textStyle": {
329
                                                        "color": "#fff"
330
                                                    },
331
                                                    "position": "insideTop",
332
                                                    formatter: function(p) {
333
                                                        return p.value > 0 ? (p.value) : '';
334
                                                    }
335
                                                }
336
                                            }
337
                                        },
338
                                        data: allData.map(function (item) {
339
                                            return item.pc;
340
                                        })
341
                                    }, {
342
                                        name: '移动端APP',
343
                                        type: 'bar',
344
                                        stack: '总量',
345
                                        "barMaxWidth": 35,
346
                                        "barGap": "10%",
347
                                        "itemStyle": {
348
                                            "normal": {
349
                                                "color": "#fec42c",
350
                                                "label": {
351
                                                    "show": false,
352
                                                    "textStyle": {
353
                                                        "color": "#fff"
354
                                                    },
355
                                                    "position": "insideTop",
356
                                                    formatter: function(p) {
357
                                                        return p.value > 0 ? (p.value) : '';
358
                                                    }
359
                                                }
360
                                            }
361
                                        },
362
                                        data: allData.map(function (item) {
363
                                            return item.app;
364
                                        })
365
                                    },
366
                                    {
367
                                        name: '合计',
368
                                        type: 'line',
369
                                        stack: '总量',
370
                                        symbolSize:7,
371
                                        symbol:'circle',
372
                                        // areaStyle: {normal: {}},
373
                                        // label: {
374
                                        //     normal: {
375
                                        //         show: true,
376
                                        //         position: 'top',
377
                                        //         formatter: function (params) {
378
                                        //             for (var i = 0, l = option.xAxis.data.length; i < l; i++) {
379
                                        //                 if (option.xAxis.data[i] == params.name) {
380
                                        //                     // option.series[0].data[i];
381
                                        //                     var num = option.series[0].data[i]+option.series[1].data[i]+option.series[2].data[i];
382
                                        //                     return '合计:' + num;
383
                                        //                 }
384
                                        //             }
385
                                        //         }
386
                                        //
387
                                        //     }
388
                                        // },
389
                                        itemStyle:{
390
                                            normal:{
391
                                                color:"#dd4444",
392
                                                barBorderRadius:0,
393
                                                label:{
394
                                                    show:true,
395
                                                    position:"top",
396
                                                    formatter:function (params) {
397
                                                        return params.val;
398
                                                    }
399
                                                }
400
                                            }
401
                                        },
402
                                        data: allData.map(function (item) {
403
                                            return item.num;
404
                                        })
405
                                    }
406
                                ]
407
                            };
408
                            myChart.setOption(option);
409
                        }
410
                    });
411
                };
412
                loadChart();
123 413
            },
124 414
            mainDestory: function () {
125 415
            }