This commit is contained in:
pplokijuhyg 2019-12-14 17:01:18 +08:00
parent a74ecce711
commit cda5349d2e
7 changed files with 122 additions and 1 deletions

View File

@ -64,4 +64,5 @@
- particulars/logistics 物流信息
- pages/sales1/sales1 退货1 <br>
- sales/merchandises 商品信息
- pages/sales2/sales2 退货3 <br>
- sales/merchandises 商品信息

View File

@ -1,5 +1,6 @@
{
"pages": [
"pages/sales2/sales2",
"pages/sales1/sales1",
"pages/accomplish/accomplish",
"pages/status/status",

66
pages/sales2/sales2.js Normal file
View File

@ -0,0 +1,66 @@
// pages/sales2/sales2.js
Page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})

3
pages/sales2/sales2.json Normal file
View File

@ -0,0 +1,3 @@
{
"usingComponents": { "merchandise":"../components/seles/merchandises/index"}
}

34
pages/sales2/sales2.scss Normal file
View File

@ -0,0 +1,34 @@
.box{
border-top: 1rpx solid #efefef;
.info{
border-bottom: 1rpx solid #efefef;
padding: 29rpx;
box-sizing: border-box;
.title{
font-size: 26rpx;
color: #333;
margin-bottom: 22rpx;
}
.msg{
font-size: 24rpx;
color: #999;
}
}
.submit{
display: flex;
margin-top: 36rpx;
padding: 0 30rpx;
justify-content: flex-end;
.button{
width: 133rpx;
height: 51rpx;
border: 1rpx solid #47C877;
border-radius: 25rpx;
color: #47C877;
font-size: 22rpx;
line-height: 51rpx;
text-align: center;
margin-left: 8rpx;
}
}
}

15
pages/sales2/sales2.wxml Normal file
View File

@ -0,0 +1,15 @@
<view class="box">
<view class="info">
<view class="title">等待商家处理</view>
<view class="msg">请耐心等待</view>
</view>
<merchandise></merchandise>
<view class="info">
<view class="title">退货原因: 拍多/多拍/不想要</view>
<view class="title">申请时间2019-07-21 11:23:21</view>
</view>
<view class="submit">
<view class="button">修改申请</view>
<view class="button">取消申请</view>
</view>
</view>

1
pages/sales2/sales2.wxss Normal file
View File

@ -0,0 +1 @@
.box{border-top:1rpx solid #efefef}.box .info{border-bottom:1rpx solid #efefef;padding:29rpx;box-sizing:border-box}.box .info .title{font-size:26rpx;color:#333;margin-bottom:22rpx}.box .info .msg{font-size:24rpx;color:#999}.box .submit{display:flex;margin-top:36rpx;padding:0 30rpx;justify-content:flex-end}.box .submit .button{width:133rpx;height:51rpx;border:1rpx solid #47C877;border-radius:25rpx;color:#47C877;font-size:22rpx;line-height:51rpx;text-align:center;margin-left:8rpx}