App.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <div style="max-width: 1200px;" :style="{margin:width==1200+'px'?'10px auto':'10px 0 '}" id="app">
  3. <!-- <router-view v-slot="{ Component }">
  4. <keep-alive :includes="['Applyfor']">
  5. <component :is="Component" />
  6. </keep-alive>
  7. </router-view> -->
  8. <!-- <keep-alive :includes="['Applyfor']">
  9. <router-view></router-view>
  10. </keep-alive> -->
  11. <keep-alive :include="catchRoutes">
  12. <router-view :key="$route.fullPath" />
  13. </keep-alive>
  14. <!-- <nav-bar v-show="!isShowtabbar"></nav-bar> -->
  15. <tab-bar v-show="isShowtabbar"></tab-bar>
  16. </div>
  17. </template>
  18. <script>
  19. import TabBar from '@/components/TabBar'
  20. // import store from './store';
  21. // import NavBar from '@/components/NavBar'
  22. import { platform } from '@/utils/dingtalk.js'
  23. import { mapState } from 'vuex'
  24. export default {
  25. components: {
  26. TabBar,
  27. },
  28. data() {
  29. return {
  30. allowPath: ['/', '/approve', '/my'],
  31. tabbarList: [
  32. {
  33. title: '首页',
  34. to: '/',
  35. icon: require("@/assets/icons-index.png"),
  36. iconSel: require("@/assets/icons-index-sel.png"),
  37. },
  38. {
  39. title: '审批',
  40. to: '/about',
  41. icon: require("@/assets/icons-approve.png"),
  42. iconSel: require("@/assets/icons-approve-sel.png"),
  43. },
  44. {
  45. title: '我的',
  46. to: '/my',
  47. icon: require("@/assets/icons-my.png"),
  48. iconSel: require("@/assets/icons-my-sel.png"),
  49. },
  50. ],
  51. tabbarActive: 0,
  52. };
  53. },
  54. computed: {
  55. ...mapState('app', [
  56. 'catchRoutes'
  57. ]),
  58. isShowtabbar() {
  59. const { path } = this.$route
  60. return this.allowPath.includes(path)
  61. }
  62. },
  63. async created() {
  64. try {
  65. // NOTE: 获取各种类型枚举
  66. let list = this.$store.state.enum.evectionTypeList
  67. if (!list.length) {
  68. this.$store.dispatch('enum/getTypeList')
  69. }
  70. console.log('%c Current Environment >>>', 'background: blue; color: #fff', platform);
  71. // NOTE: 只有钉钉环境下才能获取静态Code
  72. if (platform !== 'notInDingTalk') {
  73. // NOTE: 静默获取用户Token
  74. console.log(111);
  75. await this.$store.dispatch('user/login')
  76. // 获取授权
  77. this.$store.dispatch('ddtalk/postWaitAuthentication')
  78. }
  79. } catch (e) { } /* eslint-disable-line */
  80. }
  81. }
  82. </script>