12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <script>
- export default {
-
- globalData: {
- username: '白居易',
- base_url:'/api'
- },
- onLaunch() {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- },
- }
- </script>
- <style lang="scss">
- @import "uview-ui/index.scss";
- @import "common/demo.scss";
-
-
-
- .bg{
- background: url(./static/images/bg.png) no-repeat;
- background-color: #F9F9FB;
- background-position: center;
- background-position-y: 100px;
- background-position-x: 50px;
- height: 100vh;
- width: 100vh;
- overflow: hidden;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 0;
-
- }
- .position{
- position: relative;
- z-index: 1;
- }
- .empty{
- margin-top: 20%;
- text-align: center;
- image{
- display: inline-block;
- width: 30%;
- }
- .empty-text{
- margin-top: 20px;
- font-size: 14px;
- color: rgba(113, 113, 113, 0.43);
- }
- }
- </style>
|