1
2
3
4
5
6
7
8
9
10
11
12
13
| <view>
| <view wx:for="{{data}}" class="{{index===0 ? 'mt-0':'mt-30'}}">
| <text user-select="true">{{item.answer}}</text>
| <view class="mt-10">
| <view wx:for="{{item.contexts}}" :key="{{index}}" class="{{index===0 ? 'mt-0':'mt-10'}}">
| <view class="text-blue-700 inline-block" data-item="{{item}}" bind:tap="linkClick">
| <text class="ywicon icon-xiaoxi font25"></text>
| <text class="ml-12" user-select="true">{{ item.metadata.Title }}</text>
| </view>
| </view>
| </view>
| </view>
| </view>
|
|