宜呗小程序--微信小程序
Lzk
2025-08-05 b7bcaf556aa2424e808b6e6426ab22df9cfe11c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<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>