zhiyong.zhou
2024-02-26 60d911172b1dbebe0ab952ce10366b327d5744f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<template>
    <div id="app">
        <transition name="router-fade" mode="out-in">
            <router-view v-if="!$route.meta.keepAlive"/>
        </transition>
    </div>
</template>
 
<script>
  //import layout from './components/layout'
  export default {
    components: {},
    data() {
      return {}
    },
    mounted() {
      let beforeUrl = sessionStorage.getItem('router-path')
      if(beforeUrl === undefined || beforeUrl === ''){
        //this.$router.push("/workPanel")
      }else {
        //this.$router.push(beforeUrl)
      }
 
    },
    methods: {}
  }
</script>
<style lang="less">
    @import "@/assets/global";
    :focus {
        outline: -webkit-focus-ring-color auto 0px;
    }
    body {
        margin: 0;
        min-width: 500px;
        background-color: #f5f6f6;
    }
    body,html {margin:0; height:100%;}
    ul {
        padding: 0;
        margin: 0;
 
        li {
            list-style-type: none;
        }
    }
 
  .ov-tip{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
 
  .item-desc{
    font-size: small;
    color: #5e5e5e;
  }
 
  .max-fill{
    width: 100% !important;
  }
</style>