Commit f4db9b9e by 李嘉林

fix

parent ca1b64a6
...@@ -108,6 +108,7 @@ export default { ...@@ -108,6 +108,7 @@ export default {
current: 1, current: 1,
size: this.showCont, size: this.showCont,
} }
console.log(query,'------getList-----query')
index.outDataSourceData(query).then(res=>{ index.outDataSourceData(query).then(res=>{
if(res.data.code == 200){ if(res.data.code == 200){
this.comDataList = res.data.data.data || []; this.comDataList = res.data.data.data || [];
......
...@@ -286,7 +286,14 @@ const componentOptions = { ...@@ -286,7 +286,14 @@ const componentOptions = {
.exec(); .exec();
}, },
onChange(e) { onChange(e) {
this.setData({ timeData: e.detail }); let { days, hours, minutes, seconds } = e.detail;
let detail = {
days: days<10?'0'+days:days,
hours: hours<10?'0'+hours:hours,
minutes: minutes<10?'0'+minutes:minutes,
seconds: seconds<10?'0'+seconds:seconds,
}
this.setData({ timeData: detail });
}, },
onclickProduct(e) { onclickProduct(e) {
console.log( console.log(
......
...@@ -106,6 +106,7 @@ ...@@ -106,6 +106,7 @@
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
line-height: 44rpx; line-height: 44rpx;
font-size: 32rpx; font-size: 32rpx;
height: 46rpx;
} }
.goods-item-child .info .allPrice, .goods-item-child .info .allPrice,
.goods-item .info .allPrice{ .goods-item .info .allPrice{
...@@ -201,13 +202,14 @@ ...@@ -201,13 +202,14 @@
overflow-y: hidden; overflow-y: hidden;
white-space: nowrap; white-space: nowrap;
-webkit-overflow-scrolling: touch; /* ios5+ */ -webkit-overflow-scrolling: touch; /* ios5+ */
padding: 20rpx;
} }
.goods1 .goods-item { .goods1 .goods-item {
display: inline-block; display: inline-block;
vertical-align: top; vertical-align: top;
white-space: initial; white-space: initial;
margin-right: 20rpx; margin-right: 20rpx;
width: 40%; width: 26%;
} }
.goods1 .goods-item .items { .goods1 .goods-item .items {
border-radius: 5px; border-radius: 5px;
...@@ -215,6 +217,7 @@ ...@@ -215,6 +217,7 @@
background: #ffffff; background: #ffffff;
} }
.goods1 .goods-item .slidebox2 { .goods1 .goods-item .slidebox2 {
height: 22vw;
box-sizing: border-box; box-sizing: border-box;
-moz-box-sizing: border-box; /* Firefox */ -moz-box-sizing: border-box; /* Firefox */
-webkit-box-sizing: border-box; /* Safari */ -webkit-box-sizing: border-box; /* Safari */
......
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