From d3efc03916719a9f5baf514722df5c090f982f99 Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期二, 26 九月 2023 12:08:47 +0800 Subject: [PATCH] 修复编辑机床维修时间的日期选择器选择日期和时间后无法点击确定按钮问题 --- 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