Files
chaoyangpc/src/App.vue
Your Name d3ec979ec6 tijiao
2019-12-25 10:02:39 +08:00

87 lines
1.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>