1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="main">
- <image class="icon-success" :src="`${$imgUrl}bluetooth/device-active-success.png`"></image>
- <view class="title">续期失败!</view>
- </view>
-
- <button class="ui-btn" @click="submit">完成</button>
- </template>
-
- <script setup lang="ts">
- const submit = () => {
- uni.switchTab({
- url: '/pages/index/index'
- })
- }
- </script>
-
- <style lang="scss" scoped>
- .main{
- width: 560rpx;
- margin: 0 auto;
- padding: 25rpx 20rpx 55rpx;
- text-align: center;
- .top{
- text-align: right;
- .icon-close{
- width: 48rpx;
- height: 48rpx;
- }
- }
- .icon-success{
- width: 500rpx;
- height: 320rpx;
- margin-top: 22rpx;
- }
- .title{
- color: #333333;
- font-size: 40rpx;
- font-weight: 600;
- text-align: center;
- margin-top: 55rpx;
- }
- }
- </style>
|