maintain.vue 974 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view class="flex">
  3. <image src="/static/imgs/shop/logo_1.png" mode="widthFix" style="width: 642rpx;margin-top: 76rpx;"></image>
  4. <image src="/static/imgs/shop/bottom.png" mode="widthFix" style="width: 310rpx;margin-top: 116rpx;">
  5. </image>
  6. <view class="title">系统维护,请耐心等待...</view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. onLoad() {
  16. },
  17. }
  18. </script>
  19. <style lang="scss">
  20. page {
  21. background-color: #fff;
  22. }
  23. .flex {
  24. display: flex;
  25. align-items: center;
  26. flex-direction: column;
  27. .title {
  28. color: #333333;
  29. font-size: 40rpx;
  30. font-weight: bold;
  31. margin-top: 136rpx;
  32. }
  33. .tip {
  34. width: 560rpx;
  35. font-size: 28rpx;
  36. font-weight: 400;
  37. color: #999999;
  38. margin-top: 40rpx;
  39. line-height: 44rpx;
  40. }
  41. }
  42. .login_out {
  43. width: 220rpx;
  44. height: 88rpx;
  45. // background: #007AFF;
  46. margin-top: 140rpx;
  47. color: #999;
  48. font-size: 30rpx;
  49. color: $base-color;
  50. }
  51. </style>