Commit f4db9b9e by 李嘉林

fix

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