index.js
2.35 KB
1
2
3
4
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* 全局公有方法
*/
/**
* 请不要把原有 yohobuy 项目的代码复制过来!
* 请不要把原有 yohobuy 项目的代码复制过来!
* 请不要把原有 yohobuy 项目的代码复制过来!
*
* 所有与业务无关,复用多的代码尽量模块化
* 除非万不得已,不要声明全局变量
* 这一块的代码很少
*
* 1. cookie 操作请使用 yoho-cookie 文档:https://github.com/florian/cookie.js
* 1. localStorage 操作请使用 yoho-store 文档:https://github.com/marcuswestin/store.js
* 2. 查询字符串读取 请使用 yoho-qs
*/
import $ from 'jquery';
import yoho from 'yoho';
import Vue from 'vue';
import util from 'common/util';
import interceptClick from 'common/intercept-click';
import bus from 'common/vue-bus';
import FastClick from 'fastclick';
import directive from 'common/vue-directive';
import filter from 'common/vue-filter';
import VueTouch from 'vue-touch';
import yas from 'common/yas';
/**
* iOS 7 不支持 Promise, vue-lazyload 有用到,所以全局申明
*/
global.Promise = Promise;
FastClick.attach(document.body);
// 隐藏 App 默认显示的 loading
Vue.mixin({
mounted() {
if (this === this.$root && location.pathname !== '/sidebar') {
yoho.showLoading(false);
util.visibilitychange();
}
},
created() {
this.$yas = yas();
}
});
directive(Vue);
filter(Vue);
Vue.use(VueTouch);
Vue.prototype.$isApp = yoho.isApp;
Vue.prototype.$isiOS = yoho.isiOS;
Vue.prototype.$isAndroid = yoho.isAndroid;
Vue.prototype.$isYohoBuy = yoho.isYohoBuy;
$(() => {
const $body = $('body');
// 页面内无 JS 时, 自动隐藏 App 显示的 Loading
if ($body.hasClass('no-local-js')) {
yoho.showLoading(false); // 隐藏 App 默认显示的 loading
util.visibilitychange();
}
// 拦截页面内所有 a 标签的跳转
$body.on('click', 'a[href]', function() {
if (!$(this).hasClass('no-intercept')) {
let href = $(this).attr('href');
if (/^\/\//.test(href)) {
href = 'http:' + href;
}
interceptClick.intercept(href);
return false;
}
});
// App 发送给 H5 的事件,统一转为 Vue-bus 的事件
yoho.addNativeMethod('triggerH5Event', (eventName) => {
bus.$emit(eventName);
});
});
util.getChannel();