1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view>
- <view class="info">
- 小程序已暂停服务
- </view>
- <navigator open-type="exit" target="miniProgram" class="exit-btn">退出程序</navigator>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- uni.hideHomeButton()
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .info {
- padding: 200rpx 24rpx 40rpx;
- font-size: 32rpx;
- color: #333;
- line-height: 56rpx;
- text-align: center;
- }
- .exit-btn {
- width: 600rpx;
- height: 88rpx;
- border-radius: 44rpx;
- line-height: 88rpx;
- text-align: center;
- margin: 0 auto;
- background-color: #fe6128;
- color: #fff;
- font-weight: 500;
- font-size: 38rpx;
- }
- </style>
|