min-project/component/projectShowText/projectShowText.wxml

25 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-12-12 04:14:09 +00:00
<!--template/projectShowText/projectShowText.wxml-->
<view class="box">
<view class style="position: relative;height: 0;width: 0;overflow: hidden;">
<view class="hide text {{ className }}">{{ text }}</view>
</view>
<view class="head" wx:if="{{ titleName }}">
<image class="icon" src="https://app.gter.net/image/miniApp/offer/triangle-red.svg" mode="widthFix"></image>
{{ titleName }}
</view>
<block wx:if="{{ isswiper }}">
<swiper bindchange="bindchange" style="height: {{ page[0] }}px;">
<swiper-item wx:for="{{ page }}" wx:key="index">
<view class="text" style="margin-top: -{{ index * height }}px;">{{ text }}</view>
</swiper-item>
</swiper>
<view class="pilot" wx:if="{{ page.length > 1 }}">
<view class="item {{ index == current ? 'pitch' : '' }}" wx:for="{{ page }}" wx:key="index"></view>
</view>
</block>
<view wx:else class="text" style="text-align: center;">{{ text }}</view>
</view>