applyResult.vue 707 B

1234567891011121314151617181920212223242526272829303132
  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. }
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. .apply-result-page{
  20. text-align: center;
  21. font-size: 17px;
  22. padding-top: 100rpx;
  23. .btn{
  24. margin-left: auto;
  25. margin-right: auto;
  26. margin-top: 140rpx;
  27. width: 380rpx;
  28. }
  29. }
  30. </style>