123456789101112131415161718192021 |
- <!--pages/news/news.wxml-->
- <view class="news-detail-container">
- <text class="title">{{ currentNews.newsTitle }}</text>
- <view class="author-time">
- <!-- <image class="author-avatar" src="../{{currentNews.icon}}"></image> -->
- <text class="author-name">{{ currentNews.author }}</text>
- <text class="const-text">发表于</text>
- <text class="time">{{ currentNews.newsDate }}</text>
- </view>
- <image class="head-img" src="{{ currentNews.newsUrl[0] }}"></image>
- <!-- <view class="horizon"></view> -->
- <view class="tool">
- <!-- <view class="circle-img">
- <image src="../../../image/sch.png" ></image>
- <image src="../../../image/sc.png" ></image>
- <image class="share-img" src="../../../image/fx.png"></image>
- </view> -->
- <text class="detail">{{ currentNews.newsContent }}</text>
- </view>
- </view>
|