Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

auditSucess.vue 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <view class="container">
  3. <image class='bg-image' mode="widthFix"
  4. src="https://qtzl.etcjz.cn/default-bucket/20240324/3eba2095f5204798a1f8101b_beijing.jpg"></image>
  5. <view class="content-re">
  6. <custom-header :back="false" title="订单信息修改"></custom-header>
  7. <view style="padding: 20rpx" class="content">
  8. <icon type="success" size="80" class="icon-sucess" color="#1AAC1B" />
  9. <!-- <u-icon name="hourglass" color="#1AAC1B" size="160"></u-icon> -->
  10. <view class="sucess-txt">信息修改已提交,请等待审核结果</view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script setup lang="ts">
  16. import CustomHeader from '@/components/CustomHeader.vue';
  17. import { ref } from 'vue';
  18. import { unifyTemplate } from '@/hooks/unifyTemplate';
  19. import { onLoad } from '@dcloudio/uni-app';
  20. import { request } from '@/utils/network/request';
  21. const {
  22. initData, //初始化数据
  23. isShow,
  24. } = unifyTemplate(); //初始化数据
  25. //获取页面配置
  26. onLoad((opin) => {
  27. initData(opin, 5).then(data => {
  28. if (data.qdOrder.returnUrl) {
  29. isShow.value = true
  30. }
  31. });
  32. });
  33. </script>
  34. <style lang="scss" scoped>
  35. .content {
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: center;
  39. align-items: center;
  40. }
  41. .sucess-txt {
  42. font-size: 30rpx;
  43. margin-top: 15px;
  44. color: #1aac1b;
  45. font-weight: bold;
  46. }
  47. .sig-manage {
  48. height: 100vh;
  49. width: 100%;
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. }
  54. .btn {
  55. height: 80rpx;
  56. opacity: 1;
  57. border-radius: 100rpx;
  58. margin: 30rpx 20rpx 20rpx 20rpx;
  59. width: 250rpx;
  60. }
  61. .btn-text {
  62. color: #ffffff;
  63. font-size: 28rpx;
  64. }
  65. .nav-bg {
  66. /* background: linear-gradient(to right, #13E7C1, #43A1E0); */
  67. border: 1px solid #ffffff;
  68. background: #1aac1b;
  69. }
  70. </style>