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
| <!--
| * @Author: 小明丶
| * @Date: 2021-01-06 15:50:26
| * @LastEditors: 小明丶
| * @LastEditTime: 2021-01-06 15:50:27
| * @Description:
| -->
| <template>
| <div class="hb-credit-installment h-100-g">
| <van-nav-bar
| title="和微分"
| left-text="返回"
| left-arrow
| @click-left="onClickLeft"
| style="line-height: 43px;"
| >
| <i
| class="iconfont iconzuojiantou"
| slot="left"
| style="font-size: 25px;"
| ></i>
| </van-nav-bar>
| <div class="head">
| <img src="https://sie.jycash.cn/czjc/img/hwf/authtest.jpg"></img>
| </div>
| </div>
| </template>
| <script>
| export default {
| components: {
| },
| data() {
| return {
| };
| },
| computed:{
| },
| created () {
|
| },
| methods: {
| //顶部tabbar返回按钮
| onClickLeft() {
| this.$router.go(-1);
| },
| }
| };
| </script>
| <style lang="less" scoped>
| .head {
| width: 100%;
| height: 100%;
| img{
| width: 100%;
| height: 100%;
| }
| }
| </style>
|
|