main.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. import { createApp } from "vue";
  2. import App from "./App.vue";
  3. import router from "./router";
  4. import store from "./store";
  5. import "font-awesome/css/font-awesome.min.css";
  6. // 引入 element-ui
  7. import ElementPlus from "element-plus";
  8. import "element-plus/dist/index.css";
  9. // import "element-plus/lib/theme-chalk/index.css";
  10. import locale from "element-plus/lib/locale/lang/zh-cn";
  11. import * as ElementPlusIconsVue from "@element-plus/icons-vue";
  12. // // 引入环境配置
  13. // import "@modeConfig/modeConfig.js";
  14. import "@/lib/global-import.js";
  15. import "./permission";
  16. // 引入请求工具
  17. import axios from "@api/axios";
  18. // 引入基础工具
  19. import basicTool from "@tools/basicTool";
  20. import animated from "animate.css";
  21. import { ElMessage } from "element-plus";
  22. const app = createApp(App);
  23. const messageToast = () => {
  24. //作为eventListener时, 必须使用外部定义函数
  25. ElMessage.error("5秒内请勿重复点击");
  26. };
  27. /**阻止多次重复点击指令 延时暂定5秒 示例 v-prevdbclick:arg='func' */
  28. const funListener = (el, binding) => {
  29. let time = null;
  30. el.removeEventListener("click", messageToast);
  31. el.addEventListener(
  32. "click",
  33. () => {
  34. binding.value();
  35. el.addEventListener("click", messageToast, false);
  36. time = setTimeout(() => {
  37. clearTimeout(time);
  38. funListener(el, binding);
  39. }, Number(binding.arg) || 5000);
  40. },
  41. {
  42. once: true,
  43. }
  44. );
  45. };
  46. app.directive("prevdbclick", {
  47. mounted(el, binding) {
  48. funListener(el, binding);
  49. },
  50. });
  51. // const app = createApp(App);
  52. // /**阻止多次重复点击指令 延时暂定5秒 示例 v-prevdbclick:arg='func' */
  53. // const messageToast = () => {
  54. // //作为eventListener时, 必须使用外部定义函数
  55. // ElMessage.error("5秒内请勿重复点击");
  56. // };
  57. // const funListener = (el, binding) => {
  58. // let time = null;
  59. // el.removeEventListener("click", messageToast);
  60. // el.addEventListener(
  61. // "click",
  62. // () => {
  63. // binding.value();
  64. // el.addEventListener("click", messageToast, false);
  65. // time = setTimeout(() => {
  66. // clearTimeout(time);
  67. // funListener(el, binding);
  68. // }, Number(binding.arg) || 5000);
  69. // },
  70. // {
  71. // once: true,
  72. // }
  73. // );
  74. // };
  75. // app.directive("prevdbclick", {
  76. // mounted(el, binding) {
  77. // funListener(el, binding);
  78. // },
  79. // });
  80. /**
  81. * 对 Date 的扩展,将 Date 转化为指定格式的字符串
  82. * @param {String} fmt 传入一个字符串,根据所传字符串的格式返回转换后特定格式的日期。
  83. * 调用姿势:new Date().formatDate("yyyy-MM-dd hh:mm:ss");
  84. */
  85. Date.prototype.formatDate = function (fmt) {
  86. let o = {
  87. "M+": this.getMonth() + 1, //月份
  88. "d+": this.getDate(), //日
  89. "h+": this.getHours(), //小时
  90. "m+": this.getMinutes(), //分
  91. "s+": this.getSeconds(), //秒
  92. "q+": Math.floor((this.getMonth() + 3) / 3), //季度
  93. S: this.getMilliseconds(), //毫秒
  94. };
  95. if (/(y+)/.test(fmt)) {
  96. fmt = fmt.replace(
  97. RegExp.$1,
  98. (this.getFullYear() + "").substr(4 - RegExp.$1.length)
  99. );
  100. }
  101. for (let k in o) {
  102. if (new RegExp("(" + k + ")").test(fmt)) {
  103. fmt = fmt.replace(
  104. RegExp.$1,
  105. RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)
  106. );
  107. }
  108. }
  109. return fmt;
  110. };
  111. for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
  112. app.component(key, component);
  113. }
  114. window.__STATICVUE__ = app;
  115. window.__STATICVUE__.use(ElementPlus, { locale });
  116. // 全局修改默认配置,点击空白处不能关闭弹窗
  117. app._context.components.ElDialog["props"].closeOnClickModal.default = false;
  118. window.__STATICVUE__.use(store);
  119. window.__STATICVUE__.use(router);
  120. window.__STATICVUE__.use(animated);
  121. window.__STATICVUE__.config.globalProperties.API = axios; //全局注册
  122. window.__STATICVUE__.config.globalProperties.BASE = basicTool; //全局注册
  123. // window.__STATICVUE__.config.globalProperties.$Cesium = Cesium;
  124. window.__STATICVUE__.mount("#app");