HIS/HIS-app/components/uni-list/uni-list.vue

47 lines
705 B
Vue

<template>
<view class="uni-list">
<slot />
</view>
</template>
<script>
export default {
name: 'UniList'
}
</script>
<style>
@charset "UTF-8";
.uni-list {
background-color: #fff;
position: relative;
width: 100%;
display: flex;
flex-direction: column
}
.uni-list:after {
position: absolute;
z-index: 10;
right: 0;
bottom: 0;
left: 0;
height: 1px;
content: '';
-webkit-transform: scaleY(.5);
transform: scaleY(.5);
background-color: #c8c7cc
}
.uni-list:before {
position: absolute;
z-index: 10;
right: 0;
top: 0;
left: 0;
height: 1px;
content: '';
-webkit-transform: scaleY(.5);
transform: scaleY(.5);
background-color: #c8c7cc
}
</style>