48 lines
855 B
Vue
48 lines
855 B
Vue
<script>
|
|
export default {
|
|
// onLaunch: function() {
|
|
// console.log('App Launch')
|
|
// },
|
|
// onShow: function() {
|
|
// console.log('App Show')
|
|
// },
|
|
// onHide: function() {
|
|
// console.log('App Hide')
|
|
// }
|
|
}
|
|
</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;
|
|
}
|
|
</style> |