App.vue 657 B

12345678910111213141516171819202122232425262728293031
  1. <script>
  2. export default {
  3. onLaunch: function () {
  4. console.log("App Launch");
  5. },
  6. onShow: function () {
  7. console.log("App Show");
  8. },
  9. onHide: function () {
  10. console.log("App Hide");
  11. },
  12. };
  13. </script>
  14. <style>
  15. /*每个页面公共css */
  16. @import "./static/css/sys.css";
  17. checkbox .wx-checkbox-input {
  18. border-radius: 50% !important;
  19. }
  20. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  21. background: linear-gradient(129deg, #f0695b 0%, #ed301d 100%);
  22. border: 1px solid rgb(239, 74, 57);
  23. box-shadow: 0px 2px 3px rgba(239, 74, 57, 0.16);
  24. }
  25. uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  26. border-color: #d1d1d1;
  27. }
  28. </style>