wheel/pages/story/story.wxml
2019-11-29 13:52:16 +08:00

23 lines
561 B
Plaintext

<view class="story">
<view class="story-title">
{{ title }}
</view>
<view class="story-content">
<block wx:for="{{ story }}" wx:key="{{ index }}">
<view class="story-section">
<view class="story-section-title">
{{ item.name }}
</view>
<view wx:if="{{ item.content }}" class="story-section-content">
{{ item.content }}
</view>
</view>
</block>
</view>
<view class="btn-group">
<view class=" btn btn-menu" bindtap="goMenu">
返回目录
</view>
</view>
</view>