1234567891011121314151617181920212223242526272829 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch');
- },
- onShow: function() {
- console.log('App Show');
- },
- onHide: function() {
- console.log('App Hide');
- },
- }
- </script>
- <style>
- /*每个页面公共css */
- uni-checkbox .uni-checkbox-input {
- width: 25rpx;
- height: 25rpx;
- }
- .title-circ {
- margin-right: 20rpx;
- width: 30rpx;
- height: 30rpx;
- background-color: #49A992;
- border-radius: 15rpx;
- }
- </style>
|