已完成完成
This commit is contained in:
parent
a52cc089a2
commit
5ae16ab763
@ -58,3 +58,7 @@
|
||||
- pages/status/status 物流信息 <br>
|
||||
- order/message 商品信息
|
||||
- particulars/logistics 物流信息
|
||||
- pages/receiving/receiving 已完成 <br>
|
||||
- particulars/orderchooseaddr 地址
|
||||
- particulars/content 中间所有
|
||||
- particulars/logistics 物流信息
|
||||
|
1
app.json
1
app.json
@ -1,5 +1,6 @@
|
||||
{
|
||||
"pages": [
|
||||
"pages/accomplish/accomplish",
|
||||
"pages/status/status",
|
||||
"pages/receiving/receiving",
|
||||
"pages/undetermined/undetermined",
|
||||
|
66
pages/accomplish/accomplish.js
Normal file
66
pages/accomplish/accomplish.js
Normal 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 () {
|
||||
|
||||
}
|
||||
})
|
7
pages/accomplish/accomplish.json
Normal file
7
pages/accomplish/accomplish.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"usingComponents": {
|
||||
"content":"../components/particulars/content/index",
|
||||
"orderchooseaddr":"../components/particulars/orderchooseaddr/index",
|
||||
"logistics": "../components/particulars/logistics/index"
|
||||
}
|
||||
}
|
4
pages/accomplish/accomplish.scss
Normal file
4
pages/accomplish/accomplish.scss
Normal file
@ -0,0 +1,4 @@
|
||||
.box{}
|
||||
page{
|
||||
background-color: #fbfbfb;
|
||||
}
|
5
pages/accomplish/accomplish.wxml
Normal file
5
pages/accomplish/accomplish.wxml
Normal file
@ -0,0 +1,5 @@
|
||||
<view class="box">
|
||||
<orderchooseaddr></orderchooseaddr>
|
||||
<content></content>
|
||||
<logistics></logistics>
|
||||
</view>
|
1
pages/accomplish/accomplish.wxss
Normal file
1
pages/accomplish/accomplish.wxss
Normal file
@ -0,0 +1 @@
|
||||
page{background-color:#fbfbfb}
|
Loading…
Reference in New Issue
Block a user