diff --git a/src/components/Crud/crud.js b/src/components/Crud/crud.js
index b5bd398..8a02165 100644
--- a/src/components/Crud/crud.js
+++ b/src/components/Crud/crud.js
@@ -34,7 +34,7 @@ function CRUD(options) {
// 排序规则,默认 id 降序, 支持多字段排序 ['id,desc', 'createTime,asc']
sort: ['id,desc'],
// 等待时间
- time: 50,
+ time: 1,
// CRUD Method
crudMethod: {
add: (form) => {},
diff --git a/src/layout/components/AppMain.vue b/src/layout/components/AppMain.vue
index ac6db2a..d0f88c8 100644
--- a/src/layout/components/AppMain.vue
+++ b/src/layout/components/AppMain.vue
@@ -5,6 +5,7 @@
+
⋅
@@ -14,8 +15,19 @@
diff --git a/src/router/index.js b/src/router/index.js
index 874ec0f..a5a351e 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -12,16 +12,6 @@ NProgress.configure({ showSpinner: false })// NProgress Configuration
const whiteList = ['/login']// no redirect whitelist
router.beforeEach((to, from, next) => {
- setTimeout(() => {
- var _hmt = _hmt || [];
- (function() {
- // 百度统计
- const hm = document.createElement('script')
- hm.src = 'https://hm.baidu.com/hm.js?300a24a5326d0e7a0ff1b14c4e8d9056'
- const s = document.getElementsByTagName('script')[0]
- s.parentNode.insertBefore(hm, s)
- })()
- }, 0)
if (to.meta.title) {
document.title = Config.title + ' - ' + to.meta.title
}
diff --git a/src/views/login.vue b/src/views/login.vue
index d046e08..65485cc 100644
--- a/src/views/login.vue
+++ b/src/views/login.vue
@@ -1,6 +1,5 @@
-
ELADMIN 后台管理系统
@@ -43,7 +42,6 @@