47 lines
984 B
Vue
47 lines
984 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
plus.screen.lockOrientation('landscape-primary'); //锁定横屏
|
|
// plus.navigator.setFullscreen(true); //隐藏状态栏(应用全屏:只能隐藏状态栏,标题栏和虚拟返回键都还可以显示)
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import "/style/css/layout.css";
|
|
@import "style/css/main.css";
|
|
@import "style/css/flex-main.css";
|
|
@import "/wxcomponents/vant/dist/common/index.css";
|
|
|
|
/deep/.uni-select {
|
|
background-color: #fff;
|
|
}
|
|
|
|
/deep/.uni-date-x--border {
|
|
background-color: #fff;
|
|
}
|
|
|
|
/deep/.superwei-combox {
|
|
background-color: #fff;
|
|
}
|
|
|
|
/deep/.uni-pagination__num-tag {
|
|
width: 30px !important;
|
|
}
|
|
|
|
/deep/uni-button:after {
|
|
border: none;
|
|
}
|
|
|
|
/deep/.uni-numbox__minus {
|
|
border-right: 1px solid #ccc;
|
|
}
|
|
|
|
/deep/.uni-numbox__plus {
|
|
border-left: 1px solid #ccc;
|
|
}
|
|
|
|
/deep/.lotus-loading-wrap {
|
|
background-color: rgba(0, 0, 0, .7) !important;
|
|
}
|
|
</style> |