/** * @Author Sean * @Date 2019/4/26 */ <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"> <div slot="name"> <div class="cont-name">(2017)浙0105执2045号</div> <div class="cont-name">立案时间:<span class="fontColor"> 2017-06-12</span></div> <div class="cont-name">执行法院:<span class="fontColor"> 杭州市拱墅区人民法院</span></div> <div class="cont-name">执行标的:<span class="fontColor"> 0.0</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: {} } </script> <style scoped lang="less" rel="stylesheet"> .public-style { .content { .fontColor{ color: #9D9D9D; } .indusItem { margin-bottom: 20px; } } } </style>