diff --git a/app.json b/app.json index 042e029..03740c8 100644 --- a/app.json +++ b/app.json @@ -1,15 +1,53 @@ { "pages": [ + "pages/help/index/index", + "pages/savemoney/index/index", + "pages/order/index/index", + "pages/my/index/index", "pages/index/index", - "pages/logs/logs" + "pages/login/login", + "pages/logs/logs", + "pages/help/package/index" ], "window": { "navigationBarTextStyle": "black", "navigationBarTitleText": "Weixin", "navigationBarBackgroundColor": "#ffffff" }, + "tabBar": { + "color": "#999999", + "selectedColor": "#4285FF", + "backgroundColor": "#ffffff", + "borderStyle": "white", + "list": [ + { + "pagePath": "pages/help/index/index", + "text": "帮忙", + "iconPath": "assets/icon/tabs/tab1@2x.png", + "selectedIconPath": "assets/icon/tabs/tab1-active@2x.png" + }, + { + "pagePath": "pages/savemoney/index/index", + "text": "省钱", + "iconPath": "assets/icon/tabs/tab2@2x.png", + "selectedIconPath": "assets/icon/tabs/tab2-active@2x.png" + }, + { + "pagePath": "pages/order/index/index", + "text": "订单", + "iconPath": "assets/icon/tabs/tab3@2x.png", + "selectedIconPath": "assets/icon/tabs/tab3-active@2x.png" + }, + { + "pagePath": "pages/my/index/index", + "text": "我的", + "iconPath": "assets/icon/tabs/tab4@2x.png", + "selectedIconPath": "assets/icon/tabs/tab4-active@2x.png" + } + ] + }, "style": "v2", "componentFramework": "glass-easel", "sitemapLocation": "sitemap.json", "lazyCodeLoading": "requiredComponents" -} +} \ No newline at end of file diff --git a/app.wxss b/app.wxss index 06c6fc9..3990632 100644 --- a/app.wxss +++ b/app.wxss @@ -1,10 +1,50 @@ /**app.wxss**/ -.container { - height: 100%; - display: flex; - flex-direction: column; - align-items: center; - justify-content: space-between; - padding: 200rpx 0; - box-sizing: border-box; -} +page{ + font-size:32rpx; + line-height: 1; + background-color:#F5F5F5; +} + +button label{ + display: inline-block; + margin-left: 10rpx; +} +button .icon,button label{ + vertical-align: middle; +} +button:not([size=mini]){ + width:auto; + /* height: 108rpx; */ + padding:30rpx 25rpx; + font-size: 36rpx; +} +button:not([size=mini]) .icon{ + width:32rpx;height:32rpx; +} + +button[type=primary]{ + background-color:#1A4DEB; +} +button[type=primary]:hover{ + background-color:#043eec; +} +button[type=default]{ + color: #333333; + font-size:32rpx; + line-height: 1; +} + + +radio-group label,radio-group radio{ + vertical-align: middle; +} +radio-group label{ + margin-left:14rpx; +} + +.page-container{ + background-color: #fff; + border-radius: 20rpx; + padding:30rpx; + margin:20rpx; +} \ No newline at end of file diff --git a/assets/icon/help/arrow-down@2x.png b/assets/icon/help/arrow-down@2x.png new file mode 100644 index 0000000..c0c6fa1 Binary files /dev/null and b/assets/icon/help/arrow-down@2x.png differ diff --git a/assets/icon/help/arrow-right@2x.png b/assets/icon/help/arrow-right@2x.png new file mode 100644 index 0000000..db20be1 Binary files /dev/null and b/assets/icon/help/arrow-right@2x.png differ diff --git a/assets/icon/help/house@2x.png b/assets/icon/help/house@2x.png new file mode 100644 index 0000000..7988bce Binary files /dev/null and b/assets/icon/help/house@2x.png differ diff --git a/assets/icon/help/icon1.png b/assets/icon/help/icon1.png new file mode 100644 index 0000000..d532ac7 Binary files /dev/null and b/assets/icon/help/icon1.png differ diff --git a/assets/icon/help/icon2.png b/assets/icon/help/icon2.png new file mode 100644 index 0000000..df6bf7d Binary files /dev/null and b/assets/icon/help/icon2.png differ diff --git a/assets/icon/help/icon3.png b/assets/icon/help/icon3.png new file mode 100644 index 0000000..06a2af7 Binary files /dev/null and b/assets/icon/help/icon3.png differ diff --git a/assets/icon/help/plus@2x.png b/assets/icon/help/plus@2x.png new file mode 100644 index 0000000..d7a6a90 Binary files /dev/null and b/assets/icon/help/plus@2x.png differ diff --git a/assets/icon/help/send@2x.png b/assets/icon/help/send@2x.png new file mode 100644 index 0000000..1b211c7 Binary files /dev/null and b/assets/icon/help/send@2x.png differ diff --git a/assets/icon/help/take@2x.png b/assets/icon/help/take@2x.png new file mode 100644 index 0000000..0e80584 Binary files /dev/null and b/assets/icon/help/take@2x.png differ diff --git a/assets/icon/navbar/lanfeng@2x.png b/assets/icon/navbar/lanfeng@2x.png new file mode 100644 index 0000000..3510f5d Binary files /dev/null and b/assets/icon/navbar/lanfeng@2x.png differ diff --git a/assets/icon/tabs/tab1-active@2x.png b/assets/icon/tabs/tab1-active@2x.png new file mode 100644 index 0000000..66c45de Binary files /dev/null and b/assets/icon/tabs/tab1-active@2x.png differ diff --git a/assets/icon/tabs/tab1@2x.png b/assets/icon/tabs/tab1@2x.png new file mode 100644 index 0000000..531ece3 Binary files /dev/null and b/assets/icon/tabs/tab1@2x.png differ diff --git a/assets/icon/tabs/tab2-active@2x.png b/assets/icon/tabs/tab2-active@2x.png new file mode 100644 index 0000000..6521f7c Binary files /dev/null and b/assets/icon/tabs/tab2-active@2x.png differ diff --git a/assets/icon/tabs/tab2@2x.png b/assets/icon/tabs/tab2@2x.png new file mode 100644 index 0000000..a4f9c1e Binary files /dev/null and b/assets/icon/tabs/tab2@2x.png differ diff --git a/assets/icon/tabs/tab3-active@2x.png b/assets/icon/tabs/tab3-active@2x.png new file mode 100644 index 0000000..71d8f87 Binary files /dev/null and b/assets/icon/tabs/tab3-active@2x.png differ diff --git a/assets/icon/tabs/tab3@2x.png b/assets/icon/tabs/tab3@2x.png new file mode 100644 index 0000000..fb9df43 Binary files /dev/null and b/assets/icon/tabs/tab3@2x.png differ diff --git a/assets/icon/tabs/tab4-active@2x.png b/assets/icon/tabs/tab4-active@2x.png new file mode 100644 index 0000000..f551421 Binary files /dev/null and b/assets/icon/tabs/tab4-active@2x.png differ diff --git a/assets/icon/tabs/tab4@2x.png b/assets/icon/tabs/tab4@2x.png new file mode 100644 index 0000000..3949d2e Binary files /dev/null and b/assets/icon/tabs/tab4@2x.png differ diff --git a/components/navbar/index.js b/components/navbar/index.js new file mode 100644 index 0000000..05382be --- /dev/null +++ b/components/navbar/index.js @@ -0,0 +1,33 @@ +// components/navBar.js +Component({ + + /** + * 组件的属性列表 + */ + properties: { + + }, + + /** + * 组件的初始数据 + */ + data: { + statusBarHeight:0, + navBarHeight:44 + }, + lifetimes:{ + attached(){ + console.log('1212121212'); + const windowInfo = wx.getWindowInfo(); + this.setData({ + statusBarHeight:windowInfo.statusBarHeight + }) + } + }, + /** + * 组件的方法列表 + */ + methods: { + + } +}) \ No newline at end of file diff --git a/components/navbar/index.json b/components/navbar/index.json new file mode 100644 index 0000000..e8cfaaf --- /dev/null +++ b/components/navbar/index.json @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} \ No newline at end of file diff --git a/components/navbar/index.wxml b/components/navbar/index.wxml new file mode 100644 index 0000000..c4dc779 --- /dev/null +++ b/components/navbar/index.wxml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/components/navbar/index.wxss b/components/navbar/index.wxss new file mode 100644 index 0000000..55a278b --- /dev/null +++ b/components/navbar/index.wxss @@ -0,0 +1,13 @@ +/* components/navBar.wxss */ +.nav-bar{ + text-align: center; +} +.nav-bar-content{ + display: flex; + align-items: center; + justify-content: center; +} +.nav-bar .logo{ + width:168rpx; + height:42rpx; +} \ No newline at end of file diff --git a/pages/help/index/index.js b/pages/help/index/index.js new file mode 100644 index 0000000..4767c33 --- /dev/null +++ b/pages/help/index/index.js @@ -0,0 +1,71 @@ +// pages/help/index/index.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + index:0, + array:[1,2,3,4] + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad(options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + }, + goToAddPackage(){ + wx.navigateTo({ + url: '/pages/help/package/index', + }) + } +}) \ No newline at end of file diff --git a/pages/help/index/index.json b/pages/help/index/index.json new file mode 100644 index 0000000..e5c8349 --- /dev/null +++ b/pages/help/index/index.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "nav-bar":"/components/navbar" + }, + "navigationStyle": "custom" +} \ No newline at end of file diff --git a/pages/help/index/index.wxml b/pages/help/index/index.wxml new file mode 100644 index 0000000..b290815 --- /dev/null +++ b/pages/help/index/index.wxml @@ -0,0 +1,53 @@ + + + + + + 选择小区 + + + + + + + + + 朝阳时代西锦12栋1单元2072朝阳时代西锦12栋1单元2072 + 周先生 13888888888 + + + + + + + + 送达地址 + + + + + + + + + 方便快捷 + + + + 方便快捷 + + + + 方便快捷 + + + + + + + 您有免费跑腿券待领取 + 先领券,再下单,立享免费跑腿 + + + + \ No newline at end of file diff --git a/pages/help/index/index.wxss b/pages/help/index/index.wxss new file mode 100644 index 0000000..55cfea9 --- /dev/null +++ b/pages/help/index/index.wxss @@ -0,0 +1,125 @@ +.bg{ + background: linear-gradient(180deg, #1A4DEB 62%, #F8F9FB 100%); + height:90vw; + width:100%; + position:absolute; + z-index:-1; +} +.choose-community{ + padding:90rpx 40rpx 70rpx; + position: relative; + color:#fff; + font-size:0; +} +.choose-community .text{ + font-size:32rpx; + display:inline-block; + vertical-align: middle; +} +.choose-community .arrow{ + width:20rpx; + height:10rpx; + vertical-align: middle; + margin-left:20rpx; +} + +.address-panel{ + background-color: #fff; + box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.05); + border-radius: 20rpx; + margin:0 20rpx; + padding:0 30rpx 0 48rpx; +} + +.address-panel .ap-item{ + display:flex; + align-items: center; + color:#222222; + line-height: 1.7; + padding:34rpx 0; +} +.address-panel .ap-item .icon{ + width:40rpx;height:40rpx; + align-self: flex-start; + margin-top:3px +} +.address-panel .ap-item .text{ + flex:1; + margin-left:30rpx; + line-height: 1; +} +.address-panel .ap-item .text .title{ + line-height: 48rpx; +} +.address-panel .ap-item .text .sub-title{ + color:#7C8695; + font-size: 14px; + margin-top:22rpx; +} +.address-panel .arrow{ + width: 30rpx;height:30rpx; +} +.address-panel .line{ + border-bottom: 0.5px dashed rgba(124, 134, 149, 0.3); + margin-top:26rpx; + margin-right:10rpx; +} + +.address-panel .bottom{ + display: flex; + justify-content: space-between; + margin-right:10rpx; + padding:34rpx 0 40rpx 0; +} +.address-panel .bottom .item{ + font-size:0; + line-height: 1; +} +.address-panel .bottom .icon{ + width:28rpx;height:28rpx; + margin-top:0; + vertical-align: middle; +} +.address-panel .bottom .text{ + color: #7C8695; + font-size: 24rpx; + margin-left: 8rpx; + display: inline-block; + vertical-align: middle; +} +.order-button{ + margin:40rpx 20rpx!important; +} + +.promotion-panel{ + display: flex; + border: 1px solid rgba(26, 77, 235, 0.5); + margin:44rpx 20rpx; + border-radius: 20rpx; + padding:32rpx 32rpx 32rpx 40rpx; + align-items: center; +} +.promotion-panel .text{ + flex:1; +} + +.promotion-panel .text .title{ + font-size:34rpx; + font-weight: 500; +} +.promotion-panel .text .title .spec{ + color: #1A4DEB; +} + +.promotion-panel .text .sub-title{ + font-size: 28rpx; + color: #7C8695; + margin-top:26rpx; +} +.promotion-panel .button{ + width:100rpx; + height:100rpx; + border-radius: 50%; + padding:0; + line-height: 100rpx; +} diff --git a/pages/help/package/index.js b/pages/help/package/index.js new file mode 100644 index 0000000..95ba73c --- /dev/null +++ b/pages/help/package/index.js @@ -0,0 +1,65 @@ +// pages/help/package/index.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad(options) { + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/pages/help/package/index.json b/pages/help/package/index.json new file mode 100644 index 0000000..7b1e4a6 --- /dev/null +++ b/pages/help/package/index.json @@ -0,0 +1,4 @@ +{ + "usingComponents": {}, + "navigationStyle": "default" +} \ No newline at end of file diff --git a/pages/help/package/index.wxml b/pages/help/package/index.wxml new file mode 100644 index 0000000..f653836 --- /dev/null +++ b/pages/help/package/index.wxml @@ -0,0 +1,54 @@ + + + + + 妈妈驿站(朝阳时代西锦) + 服务时间 10:00-80:30 + + + + + + + + + 菜鸟驿站(朝阳时代西锦) + 服务时间 10:00-21:00 + + + + + + + + + + + + + + 取件量 + 2 + + + 跑腿券 + 0张 + + + 跑腿费 + ¥3.5 + + *基础费3元 (含5件包裹) 超出部分0.5元/件 + \ No newline at end of file diff --git a/pages/help/package/index.wxss b/pages/help/package/index.wxss new file mode 100644 index 0000000..3d30bbb --- /dev/null +++ b/pages/help/package/index.wxss @@ -0,0 +1,55 @@ +.page-container{ + +} +.page-container .head{ + display: flex; +} +.page-container .head .icon{ + width:40rpx;height:40rpx; + +} +.page-container .head .text{ + flex:1; + padding-left:10rpx; +} +.page-container .head .title{ + font-size: 34rpx; +} +.page-container .head .sub-title{ + font-size:26rpx; + color: #888888; + margin-top:24rpx; +} +.page-container .button{ + margin-top:34rpx; +} + +.page-container .radio{ + display: flex; + justify-content: space-around; +} + +.page-container .kv-item{ + display:flex; + margin:12rpx 0 50rpx 0; +} +.page-container .kv-item .key{ + font-size: 30rpx; +} +.page-container .kv-item .value{ + font-weight: 500; +} +.page-container .kv-item .yellow{ + color: #FF8400; +} +.page-container .kv-item .red{ + color: #EB0000; +} +.page-container .kv-item .key{ + flex:1 +} + +.page-container .tips{ + font-size: 26rpx; + color: #888888 +} \ No newline at end of file diff --git a/pages/index/index.wxml b/pages/index/index.wxml index 0721ba0..5116494 100644 --- a/pages/index/index.wxml +++ b/pages/index/index.wxml @@ -7,7 +7,7 @@ - 昵称 + 昵称1 @@ -24,4 +24,10 @@ {{motto}} + + + 123 + 123 + 123 + diff --git a/pages/login/login.js b/pages/login/login.js new file mode 100644 index 0000000..fcdc2fa --- /dev/null +++ b/pages/login/login.js @@ -0,0 +1,28 @@ +Page({ + data: { + isAgree: false + }, + + handleAgreeChange(e) { + this.setData({ + isAgree: e.detail.value.length > 0 + }) + }, + + handleLogin() { + if (!this.data.isAgree) { + wx.showToast({ + title: '请先同意用户协议和隐私政策', + icon: 'none' + }) + return + } + + wx.login({ + success: (res) => { + // 实现登录逻辑 + console.log('登录成功', res) + } + }) + } +}) \ No newline at end of file diff --git a/pages/login/login.json b/pages/login/login.json new file mode 100644 index 0000000..e97850b --- /dev/null +++ b/pages/login/login.json @@ -0,0 +1,4 @@ +{ + "navigationStyle": "custom", + "backgroundColor": "#4555FF" +} \ No newline at end of file diff --git a/pages/login/login.wxml b/pages/login/login.wxml new file mode 100644 index 0000000..0d3b1a8 --- /dev/null +++ b/pages/login/login.wxml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + 闪兔到家 + 一刻钟便民生活圈 + + + + + + + + + 我已阅读并同意 + 《用户协议》 + + 《隐私政策》 + + + + + + + \ No newline at end of file diff --git a/pages/login/login.wxss b/pages/login/login.wxss new file mode 100644 index 0000000..426baaa --- /dev/null +++ b/pages/login/login.wxss @@ -0,0 +1,106 @@ +.login-container { + min-height: 100vh; + background-color: #4555FF; + padding: 0 40rpx; + position: relative; +} + +.nav-area { + display: flex; + justify-content: space-between; + align-items: center; + padding-top: 120rpx; +} + +.home-icon, +.more-icon { + width: 80rpx; + height: 80rpx; + background: rgba(255, 255, 255, 0.2); + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; +} + +.home-icon image, +.more-icon image { + width: 36rpx; + height: 36rpx; +} + +.title-area { + margin-top: 120rpx; + color: #fff; +} + +.main-title { + font-size: 72rpx; + font-weight: bold; + margin-bottom: 24rpx; + letter-spacing: 4rpx; +} + +.sub-title { + font-size: 36rpx; + opacity: 0.9; +} + +.login-area { + position: fixed; + left: 40rpx; + right: 40rpx; + bottom: 80rpx; +} + +.agreement { + color: #fff; + font-size: 26rpx; + margin-bottom: 40rpx; + display: flex; + align-items: center; +} + +.agreement checkbox-group { + display: flex; + align-items: center; +} + +.agreement .link { + color: #fff; + text-decoration: underline; + padding: 0 4rpx; +} + +.login-btn { + background: linear-gradient(90deg, #0BBFF5 0%, #4285FF 100%); + color: #fff; + font-size: 32rpx; + font-weight: 500; + border-radius: 45rpx; + height: 100rpx; + line-height: 100rpx; + box-shadow: 0 8rpx 20rpx rgba(66, 133, 255, 0.3); +} + +.login-btn::after { + border: none; +} + +checkbox .wx-checkbox-input { + width: 32rpx; + height: 32rpx; + border-radius: 50%; + border-color: rgba(255, 255, 255, 0.8); + margin-right: 12rpx; +} + +checkbox .wx-checkbox-input.wx-checkbox-input-checked { + background-color: #fff; + border-color: #fff; +} + +checkbox .wx-checkbox-input.wx-checkbox-input-checked::before { + color: #4555FF; + font-size: 24rpx; +} \ No newline at end of file diff --git a/pages/my/index/index.js b/pages/my/index/index.js new file mode 100644 index 0000000..42280cb --- /dev/null +++ b/pages/my/index/index.js @@ -0,0 +1,66 @@ +// pages/my/index/index.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad(options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/pages/my/index/index.json b/pages/my/index/index.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/pages/my/index/index.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/pages/my/index/index.wxml b/pages/my/index/index.wxml new file mode 100644 index 0000000..556592c --- /dev/null +++ b/pages/my/index/index.wxml @@ -0,0 +1,2 @@ + +pages/my/index/index.wxml \ No newline at end of file diff --git a/pages/my/index/index.wxss b/pages/my/index/index.wxss new file mode 100644 index 0000000..ad74db5 --- /dev/null +++ b/pages/my/index/index.wxss @@ -0,0 +1 @@ +/* pages/my/index/index.wxss */ \ No newline at end of file diff --git a/pages/order/index/index.js b/pages/order/index/index.js new file mode 100644 index 0000000..c67a9aa --- /dev/null +++ b/pages/order/index/index.js @@ -0,0 +1,66 @@ +// pages/order/index/index.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad(options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/pages/order/index/index.json b/pages/order/index/index.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/pages/order/index/index.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/pages/order/index/index.wxml b/pages/order/index/index.wxml new file mode 100644 index 0000000..e1f0723 --- /dev/null +++ b/pages/order/index/index.wxml @@ -0,0 +1,2 @@ + +pages/order/index/index.wxml \ No newline at end of file diff --git a/pages/order/index/index.wxss b/pages/order/index/index.wxss new file mode 100644 index 0000000..5c40035 --- /dev/null +++ b/pages/order/index/index.wxss @@ -0,0 +1 @@ +/* pages/order/index/index.wxss */ \ No newline at end of file diff --git a/pages/savemoney/index/index.js b/pages/savemoney/index/index.js new file mode 100644 index 0000000..07a0042 --- /dev/null +++ b/pages/savemoney/index/index.js @@ -0,0 +1,66 @@ +// pages/savemoney/index/index.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad(options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/pages/savemoney/index/index.json b/pages/savemoney/index/index.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/pages/savemoney/index/index.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/pages/savemoney/index/index.wxml b/pages/savemoney/index/index.wxml new file mode 100644 index 0000000..5f02ed8 --- /dev/null +++ b/pages/savemoney/index/index.wxml @@ -0,0 +1,2 @@ + +pages/savemoney/index/index.wxml \ No newline at end of file diff --git a/pages/savemoney/index/index.wxss b/pages/savemoney/index/index.wxss new file mode 100644 index 0000000..2088fc4 --- /dev/null +++ b/pages/savemoney/index/index.wxss @@ -0,0 +1 @@ +/* pages/savemoney/index/index.wxss */ \ No newline at end of file diff --git a/project.config.json b/project.config.json index 14cda0e..4e7d200 100644 --- a/project.config.json +++ b/project.config.json @@ -24,5 +24,5 @@ "tabIndent": "auto", "tabSize": 2 }, - "appid": "wxede5da1043505ae7" + "appid": "wx3cc5b7dcb28f2756" } \ No newline at end of file