|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <view class="content">
- <image :src="`${$imgUrl}ETCcancellation/bgNew.png`" mode=""></image>
- <view class="title">
- 提交成功
- </view>
- <view class="">
- 预计1-3日完成资料审核
- </view>
- </view>
- <button class="ui-btn" @click="submit">完成</button>
- </template>
-
- <script setup lang="ts">
- const submit = () => {
- console.log(11);
- uni.reLaunch({
- url: '/pages/index/index'
- })
- }
- </script>
-
-
- <style>
- page {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- background-color: white;
- }
- </style>
- <style lang="scss" scoped>
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding: 80rpx;
-
- image {
- width: 390rpx;
- height: 307rpx;
- margin-bottom: 20rpx;
- }
-
- .title {
- font-weight: 400;
- font-size: 40rpx;
- color: #01243A;
- margin: 20rpx 0 30rpx 0;
- }
-
- view {
- font-weight: 400;
- font-size: 28rpx;
- color: #999999;
- }
- }
- </style>
|