-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·45 lines (39 loc) · 1.06 KB
/
index.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
let ApiManage = {};
ApiManage.install = (Vue, option) => {
const {api, path = false, capital = false} = option;
const firstPath = path ? '/' : ''
if (!api) {
throw new Error('请添加数据源');
}
const toUpper = (word) => {
return word.charAt(0).toUpperCase() + word.substr(1);
}
let ret = {};
const getByArray = (arr, path) => {
for (let i = 0, l = arr.length; i < l; i++) {
if (arr[i].length) {
ret[path.split('/')[0] + (capital ? toUpper(arr[i]) : arr[i])] = firstPath + path + '/' + arr[i];
} else {
getCycle(arr[i], path)
}
}
}
const getCycle = (obj, path = '') => {
for (let i in obj) {
if (obj[i] instanceof Array) {
getByArray(obj[i], path + '/' + i);
} else {
ret[path.split('/')[0] + (capital ? toUpper(i) : i)] = firstPath + path + '/' + i;
}
}
}
for (let i in api) {
if (api[i] instanceof Array) {
getByArray(api[i], i);
} else {
ret[i] = firstPath + api[i];
}
}
Vue.prototype.$api = ret;
};
export default ApiManage;