物流信息完成
This commit is contained in:
parent
62eb95c156
commit
a52cc089a2
@ -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 物流信息
|
1
app.json
1
app.json
@ -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",
|
||||||
|
@ -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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -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
66
pages/status/status.js
Normal 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
6
pages/status/status.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {
|
||||||
|
"logistics": "../components/particulars/logistics/index",
|
||||||
|
"message":"../components/order/message/index"
|
||||||
|
}
|
||||||
|
}
|
11
pages/status/status.scss
Normal file
11
pages/status/status.scss
Normal 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
7
pages/status/status.wxml
Normal 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
1
pages/status/status.wxss
Normal file
@ -0,0 +1 @@
|
|||||||
|
.box .reference{font-size:24rpx;color:#999;padding:32rpx 20rpx;background-color:#fff}page{background-color:#fbfbfb}
|
Loading…
Reference in New Issue
Block a user