111
jihongshun
8 天以前 0c741cdda7ef9935a20d3090dfea97e1ce8ae754
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
  <div id="app" style="overflow-x: hidden">
    <router-view />
  </div>
</template>
 
<script>
export default {
  name: 'App',
}
</script>
 
<style>
html, body ,#app{ height: 100%;}
* {margin: 0;padding: 0;}
.formItemDiv{width: 100%;height: 30px;border-radius:4px;background-color: #fff;
  text-indent: 1em;font-size: 13px;cursor: pointer;color: #666}
*::-webkit-scrollbar {width: 4px;height: 4px;}
*::-webkit-scrollbar-thumb {border-radius: 4px;background: #5E708D;}
*::-webkit-scrollbar-track {border-radius: 4px;background: #ddd;}
</style>