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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
import { loadingText, messageDuration, title } from "@/config/settings"
import * as lodash from "lodash"
import { Loading, Message, MessageBox, Notification } from "element-ui"
import store from "@/store"
import { getAccessToken } from "@/utils/accessToken"
import Handle from "./index"
const accessToken = store.getters["user/accessToken"]
const layout = store.getters["settings/layout"]
const install = (Vue, opts = {}) => {
/* 全局accessToken */
Vue.prototype.$baseAccessToken = () => {
return accessToken || getAccessToken()
}
/* 全局标题 */
Vue.prototype.$baseTitle = (() => {
return title
})()
/* 全局加载层 */
Vue.prototype.$baseLoading = (index, text, callback) => {
let loading
if (!index) {
loading = Loading.service({
lock: true,
text: text || loadingText,
background: "hsla(0,0%,100%,.8)",
})
} else {
loading = Loading.service({
lock: true,
text: text || loadingText,
spinner: "vab-loading-type" + index,
background: "hsla(0,0%,100%,.8)",
})
}
if (callback) {
callback(loading)
} else {
setTimeout(() => {
loading.close()
}, messageDuration)
}
}
/* 全局多彩加载层 */
Vue.prototype.$baseColorfullLoading = (index, text, callback) => {
let loading
if (!index) {
loading = Loading.service({
lock: true,
text: text || loadingText,
spinner: "dots-loader",
background: "hsla(0,0%,100%,.8)",
})
} else {
switch (index) {
case 1:
index = "dots"
break
case 2:
index = "gauge"
break
case 3:
index = "inner-circles"
break
case 4:
index = "plus"
break
}
loading = Loading.service({
lock: true,
text: text || loadingText,
spinner: index + "-loader",
background: "hsla(0,0%,100%,.8)",
})
}
if (callback) {
callback(loading)
} else {
setTimeout(() => {
loading.close()
}, messageDuration)
}
}
/* 全局Message */
Vue.prototype.$baseMessage = (message, type) => {
Message({
offset: 60,
showClose: true,
message: message,
type: type,
dangerouslyUseHTMLString: true,
duration: messageDuration,
})
}
/* 全局Alert */
Vue.prototype.$baseAlert = (content, title, callback) => {
MessageBox.alert(content, title || "温馨提示", {
confirmButtonText: "确定",
dangerouslyUseHTMLString: true,
callback: (action) => {
if (callback) {
callback()
}
},
})
}
/* 全局Confirm */
Vue.prototype.$baseConfirm = (content, title, callback1, callback2) => {
MessageBox.confirm(content, title || "温馨提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
closeOnClickModal: false,
type: "warning",
})
.then(() => {
if (callback1) {
callback1()
}
})
.catch(() => {
if (callback2) {
callback2()
}
})
}
/* 全局Notification */
Vue.prototype.$baseNotify = (message, title, type, position) => {
Notification({
title: title,
message: message,
position: position || "top-right",
type: type || "success",
duration: messageDuration,
})
}
/* 全局TableHeight */
Vue.prototype.$baseTableHeight = (formType) => {
let height = window.innerHeight
let paddingHeight = 400
const formHeight = 50
if (layout === "vertical") {
paddingHeight = 340
}
if ("number" == typeof formType) {
height = height - paddingHeight - formHeight * formType
} else {
height = height - paddingHeight
}
return height
}
/* 全局map图层 */
// Vue.prototype.$baseMap = () => {
// return new maptalks.Map("map", {
// center: [116.41348403785, 39.910843952376],
// zoom: 12,
// minZoom: 1,
// maxZoom: 19,
// spatialReference: {
// projection: "baidu",
// },
// attribution: {
// content: "© vue-admin-beautiful",
// },
// baseLayer: new maptalks.TileLayer("base", {
// cssFilter: "sepia(100%) invert(90%)",
// urlTemplate:
// "http://online{s}.map.bdimg.com/onlinelabel/?qt=tile&x={x}&y={y}&z={z}&styles=pl&scaler=1&p=1",
// subdomains: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
// attribution:
// '© <a target="_blank" href="http://map.baidu.com">Baidu</a>',
// }),
// });
// };
/* 全局lodash */
Vue.prototype.$baseLodash = lodash
/* 全局事件总线 */
Vue.prototype.$baseEventBus = new Vue()
// utils methods
Vue.prototype.$handle = Handle
Vue.prototype.deepClone = lodash.cloneDeep
}
if (typeof window !== "undefined" && window.Vue) {
install(window.Vue)
}
export default install