From e238f2bf2d4a8c3b6fc052228deb30c0619d85aa Mon Sep 17 00:00:00 2001
From: zhangzengfei <zhangzengfei@smartai.com>
Date: 星期五, 19 十一月 2021 11:46:51 +0800
Subject: [PATCH] rename project

---
 src/utils/vab.js |  160 ++++++++++++++++++++++++++--------------------------
 1 files changed, 80 insertions(+), 80 deletions(-)

diff --git a/src/utils/vab.js b/src/utils/vab.js
index e594e9a..205dad7 100644
--- a/src/utils/vab.js
+++ b/src/utils/vab.js
@@ -1,74 +1,74 @@
-import { loadingText, messageDuration, title } from '@/config'
-import * as lodash from 'lodash'
-import { Loading, Message, MessageBox, Notification } from 'element-ui'
-import store from '@/store'
-import { getAccessToken } from '@/utils/accessToken'
+import { loadingText, messageDuration, title } from "@/config";
+import * as lodash from "lodash";
+import { Loading, Message, MessageBox, Notification } from "element-ui";
+import store from "@/store";
+import { getAccessToken } from "@/utils/accessToken";
 
-const accessToken = store.getters['user/accessToken']
-const layout = store.getters['settings/layout']
+const accessToken = store.getters["user/accessToken"];
+const layout = store.getters["settings/layout"];
 
 const install = (Vue, opts = {}) => {
   /* 鍏ㄥ眬accessToken */
   Vue.prototype.$baseAccessToken = () => {
-    return accessToken || getAccessToken()
-  }
+    return accessToken || getAccessToken();
+  };
   /* 鍏ㄥ眬鏍囬 */
   Vue.prototype.$baseTitle = (() => {
-    return title
-  })()
+    return title;
+  })();
   /* 鍏ㄥ眬鍔犺浇灞� */
   Vue.prototype.$baseLoading = (index, text) => {
-    let loading
+    let loading;
     if (!index) {
       loading = Loading.service({
         lock: true,
         text: text || loadingText,
-        background: 'hsla(0,0%,100%,.8)',
-      })
+        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)',
-      })
+        spinner: "vab-loading-type" + index,
+        background: "hsla(0,0%,100%,.8)",
+      });
     }
-    return loading
-  }
+    return loading;
+  };
   /* 鍏ㄥ眬澶氬僵鍔犺浇灞� */
   Vue.prototype.$baseColorfullLoading = (index, text) => {
-    let loading
+    let loading;
     if (!index) {
       loading = Loading.service({
         lock: true,
         text: text || loadingText,
-        spinner: 'dots-loader',
-        background: 'hsla(0,0%,100%,.8)',
-      })
+        spinner: "dots-loader",
+        background: "hsla(0,0%,100%,.8)",
+      });
     } else {
       switch (index) {
         case 1:
-          index = 'dots'
-          break
+          index = "dots";
+          break;
         case 2:
-          index = 'gauge'
-          break
+          index = "gauge";
+          break;
         case 3:
-          index = 'inner-circles'
-          break
+          index = "inner-circles";
+          break;
         case 4:
-          index = 'plus'
-          break
+          index = "plus";
+          break;
       }
       loading = Loading.service({
         lock: true,
         text: text || loadingText,
-        spinner: index + '-loader',
-        background: 'hsla(0,0%,100%,.8)',
-      })
+        spinner: index + "-loader",
+        background: "hsla(0,0%,100%,.8)",
+      });
     }
