|
@@ -72,7 +72,11 @@ function goReportDetail(item){
|
|
|
<div v-if="listState.list.length===0" class="empty">no results</div>
|
|
|
<div class="report-list-wrap" v-else>
|
|
|
<div class="item" v-for="item in listState.list" :key="item.id" @click="goReportDetail(item)">
|
|
|
- <div class="title" v-html="item.title"></div>
|
|
|
+ <div class="title">
|
|
|
+ <span class="label">【NO.{{item.stage}}|FICC】</span>
|
|
|
+ <span v-html="item.title"></span>
|
|
|
+ <span v-if="item.create_time">({{item.create_time.substring(5,7)}}{{item.create_time.substring(8,10)}})</span>
|
|
|
+ </div>
|
|
|
<div class="intro" v-html="item.content_sub"></div>
|
|
|
<div class="time">{{item.publish_time}}</div>
|
|
|
</div>
|
|
@@ -141,6 +145,24 @@ function goReportDetail(item){
|
|
|
.title{
|
|
|
font-size: 20px;
|
|
|
font-weight: 600;
|
|
|
+ cursor: pointer;
|
|
|
+ .label{
|
|
|
+ display: inline-block;
|
|
|
+ background-image: url('@/assets/report_tag.png');
|
|
|
+ background-size: cover;
|
|
|
+ background-position: right center;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 12px;
|
|
|
+ padding-right: 20px;
|
|
|
+ padding-top: 3px;
|
|
|
+ padding-bottom: 3px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-right: 5px;
|
|
|
+ }
|
|
|
+ span{
|
|
|
+ vertical-align: middle;
|
|
|
+ }
|
|
|
}
|
|
|
.intro{
|
|
|
font-size: 14px;
|
|
@@ -163,6 +185,13 @@ function goReportDetail(item){
|
|
|
padding: 10px 0;
|
|
|
.title{
|
|
|
font-size: 14px;
|
|
|
+ .label{
|
|
|
+ font-size: 10px;
|
|
|
+ padding-right: 20px;
|
|
|
+ padding-top: 2px;
|
|
|
+ padding-bottom: 2px;
|
|
|
+ margin-right: 3px;
|
|
|
+ }
|
|
|
}
|
|
|
.time{
|
|
|
font-size: 12px;
|