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
| <script>
| export default {
| name: "index",
| data() {
|
| },
| }
| </script>
|
| <template>
| <view>
| <view class="content">
|
|
| <image style="width: 252rpx;height: 252rpx;margin: auto" :src="`${$images}/static/img/result/no.png`"></image>
| <view class="tips">
| 抱歉,暂时无法为您提供借钱服务
| </view>
| <view class="hf">如有疑问请拨打客服电话</view>
|
|
|
|
|
| </view>
| </view>
| </template>
|
| <style scoped lang="scss">
| .content{
| padding: 0 52rpx;
| padding-top: 240rpx;
| .tips{
| text-align: center;
| margin-top: 40rpx;
| font-weight: 700;
| margin-bottom: 32rpx;
| padding: 0 60rpx;
| }
| .hf{
| font-size: 28rpx;
| color: #666666;
| text-align: center;
| }
|
|
| }
| </style>
|
|