|
@@ -23,7 +23,7 @@
|
|
|
<el-col :span="3" class="date">
|
|
|
<el-col :span="24" class="dateInfo">
|
|
|
<el-col :span="24" class="days">
|
|
|
- {{ dayjs(item.date).format('DD-MM') }}
|
|
|
+ {{ dayjs(item.date).format('MM-DD') }}
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="years"> --{{ dayjs(item.date).format('YYYY') }}-- </el-col>
|
|
|
</el-col>
|
|
@@ -236,12 +236,18 @@ onMounted(() => {
|
|
|
line-height: 35px;
|
|
|
letter-spacing: 0px;
|
|
|
margin: 0 0 30px 0;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ -webkit-line-clamp: 1;
|
|
|
+ word-break: break-all;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
}
|
|
|
|
|
|
.brief {
|
|
|
color: rgb(102, 102, 102);
|
|
|
// font-family: '黑体';
|
|
|
- font-size: 18px;
|
|
|
+ font-size: 16px;
|
|
|
font-weight: 400;
|
|
|
line-height: 32px;
|
|
|
letter-spacing: 0px;
|