物流信息完成

This commit is contained in:
pplokijuhyg 2019-12-14 15:40:58 +08:00
parent 62eb95c156
commit a52cc089a2
9 changed files with 97 additions and 4 deletions

View File

@ -54,4 +54,7 @@
- particulars/content 中间所有 - particulars/content 中间所有
- pages/receiving/receiving 待收货 <br> - pages/receiving/receiving 待收货 <br>
- particulars/orderchooseaddr 地址 - particulars/orderchooseaddr 地址
- particulars/content 中间所有 - particulars/content 中间所有
- pages/status/status 物流信息 <br>
- order/message 商品信息
- particulars/logistics 物流信息

View File

@ -1,5 +1,6 @@
{ {
"pages": [ "pages": [
"pages/status/status",
"pages/receiving/receiving", "pages/receiving/receiving",
"pages/undetermined/undetermined", "pages/undetermined/undetermined",
"pages/particulars/particulars", "pages/particulars/particulars",

View File

@ -1,7 +1,6 @@
{ {
"usingComponents": { "usingComponents": {
"content":"../components/particulars/content/index", "content":"../components/particulars/content/index",
"orderchooseaddr":"../components/particulars/orderchooseaddr/index", "orderchooseaddr":"../components/particulars/orderchooseaddr/index"
"logistics":"../components/particulars/logistics/index"
} }
} }

View File

@ -1,5 +1,4 @@
<view class="box"> <view class="box">
<orderchooseaddr></orderchooseaddr> <orderchooseaddr></orderchooseaddr>
<content></content> <content></content>
<logistics></logistics>
</view> </view>

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

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

6
pages/status/status.json Normal file
View File

@ -0,0 +1,6 @@
{
"usingComponents": {
"logistics": "../components/particulars/logistics/index",
"message":"../components/order/message/index"
}
}

11
pages/status/status.scss Normal file
View File

@ -0,0 +1,11 @@
.box {
.reference {
font-size: 24rpx;
color: #999;
padding: 32rpx 20rpx;
background-color: #fff;
}
}
page {
background-color: #fbfbfb;
}

7
pages/status/status.wxml Normal file
View File

@ -0,0 +1,7 @@
<view class="box">
<view class="reference">
订单编号1234567812345789
<message></message>
</view>
<logistics></logistics>
</view>

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

@ -0,0 +1 @@
.box .reference{font-size:24rpx;color:#999;padding:32rpx 20rpx;background-color:#fff}page{background-color:#fbfbfb}