1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| <template>
| <div class="blog-right-side fadeInRight">
| <div class="blog-cell ">
| <box4 v-bind="vo4"></box4>
| </div>
| <!-- <div class="blog-cell ">
| <box4 v-bind="vo1"></box4>
| </div>
| <div class="blog-cell ">
| <box4 v-bind="vo2"></box4>
| </div> -->
| <!-- <div class="blog-cell ">
| <box4 v-bind="vo3"></box4>
| <div class="blog-right-side-exchange">
| </div>
| </div> -->
|
| </div>
| </template>
|
| <script>
| import box4 from "../mini/box4-minibox.vue"
|
| import {
| statistics
| } from '../../api/blogStatistics.js'
|
| export default {
| components: {
| box4,
| },
| beforeMount() {
| statistics({}).then((res) => {
| this.vo4 = res.data;
| return res;
| })
| },
| data() {
| return {
| vo3: {
| "link": "/link",
| title: "友情链接",
| isShowRemark: true,
| list: [{
| name: "https://gofor.live",
| }, {
| name: "http://blog.inleft.com",
| }, {
| name: "https://blog.ahzoo.cn/",
| }, {
| name: "https://vian.top/",
| }, {
| name: "https://musenxi.com/",
| }, {
| name: "http://alenc.cn",
| }, {
| name: "http://howshow.tech",
| }]
| },
| vo4: {
| // title: "统计信息",
| // list: [{
| // name: "已稳定运行:101天",
| // }, {
| // name: "上次更新:2020-05-27",
| // }, {
| // name: "累计访问:10000次",
| // }, {
| // name: "累计访客:1001名",
| // }]
| }
| }
| }
| }
| </script>
|
| </script>
|
|