diff --git a/app.json b/app.json index c890e04..91277fc 100644 --- a/app.json +++ b/app.json @@ -9,7 +9,8 @@ "pages/look-list/look-list", "pages/look-detail/look-detail", "pages/history/history", - "pages/air-report/air-report" + "pages/air-report/air-report", + "pages/auth/auth" ], "permission": { "scope.userLocation": { diff --git a/pages/auth/auth.js b/pages/auth/auth.js new file mode 100644 index 0000000..c1ab869 --- /dev/null +++ b/pages/auth/auth.js @@ -0,0 +1,66 @@ +// pages/auth/auth.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + + } +}) \ No newline at end of file diff --git a/pages/auth/auth.json b/pages/auth/auth.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/pages/auth/auth.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/pages/auth/auth.wxml b/pages/auth/auth.wxml new file mode 100644 index 0000000..145f96e --- /dev/null +++ b/pages/auth/auth.wxml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + 已阅读并同意 + 《法律条款及隐私政策》 + + + + + + 输入手机号码登录/注册 + + \ No newline at end of file diff --git a/pages/auth/auth.wxss b/pages/auth/auth.wxss new file mode 100644 index 0000000..2b5ed0b --- /dev/null +++ b/pages/auth/auth.wxss @@ -0,0 +1,19 @@ +/* pages/auth/auth.wxss */ +.main{ + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; + padding: 220rpx 0 40rpx 0; +} + +.top{ + display: flex; + flex-direction: column; + align-items: center; +} + +.log{ + width: 150rpx; + height: 150rpx; +} \ No newline at end of file diff --git a/pages/look-list/look-list.wxss b/pages/look-list/look-list.wxss index e41e4d9..58c64a0 100644 --- a/pages/look-list/look-list.wxss +++ b/pages/look-list/look-list.wxss @@ -23,6 +23,7 @@ display: flex; padding: 30rpx 30rpx 35rpx 30rpx; justify-content: space-between; + border: none; } .table-active .table-icon { @@ -33,6 +34,7 @@ font-size: 30rpx; font-weight: bold; color: #262936; + border: none; } .table-icon { diff --git a/project.private.config.json b/project.private.config.json index bcd477e..df8b087 100644 --- a/project.private.config.json +++ b/project.private.config.json @@ -65,6 +65,12 @@ "pathName": "pages/air-report/air-report", "query": "", "scene": null + }, + { + "name": "微信授权", + "pathName": "pages/auth/auth", + "query": "", + "scene": null } ] }