|
@@ -10,13 +10,22 @@ import initDirect from '@/plugins/initDirect'
|
|
import 'default-passive-events'
|
|
import 'default-passive-events'
|
|
import './browerPatch'
|
|
import './browerPatch'
|
|
import { createPinia } from 'pinia'
|
|
import { createPinia } from 'pinia'
|
|
-import ElementPlus from 'element-plus'
|
|
|
|
|
|
+import ElementPlus, {ElNotification} from 'element-plus'
|
|
import 'element-plus/dist/index.css'
|
|
import 'element-plus/dist/index.css'
|
|
|
|
|
|
|
|
|
|
// repeatFileValid()
|
|
// repeatFileValid()
|
|
await initMainRouter() // 路由挂载前初始化路由表
|
|
await initMainRouter() // 路由挂载前初始化路由表
|
|
const app = createApp(App)
|
|
const app = createApp(App)
|
|
|
|
+app.config.errorHandler = (err, instance, info) => {
|
|
|
|
+ const path = instance?.$options.__file
|
|
|
|
+ ElNotification({
|
|
|
|
+ duration: 0,
|
|
|
|
+ title: `系统异常(${path?.match(/smart-search-web(.*)/)?.[1] || path})`,
|
|
|
|
+ message: err.stack,
|
|
|
|
+ type: 'error',
|
|
|
|
+ })
|
|
|
|
+};
|
|
app.use(createPinia())
|
|
app.use(createPinia())
|
|
await initProperties(app)
|
|
await initProperties(app)
|
|
initComponent(app)
|
|
initComponent(app)
|