<script>
|
export default {
|
name: "index",
|
onLoad(params) {
|
this.state = params.state == 1
|
},
|
data() {
|
return {
|
state:true
|
};
|
},
|
methods: {
|
back() {
|
uni.navigateBack({ delta: 3})
|
}
|
},
|
}
|
</script>
|
|
<template>
|
<view>
|
<view class="content">
|
|
|
<image v-if="state" style="width: 252rpx;height: 252rpx;margin: auto" :src="`${$images}/static/img/result/state1.png`"></image>
|
<image v-else style="width: 252rpx;height: 252rpx;margin: auto" :src="`${$images}/static/img/result/state0.png`"></image>
|
|
<view class="title">{{state?'放款审核中' : '放款已完成'}}</view>
|
<!-- <view class="money">-->
|
<!-- <view class="num">500.00</view>-->
|
<!-- <view style="display: flex;justify-content: end">元</view>-->
|
<!-- </view>-->
|
<view class="tips">预计30分钟内到账,请留言放款通知短信,贷款到账后请及时还款,逾期未还会影响您的个人征信</view>
|
<view>
|
<button class="but" @click="back">完成</button>
|
</view>
|
</view>
|
</view>
|
</template>
|
|
<style scoped lang="scss">
|
.content{
|
padding: 0 52rpx;
|
padding-top: 60rpx;
|
.title{
|
font-size: 36rpx;
|
color: #333333;
|
text-align: center;
|
margin-bottom: 20rpx;
|
}
|
.money{
|
font-size: 36rpx;
|
color: #333333;
|
display: flex;
|
flex-direction: row;
|
justify-content: center;
|
margin-bottom: 36rpx;
|
|
font-weight: bold;
|
.num{
|
font-size: 80rpx;
|
margin-right: 16rpx;
|
position: relative;
|
bottom: -15rpx;
|
}
|
|
}
|
.tips{
|
font-size: 28rpx;
|
text-align: center;
|
color: #666666;
|
margin-bottom: 60rpx;
|
}
|
.but{
|
height: 100rpx;
|
line-height: 100rpx;
|
margin: 0 18rpx;
|
font-size: 34rpx;
|
text-align: center;
|
color: white;
|
background: linear-gradient( 270deg, #4766FE 0%, #7D9FFF 100%), linear-gradient( 104deg, #6D89FF 0%, #2865F2 100%);
|
border-radius: 50rpx 50rpx 50rpx 50rpx;
|
}
|
}
|
</style>
|