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.
32 lines
1.1 KiB
32 lines
1.1 KiB
<!--pages/detail/detail.wxml-->
|
|
<!-- banner -->
|
|
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
|
|
<block wx:for="{{imgUrls}}">
|
|
<swiper-item>
|
|
<image src="{{item}}" data-src="{{item}}" bindtap="previewImage"></image>
|
|
</swiper-item>
|
|
</block>
|
|
</swiper>
|
|
<scroll-view scroll-y="true">
|
|
<view class="detail">
|
|
<text class="title">算法设计</text>
|
|
<text class="price">¥20</text>
|
|
</view>
|
|
<view class="separate"></view>
|
|
<!-- sku选择 -->
|
|
<text bindtap="toggleDialog">请选择购买数量</text>
|
|
<view class="separate"></view>
|
|
<text>商品评价</text>
|
|
<view class="separate"></view>
|
|
<text>商品详情</text>
|
|
<block wx:for-items="{{detailImg}}" wx:key="name">
|
|
<image class="image_detail" src="{{item}}" />
|
|
</block>
|
|
<view class="temp"></view>
|
|
</scroll-view>
|
|
<!-- 底部悬浮栏 -->
|
|
<view class="detail-nav">
|
|
<view class="line_nav"></view>
|
|
<button class="button-green" bindtap="addCar" formType="submit">加入购物车</button>
|
|
<button class="button-red" bindtap="immeBuy" formType="submit">立即购买</button>
|
|
</view> |