24 lines
1.1 KiB
Plaintext
Executable File
24 lines
1.1 KiB
Plaintext
Executable File
<!--pages/shop/product/product.wxml-->
|
|
<cu-custom isBack="{{false}}" isRelaunch="{{true}}" bgColor="{{isSticky === true ? 'bg-white' : ''}}">
|
|
<view slot="content" class="text-black" wx:if="{{isSticky}}">商品详情</view>
|
|
</cu-custom>
|
|
<!-- style="padding-top:{{isSticky === true ? statusBarHeight : 0}}px;margin-top:-{{isSticky === true ? statusBarHeight : 0}}px" -->
|
|
|
|
<scroll-view style="margin-top:-{{titleBarHeight}}px">
|
|
<!-- 商品轮播 -->
|
|
<swiper class="screen-swiper xl square-dot bg-white" indicator-dots="true" circular="true" autoplay="true"
|
|
interval="5000" duration="500">
|
|
<swiper-item wx:for="{{swiperlist}}" wx:key="index">
|
|
<image src="{{item}}" mode='aspectFill'></image>
|
|
</swiper-item>
|
|
</swiper>
|
|
<!-- 商品内容 -->
|
|
<van-sticky offset-top="{{titleBarHeight}}" bind:scroll="scrollSticky">
|
|
<scroll-view scroll-x class="bg-white nav" scroll-with-animation scroll-left="{{scrollLeft}}">
|
|
<view class="cu-item {{index==TabCur?'text-blue cur':''}}" wx:for="{{tabList}}" wx:key="index" bindtap="tabSelect"
|
|
data-id="{{index}}">
|
|
{{tabList[index]}}
|
|
</view>
|
|
</scroll-view>
|
|
</van-sticky>
|
|
</scroll-view> |