applyResult.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <view class="applyResult-container container">
  3. <view class="middle-cont">
  4. <image src="https://hzstatic.hzinsights.com/cygx/czbk/success_ico.png" class="success_ico"></image>
  5. <text>申请已提交</text>
  6. <text>请等待销售人员与您联系</text>
  7. <view class="btn-cont" @click="goIndex"> 返回 </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. phone: "",
  16. type: "",
  17. };
  18. },
  19. methods: {
  20. callNum() {
  21. uni.makePhoneCall({
  22. phoneNumber: this.phone,
  23. });
  24. },
  25. goIndex() {
  26. uni.navigateBack({
  27. delta: 2,
  28. fail: (err) => {
  29. uni.switchTab({
  30. url: "/pages/index/index",
  31. });
  32. },
  33. });
  34. },
  35. },
  36. };
  37. </script>
  38. <style lang="scss" scoped>
  39. .applyResult-container {
  40. .middle-cont {
  41. margin: 90rpx auto 0;
  42. text-align: center;
  43. font-size: 32rpx;
  44. line-height: 52rpx;
  45. .success_ico {
  46. width: 150rpx;
  47. height: 150rpx;
  48. margin: 0 auto 30rpx;
  49. }
  50. .contract-cont {
  51. margin-top: 80rpx;
  52. .phone_num {
  53. display: inline;
  54. color: #d4bf86;
  55. }
  56. }
  57. .btn-cont {
  58. width: 368rpx;
  59. height: 80rpx;
  60. background: linear-gradient(268deg, #2ddbff 0%, #1599ff 49%, #005eff 100%);
  61. color: #fff;
  62. font-size: 34rpx;
  63. margin: 140rpx auto 0;
  64. text-align: center;
  65. line-height: 80rpx;
  66. .btn_bg {
  67. width: 100%;
  68. height: 80rpx;
  69. position: absolute;
  70. left: 0;
  71. top: 0;
  72. }
  73. .btn-txt {
  74. width: 100%;
  75. position: absolute;
  76. z-index: 1;
  77. }
  78. }
  79. }
  80. }
  81. </style>