Commit 25d16b69 authored by jiangjiantao's avatar jiangjiantao

提货bugfixed

parent 1978b281
...@@ -88,8 +88,9 @@ ...@@ -88,8 +88,9 @@
align-items: center; align-items: center;
width: 100%; width: 100%;
height: 100%; height: 100%;
background: white; position: absolute;
position: absolute background: url(/images/scan_header_bg.png) no-repeat fixed top;
background-size: 100% 200rpx;
} }
/* 提货商品布局top部分 */ /* 提货商品布局top部分 */
...@@ -105,8 +106,6 @@ ...@@ -105,8 +106,6 @@
font-size: 40rpx; font-size: 40rpx;
font-family: PingFangSC-Medium, PingFang SC; font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500; font-weight: 500;
background: url(/images/scan_header_bg.png) no-repeat fixed top;
background-size: 100% 200rpx;
color: rgba(255, 255, 255, 1); color: rgba(255, 255, 255, 1);
} }
...@@ -114,5 +113,6 @@ ...@@ -114,5 +113,6 @@
.pick-goods-body { .pick-goods-body {
width: 700rpx; width: 700rpx;
height: 100%; height: 100%;
background: transparent background: transparent;
margin-top: 35rpx
} }
\ No newline at end of file
<view class="page"> <view class="page">
<view class="bg" onTap="homeTap"> <view class="bg" onTap="homeTap" a:if="{{pickGoodsState != 3}}">
<image mode="scaleToFill" style="width:100%;height:100%;" src="{{adUrl}}"/> <image mode="scaleToFill" style="width:100%;height:100%;" src="{{adUrl}}"/>
</view> </view>
<!-- 提货布局 --> <!-- 提货布局 -->
......
...@@ -34,6 +34,16 @@ Page({ ...@@ -34,6 +34,16 @@ Page({
onLoad() { onLoad() {
let pickgoodsTemp = []
for(var i = 0;i < 3;i++){
var good = {};
good.name = "SK-II R.N.A.超肌能紧致弹力精华"
good.price = "1098"
good.quantity = 1
pickgoodsTemp.push(good)
}
this.setData({pickGoods:pickgoodsTemp})
}, },
onShow() { onShow() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment