2023-07-03 17:49:29 +08:00
|
|
|
<script>
|
|
|
|
export default {
|
2023-09-23 20:16:54 +08:00
|
|
|
onLaunch: function() {
|
|
|
|
plus.screen.lockOrientation('landscape-primary'); //锁定横屏
|
2023-11-13 18:02:20 +08:00
|
|
|
// plus.navigator.setFullscreen(true); //隐藏状态栏(应用全屏:只能隐藏状态栏,标题栏和虚拟返回键都还可以显示)
|
2023-09-23 20:16:54 +08:00
|
|
|
},
|
2023-07-03 17:49:29 +08:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
@import "/style/css/layout.css";
|
|
|
|
@import "style/css/main.css";
|
|
|
|
@import "style/css/flex-main.css";
|
2023-07-25 17:17:59 +08:00
|
|
|
@import "/wxcomponents/vant/dist/common/index.css";
|
2023-07-19 18:12:19 +08:00
|
|
|
|
|
|
|
/deep/.uni-select {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/deep/.uni-date-x--border {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/deep/.superwei-combox {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2023-08-24 16:22:29 +08:00
|
|
|
|
|
|
|
/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;
|
|
|
|
}
|
2023-09-23 20:16:54 +08:00
|
|
|
|
|
|
|
/deep/.lotus-loading-wrap {
|
|
|
|
background-color: rgba(0, 0, 0, .7) !important;
|
|
|
|
}
|
2023-07-19 18:12:19 +08:00
|
|
|
</style>
|