Commit 67b6faee by 赵雅纹

Merge branch 'feature-zyw-sc' into 'dev_7.1.0'

Feature zyw sc

See merge request !53
parents f635798e eb7a103e
......@@ -10,7 +10,10 @@ wxService.page({
* 页面的初始数据
*/
data: {
unfold:false
unfold:false,
startY:'',
refreshClass:'',
delBtnWidth:114
},
/**
......@@ -44,38 +47,58 @@ wxService.page({
}
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
// // 开始滑动事件
// touchS: function (e) {
// console.log('e', e)
// if (e.touches.length == 1) {
// this.setData({
// //设置触摸起始点水平方向位置
// startY: e.touches[0].clientY
// });
// }
// },
// touchM: function (e) {
// console.log('333', e)
// if (e.touches.length == 1) {
// //手指移动时y方向位置
// var moveY = e.touches[0].clientY;
// //手指起始点位置与移动期间的差值
// var disY = moveY - this.data.startY;
// var delBtnWidth = this.data.delBtnWidth;
// var moveDistance = delBtnWidth - disY;
// var txtStyle = "";
// console.log('------', disY)
// if (disY == 0 || disY < 0) { //如果移动距离小于等于0,文本层位置不变
// txtStyle = "margin-top:-114px";
// } else if (disY > 0) { //移动距离大于0,文本层left值等于手指移动距离
// txtStyle = "margin-top:-" + moveDistance + "px";
// console.log('+++', txtStyle)
// if (disY >= delBtnWidth) {
// //控制手指移动距离最大值为删除按钮的宽度
// txtStyle = "margin-top:0px" ;
// }
// }
// this.setData({
// refreshClass: txtStyle
// })
// }
// },
// // 滑动中事件
// touchE: function (e) {
// if (e.changedTouches.length == 1) {
// //手指移动结束后水平位置
// var endY = e.changedTouches[0].clientY;
// //触摸开始与结束,手指移动的距离
// var disY = this.data.startY - endY;
// var delBtnWidth = this.data.delBtnWidth;
// //如果距离小于删除按钮的1/2,不显示删除按钮
// var txtStyle = "";
// txtStyle = disY > delBtnWidth / 2 ? "margin-top:" + delBtnWidth + "px" : "margin-top:-114px";
// this.setData({
// refreshClass: txtStyle
// })
// } else {
// }
// },
})
\ No newline at end of file
......@@ -107,7 +107,7 @@
</view>
</view>
<view class="main-content {{unfold ? '' : 'content'}}">
<view class="main-content {{unfold ? '' : 'content'}}" >
<view class="order-ul">
<view class="order-list">
<view class="my-order">
......
......@@ -181,11 +181,16 @@ page{
text-align: center;
}
.main-content{
/* position: relative; */
margin-top: -4rpx;
padding: 0 20rpx;
background-color: #F9F9F9;
}
.content{
margin-top: 28rpx;
/* margin-top: -228rpx;
z-index: 99; */
}
.order-list{
width: 664rpx;
......
......@@ -25,9 +25,9 @@
<text class="pro-img-dot">...</text>
</view>
<view class="pro-number">
<text>共5件商品</text>
<view>
实付 <text>¥480</text>
<text class="total-pro">共5件商品</text>
<view class="total-price">
实付 <text class="price">¥480</text>
</view>
</view>
<view class="btn-group">
......
......@@ -55,7 +55,7 @@ scroll-view{
color: #333333;
}
.pro-list{
margin-top: 14rpx;
margin-top: 16rpx;
display: flex;
justify-content: space-between;
}
......@@ -71,7 +71,7 @@ scroll-view{
line-height: 144rpx;
}
.pro-number{
margin-top: 25rpx;
margin-top: 28rpx;
display: flex;
justify-content: space-between;
padding-bottom: 12rpx;
......@@ -88,6 +88,18 @@ scroll-view{
font-size: 24rpx;
margin-left: 25rpx;
}
.total-pro{
color: #666666;
font-size: 26rpx;
}
.total-price{
font-size: 26rpx;
color: #333333;
}
.total-price .price{
color: #cb3c3c;
font-weight: 600;
}
......
......@@ -39,7 +39,7 @@
"list": []
},
"miniprogram": {
"current": 21,
"current": 22,
"list": [
{
"id": -1,
......@@ -178,6 +178,13 @@
"id": -1,
"name": "我的订单",
"pathName": "pages/order/order",
"query": "",
"scene": null
},
{
"id": -1,
"name": "我的",
"pathName": "pages/my/my",
"scene": null
}
]
......
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