微调/完善

This commit is contained in:
2023-07-05 02:02:38 +08:00
parent 0946e22f85
commit 03110a9b1e
8 changed files with 105 additions and 67 deletions

View File

@@ -1,8 +1,8 @@
<template>
<div class="articleList" @click="goArticleDetail">
<div style="display: flex;flex-direction: column;">
<div style="display: flex;justify-content: flex-start">
<span style="font-size: 16px;color: black;font-weight: bold">{{articleList.ArticleTitle}}</span>
<div class="articleTitle" style="display: flex;justify-content: flex-start">
<span style="font-size: 16px;color: black;font-weight: bold">{{articleList.ArticleTitle}}</span>
</div>
<span v-text="brief" style="display: flex;justify-content:flex-start;text-align: left;margin-top: 10px;font-size: 13px;color: #9ca3af">
@@ -71,7 +71,10 @@ export default {
cursor: pointer;
overflow: hidden;
}
.articleList:hover{
.articleList:hover {
background-color: #eeeeee;
}
.articleTitle :hover{
color: #42b983;
}
</style>