会员商品
This commit is contained in:
66
pages/order/order.js
Normal file
66
pages/order/order.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/order/order.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
|
||||
}
|
||||
})
|
||||
5
pages/order/order.json
Normal file
5
pages/order/order.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"usingComponents": {
|
||||
"tab":"../components/order/tab/index"
|
||||
}
|
||||
}
|
||||
9
pages/order/order.scss
Normal file
9
pages/order/order.scss
Normal file
@@ -0,0 +1,9 @@
|
||||
.box {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
}
|
||||
page {
|
||||
background-color: #efefef;
|
||||
}
|
||||
3
pages/order/order.wxml
Normal file
3
pages/order/order.wxml
Normal file
@@ -0,0 +1,3 @@
|
||||
<view class="box">
|
||||
<tab style="width:100%"></tab>
|
||||
</view>
|
||||
1
pages/order/order.wxss
Normal file
1
pages/order/order.wxss
Normal file
@@ -0,0 +1 @@
|
||||
.box{display:flex;flex-direction:column;align-items:center;width:100%}page{background-color:#efefef}
|
||||
Reference in New Issue
Block a user