applyResult.vue 651 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="apply-result-page">
  3. <image style="width:100px" :src="globalImgUrls.imgSuccess"></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.navigateTo();
  14. }
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. .apply-result-page{
  20. text-align: center;
  21. font-size: 17px;
  22. .btn{
  23. margin-left: auto;
  24. margin-right: auto;
  25. margin-top: 140rpx;
  26. width: 380rpx;
  27. }
  28. }
  29. </style>