- <!--module/article/components/science-card/science-card.wxml-->
- <view class="list-card-item" id="{{item.id}}" bind:tap="toInfoPage">
- <view class="border-gradient" wx:if="{{index}}">
- <!--边框-->
- </view>
- <!--<image class="cover" src="{{item.briefImg}}" mode="aspectFill" fade-in /> -->
- <view class="content">
- <text class="title" max-lines="3" overflow="ellipsis">{{item.title}}</text>
- <text class="description-2" max-lines="1" overflow="ellipsis" wx:if="{{item.pushTime}}">发布时间:{{item.pushTime}}</text>
- <text class="description-2" max-lines="1" overflow="ellipsis" wx:if="{{item.readVolume}}">阅读量:{{item.readVolume}}</text>
- </view>
- </view>
|