ApplyResult.vue 1.4 KB
<template>
  <div class="body d-page">
    <div class="rarle">
      <tatle-bar :tatle="tatleName"></tatle-bar>
    </div>
    <div>
      <div style="margin-top: 30px;text-align: center;z-index: 0"><img :src="require('@/assets/svg/u1507.svg')" style="width: 15%;height: 15%;"/></div>
      <div style="margin-top: -38px;z-index: 1;text-align: center"><img :src="require('@/assets/svg/u1506.svg')" style="width: 10%;height: 10%;"/></div>
    </div>
    <div style="    text-align: center;
    margin-top: 26px;
    color: black;
    font-size: 17px">
      自助贷款申请提交成功!
    </div>
    <div style="margin-top: 10px;width: 80%;margin-left: 10%;font-size: smaller">自助贷款申请已成功提交,请耐心等待管理人员审核,审核结果将会以短信方式通知。</div>
    <div>
      <van-button style="    width: 90%;
    margin-left: 5%;
    background-color: rgb(24, 144, 255);
    position: absolute;
    margin-top: 14%;
    height: 5%;
    border-radius: 5px;" type="primary" @click="countB">首页</van-button>        </div>
  </div>
</template>

<script lang="ts">
import {Component, Vue} from "vue-property-decorator";
@Component({
  name: "ApplyResult",
})
export default class ApplyResult extends Vue {
  tatleName="申请结果";
  countB() {
    this.$router.push({
      path:"/Mianview",
    });
  }
}
</script>

<style scoped lang="scss">

</style>