Skip to content

Commit

Permalink
更新交流群信息
Browse files Browse the repository at this point in the history
  • Loading branch information
woniudiancang committed Dec 27, 2020
2 parents ab896e3 + c63acc5 commit e5860bd
Show file tree
Hide file tree
Showing 80 changed files with 3,281 additions and 2,142 deletions.
254 changes: 127 additions & 127 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ App({
wx.hideToast()
}
})
WXAPI.queryConfigBatch('mallName,myBg,mapPos,order_hx_uids,subscribe_ids,share_profile,zxdz').then(res => {
WXAPI.queryConfigBatch('mallName,myBg,mapPos,order_hx_uids,subscribe_ids,share_profile,zxdz,admin_uids').then(res => {
if (res.code == 0) {
res.data.forEach(config => {
wx.setStorageSync(config.key, config.value);
Expand Down Expand Up @@ -101,7 +101,7 @@ App({
}
}
// 自动登录
AUTH.checkHasLogined().then(async isLogined => {
AUTH.checkHasLogined().then(isLogined => {
if (!isLogined) {
AUTH.login()
}
Expand Down
186 changes: 99 additions & 87 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,88 +1,100 @@
{
"pages": [
"pages/index/index",
"pages/all-orders/index",
"pages/my/index",
"pages/ad/index",
"pages/pay/index",
"pages/shop/select",
"pages/shop/detail",
"pages/youhui-pay/index",
"pages/member-center/index",
"pages/order-details/index",
"pages/order-details/scan-result",
"pages/order-details/doing",
"pages/about/index",
"pages/coupons/index",
"pages/booking/index",
"pages/asset/index",
"pages/asset/recharge-log",
"pages/asset/cash-log",
"pages/sign/index",
"pages/score/logs",
"pages/notice/detail"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#6e6d6b",
"selectedColor": "#e64340",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/nav/index-off.png",
"selectedIconPath": "images/nav/index-on.png",
"text": "点餐"
},
{
"pagePath": "pages/order-details/doing",
"iconPath": "images/nav/qc-off.png",
"selectedIconPath": "images/nav/qc-on.png",
"text": "取餐"
},
{
"pagePath": "pages/my/index",
"iconPath": "images/nav/my-off.png",
"selectedIconPath": "images/nav/my-on.png",
"text": "我的"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "获取离你最近的门店"
}
},
"usingComponents": {
"parser":"/components/parser.20200731.min/parser",
"van-button": "@vant/weapp/button/index",
"van-sidebar": "@vant/weapp/sidebar/index",
"van-sidebar-item": "@vant/weapp/sidebar-item/index",
"van-swipe-cell": "@vant/weapp/swipe-cell/index",
"van-card": "@vant/weapp/card/index",
"van-submit-bar": "@vant/weapp/submit-bar/index",
"van-popup": "@vant/weapp/popup/index",
"van-stepper": "@vant/weapp/stepper/index",
"van-row": "@vant/weapp/row/index",
"van-col": "@vant/weapp/col/index",
"van-divider": "@vant/weapp/divider/index",
"van-icon": "@vant/weapp/icon/index",
"van-empty": "@vant/weapp/empty/index",
"van-field": "@vant/weapp/field/index",
"van-cell": "@vant/weapp/cell/index",
"van-cell-group": "@vant/weapp/cell-group/index",
"van-dialog": "@vant/weapp/dialog/index",
"van-overlay": "@vant/weapp/overlay/index",
"van-tab": "@vant/weapp/tab/index",
"van-tabs": "@vant/weapp/tabs/index",
"van-datetime-picker": "@vant/weapp/datetime-picker/index",
"van-calendar": "@vant/weapp/calendar/index",
"van-notice-bar": "@vant/weapp/notice-bar/index"
},
"sitemapLocation": "sitemap.json"
{
"pages": [
"pages/index/index",
"pages/all-orders/index",
"pages/my/index",
"pages/ad/index",
"pages/pay/index",
"pages/shop/select",
"pages/shop/detail",
"pages/youhui-pay/index",
"pages/member-center/index",
"pages/order-details/index",
"pages/order-details/scan-result",
"pages/order-details/doing",
"pages/about/index",
"pages/coupons/index",
"pages/booking/index",
"pages/asset/index",
"pages/asset/recharge-log",
"pages/asset/cash-log",
"pages/sign/index",
"pages/score/logs",
"pages/notice/detail",
"pages/queue/index",
"pages/cart/index",
"pages/cart/order"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#6e6d6b",
"selectedColor": "#e64340",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/nav/index-off.png",
"selectedIconPath": "images/nav/index-on.png",
"text": "点餐"
},
{
"pagePath": "pages/queue/index",
"iconPath": "images/nav/qh-off.png",
"selectedIconPath": "images/nav/qh-on.png",
"text": "取号"
},
{
"pagePath": "pages/order-details/doing",
"iconPath": "images/nav/qc-off.png",
"selectedIconPath": "images/nav/qc-on.png",
"text": "取餐"
},
{
"pagePath": "pages/my/index",
"iconPath": "images/nav/my-off.png",
"selectedIconPath": "images/nav/my-on.png",
"text": "我的"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "获取离你最近的门店"
}
},
"usingComponents": {
"parser":"/components/parser.20200731.min/parser",
"van-button": "@vant/weapp/button/index",
"van-sidebar": "@vant/weapp/sidebar/index",
"van-sidebar-item": "@vant/weapp/sidebar-item/index",
"van-swipe-cell": "@vant/weapp/swipe-cell/index",
"van-card": "@vant/weapp/card/index",
"van-submit-bar": "@vant/weapp/submit-bar/index",
"van-popup": "@vant/weapp/popup/index",
"van-stepper": "@vant/weapp/stepper/index",
"van-row": "@vant/weapp/row/index",
"van-col": "@vant/weapp/col/index",
"van-divider": "@vant/weapp/divider/index",
"van-icon": "@vant/weapp/icon/index",
"van-empty": "@vant/weapp/empty/index",
"van-field": "@vant/weapp/field/index",
"van-cell": "@vant/weapp/cell/index",
"van-cell-group": "@vant/weapp/cell-group/index",
"van-dialog": "@vant/weapp/dialog/index",
"van-overlay": "@vant/weapp/overlay/index",
"van-tab": "@vant/weapp/tab/index",
"van-tabs": "@vant/weapp/tabs/index",
"van-datetime-picker": "@vant/weapp/datetime-picker/index",
"van-calendar": "@vant/weapp/calendar/index",
"van-notice-bar": "@vant/weapp/notice-bar/index",
"van-tabbar": "@vant/weapp/tabbar/index",
"van-tabbar-item": "@vant/weapp/tabbar-item/index",
"van-tag": "@vant/weapp/tag/index"
},
"sitemapLocation": "sitemap.json"
}
2 changes: 1 addition & 1 deletion components/parser.20200731.min/libs/MpHtmlParser.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e5860bd

Please sign in to comment.