|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <div class="container">
- <custom-header :back="false" title="下单"></custom-header>
- <view style="padding: 20rpx" class='content'>
- <icon type="success" size="80" class='icon-sucess' color='#1AAC1B'/>
- <view class="sucess-txt">
- 下单成功
- </view>
- </view>
- </div>
- </template>
- <script setup lang="ts">
- import CustomHeader from '@/components/CustomHeader.vue';
- import {
- ref
- } from 'vue'
- import {
- unifyTemplate
- } from '@/hooks/unifyTemplate'
- import {
- onLoad
- } from '@dcloudio/uni-app';
- import {
- request
- } from '@/utils/network/request'
- // const {
- // initData, //初始化数据
- // qdOrderVal //qdOrder中数据 ref
- // } = unifyTemplate() //初始化数据
- //获取页面配置
- // onLoad((opin) => {
- // initData(opin, 5).then(data => {
- // // contractTesting(data.qdOrder.qdOrderNo, data.config.jumpPage)
- // // contractQuery(data.qdOrder.qdOrderNo, data.config.jumpPage)
- // })
- // })
-
- </script>
- <style lang="scss" scoped>
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .sucess-txt {
- font-size: 20px;
- margin-top: 15px;
- color:#1AAC1B;
- }
- .sig-manage {
- height: 100vh;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- </style>
|