'admin-21.05.16:优化iframe、更新最新依赖、规范工具类命名'

This commit is contained in:
lyt-Top
2021-05-16 17:02:53 +08:00
parent be9df6766e
commit fc696e6d94
6 changed files with 17 additions and 11 deletions

View File

@ -5,7 +5,7 @@ export function wavesDirective(app: App) {
app.directive('waves', {
mounted(el, binding) {
el.classList.add('waves-effect');
binding.value && el.classList.add('waves-' + binding.value);
binding.value && el.classList.add(`waves-${binding.value}`);
function setConvertStyle(obj: any) {
let style: string = '';
for (let i in obj) {

View File

@ -28,7 +28,7 @@ const getAlicdnIconfont = () => {
};
// 初始化获取 css 样式,获取 element plus 自带图标
const elementPlusIconfont = () => {
const getElementPlusIconfont = () => {
return new Promise((resolve, reject) => {
nextTick(() => {
const styles: any = document.styleSheets;
@ -49,7 +49,7 @@ const elementPlusIconfont = () => {
};
// 初始化获取 css 样式,这里使用 fontawesome 的图标
const awesomeIconfont = () => {
const getAwesomeIconfont = () => {
return new Promise((resolve, reject) => {
nextTick(() => {
const styles: any = document.styleSheets;
@ -81,14 +81,17 @@ const awesomeIconfont = () => {
// 定义导出方法集合
const initIconfont = {
// iconfont
ali: () => {
return getAlicdnIconfont();
},
// element plus
ele: () => {
return elementPlusIconfont();
return getElementPlusIconfont();
},
// fontawesome
awe: () => {
return awesomeIconfont();
return getAwesomeIconfont();
},
};

View File

@ -59,4 +59,5 @@ service.interceptors.response.use(
}
);
// 导出 axios 实例
export default service;

View File

@ -19,13 +19,14 @@ const setWatermark = (str: any) => {
div.style.left = '0px';
div.style.position = 'fixed';
div.style.zIndex = '10000000';
div.style.width = document.documentElement.clientWidth + 'px';
div.style.height = document.documentElement.clientHeight + 'px';
div.style.width = `${document.documentElement.clientWidth}px`;
div.style.height = `${document.documentElement.clientHeight}px`;
div.style.background = `url(${can.toDataURL('image/png')}) left top repeat`;
document.body.appendChild(div);
return id;
};
// 定义导出方法集合
const watermark = {
// 设置水印
set: (str: any) => {
@ -39,4 +40,5 @@ const watermark = {
},
};
// 导出方法
export default watermark;