12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <script>
- export default {
- onLaunch: function () {
- console.log('App onLaunch');
- },
- onShow: function () {
- console.log('App Show');
- },
- onHide: function () {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- /* #ifdef H5 */
- *{
- font-family: "HanHei SC",PingHei,"PingFang SC","Helvetica Neue",Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;;
- font-style: normal;
- font-weight: normal;
- }
- /* 隐藏滚动条 */
- uni-scroll-view .uni-scroll-view::-webkit-scrollbar {
- display: none;
- width: 0 !important;
- height: 0 !important;
- -webkit-appearance: none;
- background: transparent;
- color: transparent;
- }
- .uni-page-head .uni-page-head__title{
- font-size: 30rpx !important;
- }
- uni-checkbox .uni-checkbox-input {
- color: #d02129 !important;
- border-radius: 50% !important;
- }
- /* #endif */
- /* #ifndef APP-NVUE */
- page{
- height: 100%;
- font-family: 'Microsoft Yahei', Arial, sans-serif;
- }
- /* #endif */
- /* #ifdef H5 */
- uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
- border-color: #d1d1d1 !important;
- }
- uni-checkbox .uni-checkbox-input {
- border-radius: 50% !important;
- }
- uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked::before {
- color: #D02129 !important;
- }
- /* #endif */
- </style>
|