Merge branch 'feature/GFRS-222【0423】续期管理-续期列表' of http://112.124.100.131/GFRS/ebiz-h5 into feature/GFRS-222【0423】续期管理-续期列表

This commit is contained in:
mengxiaolong
2020-09-03 16:59:03 +08:00

View File

@@ -1,6 +1,6 @@
<!-- -->
<template>
<div>
<div class="item">
<template v-if="text && text != 0">
<van-cell :title="title" :value="text" />
</template>
@@ -13,6 +13,7 @@
<script>
import Vue from 'vue'
import { Cell } from 'vant'
Vue.use(Cell)
export default {
data() {
return {}
@@ -25,4 +26,18 @@ export default {
methods: {}
}
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
.item:not(:last-child) .van-cell::after {
position: absolute;
box-sizing: border-box;
content: ' ';
pointer-events: none;
right: 0;
bottom: 0;
left: 4.26667vw;
border-bottom: 1px solid #ebedf0;
transform: scaleY(0.5);
content: '';
border-bottom: 1px solid #dadada;
}
</style>