87 lines
1.4 KiB
Vue
87 lines
1.4 KiB
Vue
<template>
|
||
<div id="app">
|
||
<router-view />
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
components: {},
|
||
props: {},
|
||
data () {
|
||
return {}
|
||
},
|
||
computed: {},
|
||
watch: {},
|
||
methods: {},
|
||
created () {},
|
||
mounted () {},
|
||
updated () {
|
||
window.scroll(0, 0)
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="less">
|
||
// * {
|
||
// /*隐藏滚动条,当IE下溢出,仍然可以滚动*/
|
||
// // -ms-overflow-style: none;
|
||
// /*火狐下隐藏滚动条*/
|
||
// // scrollbar-width: none;
|
||
// }
|
||
|
||
// html {
|
||
// /*隐藏滚动条,当IE下溢出,仍然可以滚动*/
|
||
// // -ms-overflow-style: none;
|
||
// /*火狐下隐藏滚动条*/
|
||
// // scrollbar-width: none;
|
||
// }
|
||
|
||
// @font-face{
|
||
// font-family: "微软雅黑" !important;
|
||
// }
|
||
|
||
/deep/ .w-e-text-container p {
|
||
color: red;
|
||
}
|
||
|
||
body {
|
||
background-color: #fcfbfb;
|
||
|
||
// font {
|
||
// font-family: "微软雅黑" !important;
|
||
// }
|
||
// &::-webkit-scrollbar {
|
||
// width: 0px;
|
||
// height: 5px;
|
||
// }
|
||
|
||
table {
|
||
td {
|
||
border: 1px solid #000 !important;
|
||
height: 25px;
|
||
line-height: 25px;
|
||
text-align: center;
|
||
padding: none;
|
||
}
|
||
}
|
||
|
||
img {
|
||
cursor: pointer;
|
||
}
|
||
}
|
||
@font-face {
|
||
font-family: "HanWangKaiBold-Gb5";
|
||
src: url("../static/fontFile/HanWangKaiBold-Gb5.ttf");
|
||
}
|
||
.el-dialog__header{
|
||
background: #E60012 !important;
|
||
text-align: center;
|
||
}
|
||
.el-dialog__title {
|
||
line-height: 24px;
|
||
font-size: 18px;
|
||
color: #fff !important;
|
||
}
|
||
</style>
|