util.js 1.05 KB
Newer Older
王建威's avatar
王建威 committed
1 2 3 4
import { php } from './host.js';

export function login() {
	location.href = php + 'app=member&act=login';
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
}

export function getNavigationBarTitle() {  
    let page = getCurrentPages();  
    if (page && page[0]) {  
        let view = page[0].$holder;
        if (view) {  
            // h5  
            return view.navigationBar.titleText;  
        } else {  
            // app-plus  
            try {  
                view = page.$getAppWebview();  
                if (view) {   
                    const style = view.getStyle()  
                    if (style && style.titleNView) {  
                        return style.titleNView.titleText;  
                    }  
                }  
            } catch (e) {  
                if (process.env.NODE_ENV !== 'production') {  
                    console.log('getCurrentPages is not ready')  
                }  
            }  
        }  
    }  
    return undefined;  
郑秀明's avatar
郑秀明 committed
32 33 34 35 36 37 38 39
}

export function isWeixin(){
	if (/MicroMessenger/.test(window.navigator.userAgent)) {
		return true;
	} else {
		return false;
	}
王建威's avatar
王建威 committed
40
}