Commit 25d16b69 authored by jiangjiantao's avatar jiangjiantao

提货bugfixed

parent 1978b281
......@@ -88,8 +88,9 @@
align-items: center;
width: 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部分 */
......@@ -105,8 +106,6 @@
font-size: 40rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
background: url(/images/scan_header_bg.png) no-repeat fixed top;
background-size: 100% 200rpx;
color: rgba(255, 255, 255, 1);
}
......@@ -114,5 +113,6 @@
.pick-goods-body {
width: 700rpx;
height: 100%;
background: transparent
background: transparent;
margin-top: 35rpx
}
\ No newline at end of file
<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}}"/>
</view>
<!-- 提货布局 -->
......
......@@ -34,6 +34,16 @@ Page({
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() {
......
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