<!--pages/scene.wxml-->
|
<view class="p-10 h-full ">
|
<view class="flex flex-col h-full overflow-y-auto">
|
<block wx:for="{{sectionList}}" wx:key="section_id">
|
<text class="font36 font-bold mb-7 {{index===0 ?'mt-0':'mt-15'}}">{{item.section_name}}</text>
|
<block wx:for="{{item.childrenChunkList}}" wx:key="index">
|
<view class="flex {{index===0 ? 'mt-0':'mt-15'}} ">
|
<view class="size-210 flex flex-col p-10 rounded {{index===0 ? 'ml-0':'ml-15'}}" style="border: 1px solid rgb(212, 212, 212);" wx:for="{{item}}" wx:key="section_id" data-item="{{item}}" bind:tap="sectionBClick">
|
<text class="ywicon icon-{{iconList[index]}} text-blue-600 font55"></text>
|
<!-- <image src="/assets/scene/scene_2.png"></image> -->
|
<text class="font-bold font32 my-7">{{item.section_name}}</text>
|
<text class="font26 overflow-hidden over-ellisis-3" style="-webkit-line-clamp: 3;">{{item.section_title}}</text>
|
</view>
|
</view>
|
</block>
|
</block>
|
|
</view>
|
</view>
|