-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
347 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"navigationBarTitleText": "首页" | ||
"navigationBarTitleText": "店铺首页" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,51 @@ | ||
<view class="container"> | ||
|
||
<swiper indicator-color="#fff" indicator-active-color="#f38200" indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" class="banner"> | ||
<block wx:for="{{message.carrousel}}"> | ||
<swiper-item> | ||
<image src="{{item}}" model="aspectFill" /> | ||
</swiper-item> | ||
</block> | ||
</swiper> | ||
<view class="shopdes"> | ||
<view class="msg1"> | ||
<view class="ssavtar"> | ||
<image model="aspectFill" src="{{message.logo}}"/> | ||
</view> | ||
<view class="name">{{message.name}}</view> | ||
<view class="mores" bindtap="toshops">更多></view> | ||
</view> | ||
<view class="msg2"> | ||
<view class="location"><image src="../../images/locationicon.png"/>{{message.address || "暂无地址"}}</view> | ||
<image wx:if="{{message.phone}}" data-num="{{message.phone}}" class="phoneicon" bindtap="calling" src="../../images/phoneicon.png"/> | ||
<image wx:else class="phoneicon grays" src="../../images/phoneicon.png"/> | ||
</view> | ||
</view> | ||
<view class="model"> | ||
<view class="titlebox"> | ||
<image src="../../images/titleb.png" style="width:11rpx;height:29rpx;"></image> | ||
<text>更多信息</text> | ||
</view> | ||
<view class="shebei"> | ||
<view class="sb-item"> | ||
<image style="width: 20rpx;height: 21rpx;" src="../../images/wifi.png"/>WIFI:{{message.storeInfoVO.wifi}} | ||
</view> | ||
<view class="sb-item"> | ||
<image style="width: 25rpx;height: 19rpx;" src="../../images/car.png"/>停车位:{{message.storeInfoVO.parking}} | ||
</view> | ||
<view class="sb-item"> | ||
<image style="width: 24rpx;height: 25rpx;" src="../../images/smoke.png"/>吸烟区:{{message.storeInfoVO.smoking}} | ||
</view> | ||
<view class="sb-item"> | ||
<image style="width: 22rpx;height: 23rpx;" src="../../images/box.png"/>包厢:{{message.storeInfoVO.room}} | ||
</view> | ||
<view class="sb-item"> | ||
<image style="width: 17rpx;height: 22rpx;" src="../../images/drinks.png"/>免费饮品:{{message.storeInfoVO.freeDrinking}} | ||
</view> | ||
</view> | ||
<view class="wifis" wx:if="{{message.storeInfoVO.wifi == '有'}}"> | ||
<view class="wcode">WIFI账号:<text>{{message.storeInfoVO.wifiObj.wifi}}</text></view> | ||
<view class="wpassword">WIFI密码:<text>{{message.storeInfoVO.wifiObj.password}}</text></view> | ||
<view data-num="{{message.storeInfoVO.wifiObj.password}}" class="copy" bindtap="copypassword">复制密码</view> | ||
</view> | ||
</view> | ||
</view> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
/*滚动图*/ | ||
|
||
.banner{ | ||
width: 750rpx; | ||
height: 498rpx; | ||
background-color: #fff; | ||
} | ||
|
||
.banner image { | ||
width: 750rpx; | ||
height: 498rpx; | ||
} | ||
.shopdes{ | ||
height: 175rpx; | ||
padding: 0 24rpx; | ||
background: #fff; | ||
position: relative; | ||
z-index: 10; | ||
border-bottom: 20rpx solid #f4f4f4; | ||
} | ||
.msg1{ | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
height: 90rpx; | ||
border-bottom: 2rpx solid #f2f2f2; | ||
} | ||
.ssavtar{ | ||
padding: 10rpx; | ||
width: 120rpx; | ||
height: 120rpx; | ||
border-radius: 100%; | ||
background: #fff; | ||
margin-top: -50rpx; | ||
} | ||
.ssavtar image{ | ||
width: 120rpx; | ||
height: 120rpx; | ||
border-radius: 100%; | ||
} | ||
.shopdes .name{ | ||
color: #333333; | ||
flex: 1; | ||
font-size: 36rpx; | ||
} | ||
.shopdes .mores{ | ||
color: #ff9b1f; | ||
font-size: 20rpx; | ||
} | ||
.msg2{ | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
height: 83rpx; | ||
} | ||
.msg2 .location{ | ||
flex: 1; | ||
color: #999999; | ||
font-size: 24rpx; | ||
display: flex; | ||
align-items: center; | ||
} | ||
.msg2 .location image{ | ||
width: 26rpx; | ||
height: 28rpx; | ||
} | ||
.msg2 .phoneicon{ | ||
width: 30rpx; | ||
height: 31rpx; | ||
} | ||
.model{ | ||
background: #fff; | ||
border-bottom: 20rpx solid #f4f4f4; | ||
} | ||
.titlebox{ | ||
height: 90rpx; | ||
line-height: 90rpx; | ||
display: flex; | ||
align-items: center; | ||
} | ||
.titlebox text{ | ||
color: #333333; | ||
font-size: 28rpx; | ||
margin-left: 14rpx; | ||
} | ||
.shebei{ | ||
display: flex; | ||
align-items: center; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
padding: 0 24rpx 20rpx; | ||
flex-wrap: wrap; | ||
} | ||
.shebei .sb-item{ | ||
color: #333333; | ||
display: flex; | ||
align-items: center; | ||
font-size: 24rpx; | ||
} | ||
.shebei .sb-item image{ | ||
margin-right: 5rpx; | ||
} | ||
.wifis{ | ||
padding: 20rpx 24rpx; | ||
border-top: 2rpx solid #f2f2f2; | ||
position: relative; | ||
} | ||
.wcode,.wpassword{ | ||
color: #333333; | ||
font-size: 24rpx; | ||
margin-bottom: 10rpx; | ||
} | ||
.wcode text,.wpassword text{ | ||
color: #999999; | ||
} | ||
.copy{ | ||
position: absolute; | ||
width: 120rpx; | ||
height: 30rpx; | ||
text-align: center; | ||
line-height: 30rpx; | ||
color: #333333; | ||
font-size: 24rpx; | ||
right: 0; | ||
bottom: 30rpx; | ||
border: 2rpx solid #f2f2f2; | ||
} | ||
|
||
|
||
|
Oops, something went wrong.