12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- //app.js
- import WxAuthor from './utils/WxAuthor'
- App({
- onLaunch: function() {
- let self = this;
- // 登录
- new WxAuthor(self)
- const dirs = ['addAddress','address','myhome','confirmOrder','confirmVOrder',
- 'order_tabs','orderPaySn','person','postageDetail','postageManage','shopCart'];
- let pages = new Set()
- dirs.forEach(dir => {
- let page = `/pages/${dir}/${dir}`
- pages.add(page)
- });
- this.globalData.authPages = pages
- },
- globalData: {
- userId: {
- openid: '',
- unionid: ''
- },
- userInfo: null,
- defaultAddress: null,
- fcodeErr: '',
- backLogin: false,
- arrayTree: [],
- fromSource: '',
- channel: '欧耶商城',
- record: null,
- card_type: '',
- authPages: null
- },
- setFromSource(fromSource) {
- this.globalData.fromSource = fromSource
- },
- checkDefaultAddress(address) {
- this.globalData.defaultAddress = address
- },
- clearAddress() {
- this.globalData.defaultAddress = null
- },
- setArrayTree(tree) {
- this.globalData.arrayTree = tree
- },
- setCardType(card_type) {
- this.globalData.card_type = card_type
- },
- showToast(title, icon, duration){
- wx.showToast({
- icon: icon || 'none',
- title,
- duration: 2000 || duration
- })
- },
- trim(str) {
- str = str.replace(/\s+/g, "")
- return str
- },
- checkCurrentRecord(record) {
- this.globalData.record = record
- },
- clearRecord() {
- this.globalData.record = null
- },
- navigateto(page)
- {
- this.globalData.authPages.forEach(prefix => {
- if(page.indexOf(prefix) == 0) {
- if(!this.globalData.userInfo) {
- wx.navigateTo({
- url: '/pages/auth/auth',
- })
- return;
- }
- }
- });
-
- wx.navigateTo({
- url: page,
- })
- }
- })
|