-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
61 lines (54 loc) · 1.37 KB
/
main.js
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
import Vue from 'vue'
import App from './App'
import * as utils from "./common/js/common";
import cuCustom from './colorui/components/cu-custom.vue'
import store from "./store";
import {
getQueueList,
setUser
} from './common/js/common.js'
Vue.component('cu-custom', cuCustom)
const tui = {
toast: function(text, duration, success) {
uni.showToast({
title: text,
icon: success ? "success" : "none",
duration: duration || 2000,
});
},
constNum: function() {
const res = uni.getSystemInfoSync();
return res.platform.toLocaleLowerCase() == "android" ? 300 : 0;
},
px: function(num) {
return uni.upx2px(num) + "px";
},
interfaceUrl: function() {
//接口地址
return "https://www.thorui.cn";
},
setToken: function(token) {
uni.setStorageSync("token", token);
},
getToken() {
return uni.getStorageSync("token");
},
isLogin: function() {
return uni.getStorageSync("token") ? true : false;
},
webURL: function() {
return "https://www.thorui.cn/wx";
},
};
Vue.prototype.tui = tui;
Vue.prototype.$store = store;
Vue.prototype.$utils = utils;
Vue.prototype.$getQueueList = getQueueList;
Vue.prototype.$setUser = setUser;
Vue.prototype.CustomBar = 0;
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()