Browse Source

add

master
chenxuhui 7 years ago
parent
commit
cd90793879
5 changed files with 72 additions and 1 deletions
  1. +2
    -1
      app.json
  2. +66
    -0
      pages/myCars/myCars.js
  3. +1
    -0
      pages/myCars/myCars.json
  4. +2
    -0
      pages/myCars/myCars.wxml
  5. +1
    -0
      pages/myCars/myCars.wxss

+ 2
- 1
app.json View File

@ -4,7 +4,8 @@
"pages/message/message", "pages/message/message",
"pages/mine/mine", "pages/mine/mine",
"pages/orderList/orderList", "pages/orderList/orderList",
"pages/orderList/orderDetail/orderDetail"
"pages/orderList/orderDetail/orderDetail",
"pages/myCars/myCars"
], ],
"window": { "window": {
"backgroundTextStyle": "light", "backgroundTextStyle": "light",


+ 66
- 0
pages/myCars/myCars.js View File

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

+ 1
- 0
pages/myCars/myCars.json View File

@ -0,0 +1 @@
{}

+ 2
- 0
pages/myCars/myCars.wxml View File

@ -0,0 +1,2 @@
<!--pages/myCars/myCars.wxml-->
<text>pages/myCars/myCars.wxml</text>

+ 1
- 0
pages/myCars/myCars.wxss View File

@ -0,0 +1 @@
/* pages/myCars/myCars.wxss */

Loading…
Cancel
Save