diff --git a/index.html b/index.html
index 6365fa1..0a474de 100644
--- a/index.html
+++ b/index.html
@@ -32,6 +32,43 @@
+
+
-
+
{{ item.content }}
@@ -22,12 +15,7 @@
-
+
{{ item.title }}
{{ item.summary }}
@@ -165,6 +153,12 @@ onMounted(async () => {
}
getListByTagFn();
+
+ const { aplus_queue } = window;
+ aplus_queue.push({
+ action: 'aplus.sendPV',
+ arguments: [{ is_auto: false }] // 此处上报的数据暂时在后台没有展示
+ });
});
@@ -254,11 +248,16 @@ onMounted(async () => {
text-align: left;
font-style: normal;
- display: -webkit-box; /* 设置为WebKit内核的弹性盒子模型 */
- -webkit-box-orient: vertical; /* 垂直排列 */
- -webkit-line-clamp: 2; /* 限制显示三行 */
- overflow: hidden; /* 隐藏超出范围的内容 */
- text-overflow: ellipsis; /* 使用省略号 */
+ display: -webkit-box;
+ /* 设置为WebKit内核的弹性盒子模型 */
+ -webkit-box-orient: vertical;
+ /* 垂直排列 */
+ -webkit-line-clamp: 2;
+ /* 限制显示三行 */
+ overflow: hidden;
+ /* 隐藏超出范围的内容 */
+ text-overflow: ellipsis;
+ /* 使用省略号 */
}
.news-meta {