diff --git a/src/main.js b/src/main.js index e42289e04..add9eb6ed 100644 --- a/src/main.js +++ b/src/main.js @@ -290,7 +290,11 @@ router.beforeEach(function (to, from, next) { next('/Login') } }else { - next() + if(isMobile()) { + next('/blankPage') + } else { + next('/Login') + } } }else { next() diff --git a/src/pages/localTool/standCalendar/index.vue b/src/pages/localTool/standCalendar/index.vue index 606229d2c..f0e0e31f3 100644 --- a/src/pages/localTool/standCalendar/index.vue +++ b/src/pages/localTool/standCalendar/index.vue @@ -41,10 +41,10 @@ - + @@ -52,7 +52,7 @@
{{ timeDay.day || nowDate }}
- +
暂无会议
@@ -74,8 +74,13 @@
会议附件 : {{ '-' }} - - {{ res.name }} {{ ';'}} + + + {{ res.name.slice(0, 30) + '...' }} {{ ';' }} + + + {{ res.name }} {{ ';' }} +
@@ -87,7 +92,7 @@