|
@@ -10,12 +10,9 @@
|
|
|
</block>
|
|
|
</view>
|
|
|
<view class="content-type"> {{ list.ActivityTypeName || "专项产业调研" }}</view>
|
|
|
- <!-- <view :class="['content-title', 'text-Line', list.ResearchTheme && 'content-min-hight']" v-if="list.ActivityName || list.ResearchTheme">
|
|
|
- <image v-if="list.IsResearchPoints" src="https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png"></image>
|
|
|
- <image v-else-if="list.IsResearch" src="https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png"></image>
|
|
|
- <image v-else-if="list.IsExternalLabel" src="https://hzstatic.hzinsights.com/cygx/icon/activity_external.png"></image>
|
|
|
- {{ list.ActivityName || list.ResearchTheme }} -->
|
|
|
- <view :class="['content-title', list.ResearchTheme && 'content-min-hight']" v-if="list.ActivityName || list.ResearchTheme">
|
|
|
+ <view :class="['content-title', list.ResearchTheme && 'content-min-hight',
|
|
|
+ list.IsResearchPoints?'yan-xuan-point-tag':list.IsResearch?'yan-xuan-tag':'external-label']"
|
|
|
+ v-if="list.ActivityName || list.ResearchTheme">
|
|
|
<mp-html :content="richTextClamp(3) + (list.ActivityName || list.ResearchTheme) + '</div>'" />
|
|
|
</view>
|
|
|
<view style="display: flex" class="content-text content-min-hight text_twoLine" v-if="list.ActivityTimeText && list.SourceType !== 1">
|
|
@@ -677,6 +674,7 @@ export default {
|
|
|
font-weight: 400;
|
|
|
color: #333333;
|
|
|
line-height: 44rpx;
|
|
|
+ position: relative;
|
|
|
image {
|
|
|
width: 73rpx;
|
|
|
height: 30rpx;
|
|
@@ -685,6 +683,48 @@ export default {
|
|
|
margin-right: 16rpx;
|
|
|
}
|
|
|
}
|
|
|
+ .yan-xuan-point-tag{
|
|
|
+ text-indent: 82rpx;
|
|
|
+ &::before {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ top: 8rpx;
|
|
|
+ background-image: url(https://hzstatic.hzinsights.com/cygx/icon/Research_Points.png);
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ left: 0;
|
|
|
+ width: 73rpx;
|
|
|
+ height: 30rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .yan-xuan-tag{
|
|
|
+ text-indent: 82rpx;
|
|
|
+ &::before {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ top: 8rpx;
|
|
|
+ background-image: url(https://hzstatic.hzinsights.com/cygx/icon/Research_normal.png);
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ left: 0;
|
|
|
+ width: 73rpx;
|
|
|
+ height: 30rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .external-label{
|
|
|
+ text-indent: 82rpx;
|
|
|
+ &::before {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ top: 8rpx;
|
|
|
+ background-image: url(https://hzstatic.hzinsights.com/cygx/icon/activity_external.png);
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ left: 0;
|
|
|
+ width: 73rpx;
|
|
|
+ height: 30rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
.content-text {
|
|
|
font-size: 28rpx;
|
|
|
font-weight: 400;
|