1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- //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,
- })
- },
- getValueByKey(key = '', data = []){
- if(!data.length) return {}
- return data.filter(val => val.card_type === key)[0] || {}
- },
- })
|