20 lines
566 B
Plaintext
20 lines
566 B
Plaintext
|
<view class="article">
|
||
|
<view class="title">{{articleData.title}}</view>
|
||
|
<!-- banner轮播 -->
|
||
|
<view class="swiper">
|
||
|
<swiper indicator-dots="{{indicatorDots}}"
|
||
|
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
|
||
|
<block wx:for="{{articleData.swiper}}" wx:key="*this">
|
||
|
<swiper-item>
|
||
|
<image class="swiper-image" src="{{item}}" ></image>
|
||
|
</swiper-item>
|
||
|
</block>
|
||
|
</swiper>
|
||
|
</view>
|
||
|
|
||
|
<view class="wxParse" style="100%">
|
||
|
<parser html="{{articleData.content}}" />
|
||
|
</view>
|
||
|
</view>
|
||
|
|