financing-details.vue 4.68 KB
Newer Older
786817560's avatar
786817560 committed
1 2 3 4
<!--
   * @Descrip""/>User Settings Edit
 * @Author: your name
 * @Date: 2019-09-29 20:31:00
786817560's avatar
786817560 committed
5
 * @LastEditTime: 2019-09-30 13:08:02
786817560's avatar
786817560 committed
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
 * @LastEditors: Please set LastEditors
   -->
<template>
  <h-view id="details1" class="public-style">
    <h-header :proportion="[5,1,1]" class="bar-custom">
      <div slot="left" class="h-header-btn">
        <img src="@/assets/userBind/arrow.png" @click="$routeGo()">
        <span>融资明细</span>
      </div>
    </h-header>
    <h-content>
      <div class="alert">
        <div class="alert-content">
          <div class="title">
            <img src="@/assets/intoApproval/info.png" >
            <span class="info-word">提示</span>
          </div>
          <p class="top-info">具体请以实际进件发生情况为准,谢谢!</p>
        </div>
      </div>
      <list-item :item-height="44" class="second-part">
        <item>
          <div slot="name" class="font-color">商务政策</div>
          <input slot="content" placeholder="零手续费产品" >
        </item>
        <item>
          <div slot="name" class="font-color">设备总价</div>
          <input slot="content" placeholder="请输入设备总价" >
        </item>
        <item>
          <div slot="name" class="font-color">首付款比例</div>
          <input slot="content" placeholder="30%" >
        </item>
        <item>
          <div slot="name" class="font-color">首付款</div>
          <input slot="content" placeholder="首付款金额自动填充" >
        </item>
        <item>
          <div slot="name" class="font-color">保证金比例</div>
          <input slot="content" placeholder="10%" >
        </item>
        <item>
          <div slot="name" class="font-color">保证金</div>
          <input slot="content" placeholder="保证金金额自动填充" >
        </item>
        <item>
          <div slot="name" class="font-color">手续费比例</div>
          <input slot="content" placeholder="5%" >
        </item>
        <item>
          <div slot="name" class="font-color">手续费</div>
          <input slot="content" placeholder="手续费金额自动填充" >
        </item>
        <item>
          <div slot="name" class="font-color">预计付款日</div>
          <input slot="content" placeholder="YYYY-MM-DD" >
        </item>
        <item :showArrow="true">
          <div slot="name" class="font-color">还款周期</div>
          <input slot="content" placeholder="月" >
        </item>
        <item>
          <div slot="name" class="font-color">租赁期数</div>
          <input slot="content" placeholder="6" >
        </item>
        <item>
          <div slot="name" class="font-color">年利率</div>
          <input slot="content" placeholder="6.5%" >
        </item>
786817560's avatar
786817560 committed
75
        <item :showArrow="true" @click.native="goRepay">
786817560's avatar
786817560 committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
          <div slot="name" class="font-color">查看还款计划</div>
        </item>
      </list-item>
    </h-content>
    <bottom-tab class="footer-button">
      <tab-button class="approve" @click.native="showModalValue=true">
        试算
      </tab-button>
    </bottom-tab>
  </h-view>
</template>

<script>
export default {
  name: 'FinancingDetails',
  data () {
    return {

    }
  },
  computed: {},
  watch: {},
  methods:
 {
786817560's avatar
786817560 committed
100 101 102 103 104
   goRepay () {
     this.$router.push({
       name: 'FinancDetails',
     })
   },
786817560's avatar
786817560 committed
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
 },
}
</script>
<style lang='less' scoped>
#details1 {
    .h-header-btn {
      img {
        width: 16px;
        height: 16px;
        margin-left: 4px;
      }
      span {
        font-family: PingFangSC-Semibold;
        margin-left: 16px;
        font-size: 17px;
        letter-spacing: 0.61px;
        line-height: 24px;
      }
}
.alert {
      height: 70px;
      width: 100%;
      background: rgba(252, 200, 0, 0.16);
    }
    .alert-content {
      width: 334px;
      margin: 0 auto;
      padding-top: 16px;
    }
    .info-word {
      font-family: PingFangSC-Semibold;
      font-size: 14px;
      color: #fcc800;
      letter-spacing: 0.5px;
      margin-left: 8px;
    }
    .title {
      display: flex;
      align-items: center;
    }
    .top-info {
      font-family: PingFangSC-Regular;
      margin-top: 7px;
      margin-left: 20px;
      line-height: 15px;
font-size: 13px;
color: rgba(101,100,100,0.80);
letter-spacing: 0.4px;
    }
    .alert img {
      width: 18px;
      height: 18px;
    }
.font-color {
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #656464;
    letter-spacing: 0;
}
.footer-button {
    .approve {
      width: 358.6px;
      height: 44px;
      background: #00469c;
      border-radius: 4px;
      color: #fff;
      font-family: PingFangSC-Semibold;
      font-size: 15px;
      line-height: 20px;
      letter-spacing: 10px;
    }
  }
}
</style>