第一次提交
This commit is contained in:
66
App.vue
Normal file
66
App.vue
Normal file
@@ -0,0 +1,66 @@
|
||||
<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>
|
||||
.textov {
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
/*每个页面公共css */
|
||||
</style>
|
||||
Reference in New Issue
Block a user