123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <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">
- @import "@/uni.scss";
- /*每个页面公共css */
- @import "@/uni_modules/uni-scss/index.scss";
- button {
- background-color: $primary;
- font-weight: 500;
- font-size: 32rpx;
- color: #fff;
- margin: 0;
- width: 100%;
- &::after {
- border: 0;
- }
- }
- .button {
- background-color: $primary;
- font-weight: 500;
- font-size: 32rpx;
- color: #fff;
- margin: 0;
- width: 100%;
- border-radius: 20rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 20rpx 0;
- &::after {
- border: 0;
- }
- }
- .tip {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #999999;
- }
- .button.plain {
- background: $uni-primary-light;
- color: $primary;
- }
- </style>
|