From 12fb4b8e4fb75347b25f3ba473b930408ed2ec05 Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期五, 22 九月 2023 17:49:18 +0800 Subject: [PATCH] 1、优化查询时若无选择日期的提示信息 2、增加部分加载时间较长的数据的加载动画 --- 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