-    return loading
-  }
+    return loading;
+  };
   /* 鍏ㄥ眬Message */
   Vue.prototype.$baseMessage = (message, type) => {
     Message({
@@ -78,103 +78,103 @@
       type: type,
       dangerouslyUseHTMLString: true,
       duration: messageDuration,
-    })
-  }
+    });
+  };
 
   /* 鍏ㄥ眬Alert */
   Vue.prototype.$baseAlert = (content, title, callback) => {
-    MessageBox.alert(content, title || '娓╅Θ鎻愮ず', {
-      confirmButtonText: '纭畾',
+    MessageBox.alert(content, title || "娓╅Θ鎻愮ず", {
+      confirmButtonText: "纭畾",
       dangerouslyUseHTMLString: true,
       callback: (action) => {
         if (callback) {
-          callback()
+          callback();
         }
       },
-    })
-  }
+    });
+  };
 
   /* 鍏ㄥ眬Confirm */
   Vue.prototype.$baseConfirm = (content, title, callback1, callback2) => {
-    MessageBox.confirm(content, title || '娓╅Θ鎻愮ず', {
-      confirmButtonText: '纭畾',
-      cancelButtonText: '鍙栨秷',
+    MessageBox.confirm(content, title || "娓╅Θ鎻愮ず", {
+      confirmButtonText: "纭畾",
+      cancelButtonText: "鍙栨秷",
       closeOnClickModal: false,
-      type: 'warning',
+      type: "warning",
     })
       .then(() => {
         if (callback1) {
-          callback1()
+          callback1();
         }
       })
       .catch(() => {
         if (callback2) {
-          callback2()
+          callback2();
         }
-      })
-  }
+      });
+  };
 
   /* 鍏ㄥ眬Notification */
   Vue.prototype.$baseNotify = (message, title, type, position) => {
     Notification({
       title: title,
       message: message,
-      position: position || 'top-right',
-      type: type || 'success',
+      position: position || "top-right",
+      type: type || "success",
       duration: messageDuration,
-    })
-  }
+    });
+  };
 
   /* 鍏ㄥ眬TableHeight */
   Vue.prototype.$baseTableHeight = (formType) => {
-    let height = window.innerHeight
-    let paddingHeight = 400
-    const formHeight = 50
+    let height = window.innerHeight;
+    let paddingHeight = 400;
+    const formHeight = 50;
 
-    if (layout === 'vertical') {
-      paddingHeight = 365
+    if (layout === "vertical") {
+      paddingHeight = 365;
     }
 
-    if ('number' == typeof formType) {
-      height = height - paddingHeight - formHeight * formType
+    if ("number" == typeof formType) {
+      height = height - paddingHeight - formHeight * formType;
     } else {
-      height = height - paddingHeight
+      height = height - paddingHeight;
     }
-    return height
-  }
+    return height;
+  };
 
   /* 鍏ㄥ眬map鍥惧眰 */
   Vue.prototype.$baseMap = () => {
-    return new maptalks.Map('map', {
+    return new maptalks.Map("map", {
       center: [116.41348403785, 39.910843952376],
       zoom: 12,
       minZoom: 1,
       maxZoom: 19,
       spatialReference: {
-        projection: 'baidu',
+        projection: "baidu",
       },
       attribution: {
-        content: '&copy; vue-admin-beautiful',
+        content: "",
       },
-      baseLayer: new maptalks.TileLayer('base', {
-        cssFilter: 'sepia(100%) invert(90%)',
+      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',
+          "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:
           '&copy; <a target="_blank" href="http://map.baidu.com">Baidu</a>',
       }),
-    })
-  }
+    });
+  };
 
   /* 鍏ㄥ眬lodash */
-  Vue.prototype.$baseLodash = lodash
+  Vue.prototype.$baseLodash = lodash;
   /* 鍏ㄥ眬浜嬩欢鎬荤嚎 */
-  Vue.prototype.$baseEventBus = new Vue()
+  Vue.prototype.$baseEventBus = new Vue();
+};
+
+if (typeof window !== "undefined" && window.Vue) {
+  install(window.Vue);
 }
 
-if (typeof window !== 'undefined' && window.Vue) {
-  install(window.Vue)
-}
-
-export default install
+export default install;

--
Gitblit v1.8.0