星油车管小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

86 lines
1.1 KiB

<script>
export default {
globalData: {
version: "Ⅰ"
},
onLaunch: function() {
console.log('App Launch');
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
@import "@/uni_modules/uview-ui/index.scss";
page {
overflow: auto !important;
}
::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
background: transparent;
color: transparent;
}
.textov {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.qx {
width: 380rpx;
height: 380rpx;
position: absolute;
left: 0;
right: 0;
margin: auto;
bottom: 0;
top: 0;
}
.flex {
display: flex;
}
.jc {
justify-content: center;
}
.jw {
justify-content: space-between;
}
.ac {
align-items: center;
}
.column {
flex-direction: column;
}
.oneflex {
flex: 1;
}
.around {
justify-content: space-around;
}
.flex-end {
justify-content: flex-end;
}
.warp {
flex-wrap: wrap;
}
/*每个页面公共css */
</style>