App.vue 971 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. mounted() {
  10. const session = [{key: 'username', commit: 'SET_USERNAME'}, {key: 'realName', commit: 'SET_REALNAME'}, {key: 'avatar', commit: 'SET_AVATAR'}, {key: 'userId', commit: 'SET_USERID'}];
  11. session.forEach(item => {
  12. if(sessionStorage.getItem(item.key) && this.$store.state.user[item.key] === '') {
  13. this.$store.commit(`user/${item.commit}`, sessionStorage.getItem(item.key))
  14. }
  15. })
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. // 设置进度条颜色
  21. #nprogress .bar {
  22. background: #409eff !important; //自定义颜色
  23. }
  24. // // 滚动条的滑块大小
  25. // ::-webkit-scrollbar {
  26. // width: 16px;
  27. // height: 16px;
  28. // }
  29. // // 滚动条的滑块颜色圆角
  30. // ::-webkit-scrollbar-thumb {
  31. // background-color: #a1a3a9;
  32. // border-radius: 4px;
  33. // }
  34. .measure3D{
  35. min-width: 130px;
  36. padding-right: 0;
  37. padding-left: 0;
  38. }
  39. </style>