From a1ff69f228b7a0d08959e6b25eff2dac6085df8d Mon Sep 17 00:00:00 2001
From: zhuzhuanzhuan
Date: 星期四, 21 九月 2023 17:59:23 +0800
Subject: [PATCH] 1、优化数据报表模块页面布局 2、修复因时间选择器的showTime属性导致的布局混乱 3、删除假期管理页面中重复的导出按钮组件

---
 src/main.js |   23 +++++++++++++++++++----
 1 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/src/main.js b/src/main.js
index 8bc9dcf..0f8047f 100644
--- a/src/main.js
+++ b/src/main.js
@@ -51,11 +51,23 @@
 import { rules } from '@/utils/rules'
 import * as echarts from 'echarts'
 import qs from 'qs'
-import VCalendar from 'v-calendar'; // 寮曞叆鏃ュ巻鎻掍欢
+// import VCalendar from 'v-calendar'; // 寮曞叆鏃ュ巻鎻掍欢
+//
+// Vue.use(VCalendar, {
+//   componentPrefix: 'vc',
+// });
 
-Vue.use(VCalendar, {
-  componentPrefix: 'vc',
-});
+//娉ㄥ叆鍏ㄥ眬灞炴��$message
+import {message,notification } from 'ant-design-vue'
+Vue.prototype.$message = message
+Vue.prototype.$notification = notification
+message.config({
+})
+notification.config({
+  bottom:'20px',
+  right:'100px'
+})
+
 
 // import 'echarts-liquidfill'
 Vue.prototype.$echarts = echarts
@@ -81,6 +93,9 @@
   new Vue({
     router,
     store,
+    beforeCreate() {
+      Vue.prototype.$bus = new Vue()
+    },
     mounted () {
       store.commit('SET_SIDEBAR_TYPE', Vue.ls.get(SIDEBAR_TYPE, true))
       store.commit('TOGGLE_THEME', Vue.ls.get(DEFAULT_THEME, config.navTheme))

--
Gitblit v1.9.3