You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
444 B
9 lines
444 B
<!--subpages/handBook/pages/index/index.wxml-->
|
|
<view class="flex">
|
|
<view class="item" wx:for="{{list}}" wx:key="index">
|
|
<view class="title">{{item.title}}</view>
|
|
<view class="entrance" wx:if="{{item.entrance}}">{{item.entrance}}</view>
|
|
<text class="content">{{item.content}}</text>
|
|
<image src="../image/{{index + 1}}.png" data-index="{{index}}" bind:tap="previewImage" mode="widthFix"/>
|
|
</view>
|
|
</view>
|
|
|