12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <!-- App.vue -->
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "uview-plus/index.scss";
-
- .tab_page{
- background: #F7F7F7;
- padding: 0 24rpx 184rpx;
- box-sizing: border-box;
- }
-
- .top_bg_img{
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- }
-
- .adf{
- display: flex;
- }
- .adffc{
- display: flex;
- flex-direction: column;
- }
- .adfac{
- display: flex;
- align-items: center;
- }
- .adfacjc{
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .adfacjb{
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .adffcjb{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .adffcacjc{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .adffcac{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .adffcacjb{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- }
- </style>
|