closeInfo.vue 912 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view>
  3. <view class="info">
  4. 小程序已暂停服务
  5. </view>
  6. <navigator open-type="exit" target="miniProgram" class="exit-btn">退出程序</navigator>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. onLoad() {
  16. uni.hideHomeButton()
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style lang="scss" scoped>
  23. .info {
  24. padding: 200rpx 24rpx 40rpx;
  25. font-size: 32rpx;
  26. color: #333;
  27. line-height: 56rpx;
  28. text-align: center;
  29. }
  30. .exit-btn {
  31. width: 600rpx;
  32. height: 88rpx;
  33. border-radius: 44rpx;
  34. line-height: 88rpx;
  35. text-align: center;
  36. margin: 0 auto;
  37. background-color: #fe6128;
  38. color: #fff;
  39. font-weight: 500;
  40. font-size: 38rpx;
  41. }
  42. </style>