1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <script>
- export default {
- onLaunch: function() {
-
- },
- onShow: function() {
-
- },
- onHide: function() {
-
- }
- }
-
- </script>
- <style lang="scss">
-
- /* uni.css - 通用组件、模板样式库,可以当作一套ui库应用 */
- @import './style/uni.css';
-
-
- /* 考试相关样式 */
- @import './style/style.css';
-
-
-
- /* 重写样式 */
- .uni-load-more__text{
- font-size: 14px !important;
- }
-
-
-
-
-
- .page-box {
- padding: 20px;
- font-size: 14px;
- display: flex;
- flex-direction: column;
- height: 100vh;
- }
- </style>
|