<template>
  <view class="apply-result-page">
    <image style="width:100px;height:100px" :src="globalImgUrls.imgSuccess" mode="aspectFill"></image>
    <view style="margin-top:20px">申请已提交</view>
    <view style="margin-top:15px">请等待销售人员与您联系</view>
    <view class="global-btn-yellow-change btn" @click="handleBack">返回</view>
  </view>
</template>

<script>
export default {
  methods: {
    handleBack(){
      uni.navigateBack();
    }
  }
}
</script>

<style lang="scss">
.apply-result-page{
  text-align: center;
  font-size: 17px;
  padding-top: 100rpx;
  .btn{
    margin-left: auto;
    margin-right: auto;
    margin-top: 140rpx;
    width: 380rpx;
  }
}
</style>