微信小程序开发
parent
e57da33bcb
commit
6c71357f52
|
|
@ -59,8 +59,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"networkTimeout": {
|
"networkTimeout": {
|
||||||
"request": 10000,
|
"request": 10000,
|
||||||
"downloadFile": 10000
|
"downloadFile": 10000
|
||||||
},
|
},
|
||||||
"debug": true
|
"debug": true,
|
||||||
}
|
"sitemapLocation": "sitemap.json"
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 2.7 KiB |
|
|
@ -1,5 +1,6 @@
|
||||||
<view wx:if="{{data_list.length > 0}}" class="limitedtimediscount">
|
<view wx:if="{{data_list.length > 0}}" class="limitedtimediscount">
|
||||||
<view class="spacing-nav-title">
|
<view class="spacing-nav-title">
|
||||||
|
<image class="nav-icon" src="/components/limitedtimediscount/images/nav-icon.png" mode="aspectFit"></image>
|
||||||
<text class="text-wrapper">限时秒杀</text>
|
<text class="text-wrapper">限时秒杀</text>
|
||||||
<view class="countdown">
|
<view class="countdown">
|
||||||
<block wx:if="{{is_show_time}}">
|
<block wx:if="{{is_show_time}}">
|
||||||
|
|
@ -14,7 +15,7 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="data-list">
|
<view class="data-list">
|
||||||
<scroll-view scroll-x>
|
<scroll-view scroll-x>
|
||||||
<view wx:for="{{data_list}}" key="key" class="item">
|
<view wx:for="{{data_list}}" wx:key="key" class="item">
|
||||||
<navigator url="/pages/goods-detail/goods-detail?id={{item.goods_id}}" hover-class="none">
|
<navigator url="/pages/goods-detail/goods-detail?id={{item.goods_id}}" hover-class="none">
|
||||||
<image src="{{item.images_url}}" mode="aspectFit"></image>
|
<image src="{{item.images_url}}" mode="aspectFit"></image>
|
||||||
<view class="goods-base">
|
<view class="goods-base">
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,12 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 10rpx 0;
|
padding: 10rpx 0;
|
||||||
}
|
}
|
||||||
|
.spacing-nav-title .nav-icon {
|
||||||
|
width: 45rpx;
|
||||||
|
height: 45rpx;
|
||||||
|
vertical-align: top;
|
||||||
|
margin-right: 10rpx;
|
||||||
|
}
|
||||||
.text-wrapper {
|
.text-wrapper {
|
||||||
color: #d2364c;
|
color: #d2364c;
|
||||||
font-size: 36rpx;
|
font-size: 36rpx;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
|
||||||
|
"rules": [{
|
||||||
|
"action": "allow",
|
||||||
|
"page": "*"
|
||||||
|
}]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue