1234567891011121314151617181920212223242526272829303132333435 |
- <!--pages/shop/shop.wxml-->
- <import src="../../module/header.wxml"/>
- <import src="../../module/caritem/caritem.wxml"/>
- <scroll-view
- class="conent"
- style="height:{{windowh}}rpx;"
- scroll-y="{{selectbar==''?'true':'false'}}"
- >
- <template
- is="header"
- data="{{title:'店铺主页',headerheight:headerheight,hasback:true}}"
- />
- <view class="shop_info">
- <view
- class="shop_img"
- style="background-image: url({{info.img}})"
- >
- </view>
- <view class="shop_detail">
- <view class="shop_detail_title">
- {{info.store_name}}
- </view>
- <view class="shop_detail_address">
- <image src="../../img/address.png"/>{{info.address}}
- </view>
- <view
- class="shop_detail_phone"
- data-phonenumber="{{info.phone}}"
- bindtap="makeCall"
- >
- <image src="../../img/phone.png"/>{{info.phone}}
- </view>
- </view>
- </view>
- </scroll-view>
|