chattelMortgage.Vue 1.45 KB
Newer Older
Nature's avatar
Nature committed
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
/**
* @Author Sean
* @Date 2019/4/28
*/
<template>
    <h-view class="public-style" style="height: 100%">
        <h-content>
          <list-item v-for="(list,index) in [0,1,2,3]" :key="index">
            <item :proportion="[4,0]" :hasBorder="false" class="indusItem" :show-arrow="true" @click.native="goNext">
              <div slot="name">
                <div class="cont-name">登记编号:<span class="fontColor">&nbsp;&nbsp;21023120160019</span></div>
                <div class="cont-name">登记日期:<span class="fontColor">&nbsp;&nbsp;2016-05-17</span></div>
                <div class="cont-name">被担保债权数额:<span class="fontColor">&nbsp;&nbsp;500</span></div>
                <div class="cont-name">状态:<span class="fontColor">&nbsp;&nbsp;有效</span></div>
              </div>
            </item>
          </list-item>
        </h-content>
    </h-view>
</template>

<script>
    export default {
        data() {
            return {}
        },
        created: function () {
        },
        mounted: function () {
        },
        updated: function () {
        },
        destroyed: function () {
        },
        methods: {
          goNext(){
            this.$router.push({
              name:'chattelMortgageDetail'
            })
          }
        }
    }
</script>

<style scoped lang="less" rel="stylesheet">
    .public-style {
        .content {
          .fontColor{
            color: #9D9D9D;
          }
        }
    }
</style>