index.vue
1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!--
* @Date: 2023-12-15 14:03:40
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-12-18 16:54:46
* @FilePath: /meihuaApp/src/pages/payInfo/index.vue
* @Description: 文件描述
-->
<template>
<view class="pay-info-page">
<view style="display: flex; align-items: center; justify-content: center; flex-direction: column; margin-top: 3rem;">
<image style="width: 8rem; height: 8rem; border-radius: 10rpx;" mode="aspectFill" src="https://cdn.ipadbiz.cn/meihua/edit-icon.png" />
<div style="margin-top: 1rem; text-align: center; color: #6A4925; font-size: 35rpx;">
<view>您的订单提交成功,</view>
<view> 期待您的入住!</view>
</div>
</view>
</view>
</template>
<script setup>
import Taro from '@tarojs/taro'
import { ref, onMounted } from "vue";
onMounted(() => {
setTimeout(() => {
Taro.redirectTo({
url: '/pages/my/index',
})
}, 2000);
})
</script>
<script>
import "./index.less";
import mixin from '@/utils/mixin';
export default {
name: "payInfoPage",
mixins: [mixin.init],
};
</script>