exit.uvue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!--
  2. http://localhost:5173/custom/#/pages/shanda/challenge/index?pagetype=challenge_result&status=fail
  3. https://oss-mbh5.colormaprun.com/custom/#/pages/shanda/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. /* height: 1100rpx; */
  51. /* margin-left: 40rpx; */
  52. background-image: url("/static/shanda/challenge/exit_game.png");
  53. background-repeat: no-repeat;
  54. background-position-x: center;
  55. background-position-y: top;
  56. background-size: cover;
  57. }
  58. </style>