2021-06-07 17:22:07 +08:00
|
|
|
import { nextTick } from 'vue';
|
2022-01-12 16:00:31 +08:00
|
|
|
import * as svg from '@element-plus/icons-vue';
|
2021-06-07 17:22:07 +08:00
|
|
|
|
|
|
|
|
// 获取阿里字体图标
|
|
|
|
|
const getAlicdnIconfont = () => {
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
const styles: any = document.styleSheets;
|
|
|
|
|
let sheetsList = [];
|
|
|
|
|
let sheetsIconList = [];
|
|
|
|
|
for (let i = 0; i < styles.length; i++) {
|
|
|
|
|
if (styles[i].href && styles[i].href.indexOf('at.alicdn.com') > -1) {
|
|
|
|
|
sheetsList.push(styles[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for (let i = 0; i < sheetsList.length; i++) {
|
|
|
|
|
for (let j = 0; j < sheetsList[i].cssRules.length; j++) {
|
|
|
|
|
if (sheetsList[i].cssRules[j].selectorText && sheetsList[i].cssRules[j].selectorText.indexOf('.icon-') > -1) {
|
|
|
|
|
sheetsIconList.push(
|
|
|
|
|
`${sheetsList[i].cssRules[j].selectorText.substring(1, sheetsList[i].cssRules[j].selectorText.length).replace(/\:\:before/gi, '')}`
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (sheetsIconList.length > 0) resolve(sheetsIconList);
|
|
|
|
|
else reject('未获取到值,请刷新重试');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 初始化获取 css 样式,获取 element plus 自带图标
|
|
|
|
|
const elementPlusIconfont = () => {
|
|
|
|
|
return new Promise((resolve, reject) => {
|
2022-01-12 16:00:31 +08:00
|
|
|
nextTick(() => {
|
|
|
|
|
const icons = svg as any;
|
|
|
|
|
const sheetsIconList = [];
|
|
|
|
|
for (const i in icons) {
|
|
|
|
|
sheetsIconList.push(`${icons[i].name}`);
|
|
|
|
|
}
|
|
|
|
|
if (sheetsIconList.length > 0) resolve(sheetsIconList);
|
|
|
|
|
else reject('未获取到值,请刷新重试');
|
|
|
|
|
});
|
|
|
|
|
});
|
2021-06-07 17:22:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 初始化获取 css 样式,这里使用 fontawesome 的图标
|
|
|
|
|
const awesomeIconfont = () => {
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
const styles: any = document.styleSheets;
|
|
|
|
|
let sheetsList = [];
|
|
|
|
|
let sheetsIconList = [];
|
|
|
|
|
for (let i = 0; i < styles.length; i++) {
|
|
|
|
|
if (styles[i].href && styles[i].href.indexOf('netdna.bootstrapcdn.com') > -1) {
|
|
|
|
|
sheetsList.push(styles[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
for (let i = 0; i < sheetsList.length; i++) {
|
|
|
|
|
for (let j = 0; j < sheetsList[i].cssRules.length; j++) {
|
|
|
|
|
if (
|
|
|
|
|
sheetsList[i].cssRules[j].selectorText &&
|
|
|
|
|
sheetsList[i].cssRules[j].selectorText.indexOf('.fa-') === 0 &&
|
|
|
|
|
sheetsList[i].cssRules[j].selectorText.indexOf(',') === -1
|
|
|
|
|
) {
|
|
|
|
|
sheetsIconList.push(
|
|
|
|
|
`${sheetsList[i].cssRules[j].selectorText.substring(1, sheetsList[i].cssRules[j].selectorText.length).replace(/\:\:before/gi, '')}`
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (sheetsIconList.length > 0) resolve(sheetsIconList);
|
|
|
|
|
else reject('未获取到值,请刷新重试');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 定义导出方法集合
|
|
|
|
|
const initIconfont = {
|
|
|
|
|
// ali: () => {
|
|
|
|
|
// return getAlicdnIconfont();
|
|
|
|
|
// },
|
|
|
|
|
ele: () => {
|
|
|
|
|
return elementPlusIconfont();
|
|
|
|
|
},
|
|
|
|
|
// awe: () => {
|
|
|
|
|
// return awesomeIconfont();
|
|
|
|
|
// },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 导出方法
|
|
|
|
|
export default initIconfont;
|