已完成完成

This commit is contained in:
pplokijuhyg 2019-12-14 15:44:30 +08:00
parent a52cc089a2
commit 5ae16ab763
7 changed files with 89 additions and 1 deletions

View File

@ -58,3 +58,7 @@
- pages/status/status 物流信息 <br> - pages/status/status 物流信息 <br>
- order/message 商品信息 - order/message 商品信息
- particulars/logistics 物流信息 - particulars/logistics 物流信息
- pages/receiving/receiving 已完成 <br>
- particulars/orderchooseaddr 地址
- particulars/content 中间所有
- particulars/logistics 物流信息

View File

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

View File

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

View File

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

View File

@ -0,0 +1,4 @@
.box{}
page{
background-color: #fbfbfb;
}

View File

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

View File

@ -0,0 +1 @@
page{background-color:#fbfbfb}