12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <view class="container">
- <image class='bg-image' mode="widthFix"
- src="https://qtzl.etcjz.cn/default-bucket/20240324/3eba2095f5204798a1f8101b_beijing.jpg"></image>
- <view class="content-re">
- <custom-header :back="false" title="订单信息修改"></custom-header>
- <view style="padding: 20rpx" class="content">
- <icon type="success" size="80" class="icon-sucess" color="#1AAC1B" />
- <!-- <u-icon name="hourglass" color="#1AAC1B" size="160"></u-icon> -->
- <view class="sucess-txt">信息修改已提交,请等待审核结果</view>
- </view>
- </view>
- </view>
- </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, //初始化数据
- isShow,
- } = unifyTemplate(); //初始化数据
- //获取页面配置
- onLoad((opin) => {
- initData(opin, 5).then(data => {
- if (data.qdOrder.returnUrl) {
- isShow.value = true
- }
- });
- });
- </script>
- <style lang="scss" scoped>
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
-
- .sucess-txt {
- font-size: 30rpx;
- margin-top: 15px;
- color: #1aac1b;
- font-weight: bold;
- }
-
- .sig-manage {
- height: 100vh;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
-
- .btn {
- height: 80rpx;
- opacity: 1;
- border-radius: 100rpx;
- margin: 30rpx 20rpx 20rpx 20rpx;
- width: 250rpx;
- }
-
- .btn-text {
- color: #ffffff;
- font-size: 28rpx;
- }
-
- .nav-bg {
- /* background: linear-gradient(to right, #13E7C1, #43A1E0); */
- border: 1px solid #ffffff;
- background: #1aac1b;
- }
- </style>
|