applyResult.vue 801 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="apply-result-page">
  3. <image style="width:100px;height:100px" :src="globalImgUrls.imgSuccess" mode="aspectFill"></image>
  4. <view style="margin-top:20px">申请已提交</view>
  5. <view style="margin-top:15px">请等待销售人员与您联系</view>
  6. <view class="global-btn-yellow-change btn" @click="handleBack">返回</view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. methods: {
  12. handleBack(){
  13. uni.navigateBack({
  14. fail:()=>{
  15. uni.switchTab({ url: '/pages/report/report' })
  16. }
  17. })
  18. }
  19. }
  20. }
  21. </script>
  22. <style lang="scss">
  23. .apply-result-page{
  24. text-align: center;
  25. font-size: 17px;
  26. padding-top: 100rpx;
  27. .btn{
  28. margin-left: auto;
  29. margin-right: auto;
  30. margin-top: 140rpx;
  31. width: 380rpx;
  32. }
  33. }
  34. </style>