exit.uvue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!--
  2. http://localhost:5174/custom/#/pages/yuedong/challenge/index?pagetype=challenge_result&status=fail
  3. https://oss-mbh5.colormaprun.com/custom/#/pages/yuedong/challenge/index?pagetype=challenge_result&status=fail
  4. -->
  5. <template>
  6. <view class="body">
  7. <view class="content">
  8. <view class="main">
  9. <view class="exit_game"></view>
  10. </view>
  11. </view>
  12. <my-fab></my-fab>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. computed: {
  22. },
  23. onLoad(event) { // 类型非必填,可自动推导
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style>
  30. .body {
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. justify-content: center;
  35. }
  36. .content {
  37. width: 100vw;
  38. /* width: 750rpx; */
  39. /* margin: 0 auto; */
  40. }
  41. .main {
  42. width: 100%;
  43. flex-direction: column;
  44. align-items: center;
  45. justify-content: flex-start;
  46. }
  47. .exit_game {
  48. width: 100%;
  49. height: 100vh;
  50. background-image: url("/static/yuedong/challenge/exit_game.png");
  51. background-repeat: no-repeat;
  52. background-position-x: center;
  53. background-position-y: top;
  54. background-size: 100% 100%;
  55. }
  56. </style>