Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
Siryuanshao | ea29a4c4ea | 6 years ago |
xuanqis | 4b59f2f9f9 | 6 years ago |
@ -1,2 +0,0 @@
|
|||||||
# Auto detect text files and perform LF normalization
|
|
||||||
* text=auto
|
|
@ -1,41 +0,0 @@
|
|||||||
//app.js
|
|
||||||
App({
|
|
||||||
onLaunch: function () {
|
|
||||||
// 展示本地存储能力
|
|
||||||
var logs = wx.getStorageSync('logs') || []
|
|
||||||
logs.unshift(Date.now())
|
|
||||||
wx.setStorageSync('logs', logs)
|
|
||||||
|
|
||||||
// 登录
|
|
||||||
wx.login({
|
|
||||||
success: res => {
|
|
||||||
// 发送 res.code 到后台换取 openId, sessionKey, unionId
|
|
||||||
}
|
|
||||||
})
|
|
||||||
// 获取用户信息
|
|
||||||
wx.getSetting({
|
|
||||||
success: res => {
|
|
||||||
if (res.authSetting['scope.userInfo']) {
|
|
||||||
// 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
|
|
||||||
wx.getUserInfo({
|
|
||||||
success: res => {
|
|
||||||
// 可以将 res 发送给后台解码出 unionId
|
|
||||||
this.globalData.userInfo = res.userInfo
|
|
||||||
|
|
||||||
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
|
|
||||||
// 所以此处加入 callback 以防止这种情况
|
|
||||||
if (this.userInfoReadyCallback) {
|
|
||||||
this.userInfoReadyCallback(res)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
globalData: {
|
|
||||||
userInfo: null,
|
|
||||||
font:[{font:'font-size:20rpx'},{font:'font-size:22rpx'},{font:'font-size:24rpx'},{font:'font-size:28rpx'},{font:'font-size:30rpx'},{font:'font-size:32rpx'}],
|
|
||||||
|
|
||||||
}
|
|
||||||
})
|
|
@ -1,24 +0,0 @@
|
|||||||
{
|
|
||||||
"pages":[
|
|
||||||
"pages/Index/index",
|
|
||||||
"pages/Sort/sort",
|
|
||||||
"pages/Shopping/shopping",
|
|
||||||
"pages/User/user",
|
|
||||||
"pages/userInfo/userInfo",
|
|
||||||
"pages/manageAddress/manageAddress",
|
|
||||||
"pages/newAddress/newAddress",
|
|
||||||
"pages/order/order",
|
|
||||||
"pages/commentOrder/commentOrder",
|
|
||||||
"pages/shoppingEmpty/shoppingEmpty",
|
|
||||||
"pages/confirmOrder/confirmOrder",
|
|
||||||
"pages/detail/detail",
|
|
||||||
"pages/about/about"
|
|
||||||
],
|
|
||||||
"window":{
|
|
||||||
"backgroundTextStyle":"light",
|
|
||||||
"navigationBarBackgroundColor": "#fff",
|
|
||||||
"navigationBarTitleText": "纯粹科技",
|
|
||||||
"navigationBarTextStyle":"black"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
/**app.wxss**/
|
|
||||||
.flexRowBetween{
|
|
||||||
display:flex;
|
|
||||||
flex-direction:row;
|
|
||||||
justify-content:space-between;
|
|
||||||
}
|
|
||||||
.flexRowBetween1{
|
|
||||||
display:flex;
|
|
||||||
flex-direction:row;
|
|
||||||
}
|
|
||||||
.flexColumnBetween{
|
|
||||||
flex-direction:column;
|
|
||||||
justify-content:space-between;
|
|
||||||
}
|
|
||||||
.avoidOverflow{
|
|
||||||
overflow-x:hidden;
|
|
||||||
text-overflow:ellipsis;
|
|
||||||
white-space:nowrap;
|
|
||||||
}
|
|
||||||
/***********提交按钮***********/
|
|
||||||
.submit_info{
|
|
||||||
margin:0rpx 25rpx;
|
|
||||||
width:700rpx;
|
|
||||||
height:88rpx;
|
|
||||||
line-height:88rpx;
|
|
||||||
text-align:center;
|
|
||||||
font-size:36rpx;
|
|
||||||
color:#fff;
|
|
||||||
background:linear-gradient(to right,rgba(72,222,223,1.00),rgba(42,154,225,1.00));
|
|
||||||
border-radius:10rpx;margin-top:260rpx;}
|
|
||||||
/***********navbar***********/
|
|
||||||
.navbar{
|
|
||||||
height:115rpx;
|
|
||||||
width:100%;
|
|
||||||
position:fixed;
|
|
||||||
bottom:0rpx;
|
|
||||||
z-index:999;
|
|
||||||
background:#fff;
|
|
||||||
display:flex;
|
|
||||||
justify-content:center;
|
|
||||||
border-top:solid 1px #dbdbdb;
|
|
||||||
align-items:center;
|
|
||||||
}
|
|
||||||
.navbar_item{
|
|
||||||
|
|
||||||
width:25%;
|
|
||||||
text-align:center;
|
|
||||||
|
|
||||||
}
|
|
||||||
.navbar .text{
|
|
||||||
color:#656565;
|
|
||||||
}
|
|
||||||
.navbar .this-text{
|
|
||||||
color:#21c3d4;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navigator-hover {
|
|
||||||
background:none;
|
|
||||||
color:#21c3d4;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.8 KiB |