123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <view class="pageContainer">
- <!--index.wxml-->
- <scroll-view class="scrollarea" bounces="false" scroll-y="{{popupShow ? false : true}}" type="list">
- <view class="container">
-
- <view class="goodsSection">
- <view class="goodsIntro">
- <view class="images">
- <block wx:for="{{goodsImgList}}" wx:key="index">
- <!-- bind:tap="onPreivewGoodsImg" -->
- <image mode="widthFix" data-src="{{item}}" src="{{item}}"></image>
- </block>
- </view>
- </view>
- </view>
- <view class="bottom-section">
- <view class="orders" bind:tap="onOrder">
- <image src="./images/icon-order.png" />
- <text>我的订单</text>
- </view>
- <view class="orders" bind:tap="onBuyGoods">
- <image src="./images/icon-buy.png" />
- <text>申请加入</text>
- </view>
- </view>
- <van-popup show="{{ popupShow }}" safe-area-inset-bottom="{{false}}" lock-scroll="{{true}}" bind:close="onClose" position="bottom" round z-index="101">
- <view class="popup-section">
- <image bind:tap="onClose" src="./images/icon-close-1.png" class="iconClose"></image>
- <!-- wx:if="{{popupShow}}" -->
- <!-- <view class="popup-mask" bind:tap="onClose"></view> -->
-
- <!-- <view class="popup-container">
-
- </view> -->
- </view>
- </van-popup>
- </view>
- </scroll-view>
- </view>
|