123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <view class="tui-list-view tui-view-class" :style="{backgroundColor:backgroundColor}">
- <view class="tui-list-title" v-if="title">{{title}}</view>
- <view class="tui-list-content" :class="[unlined?'tui-border-'+unlined:'']">
- <slot></slot>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "tuiListView",
- props: {
- title: {
- type: String,
- default: ''
- },
- backgroundColor:{
- type: String,
- default: 'transparent'
- },
- unlined: {
- type: String,
- default: '' //top,bottom,all
- }
- }
- }
- </script>
- <style scoped>
- .tui-list-title {
- width: 100%;
- padding: 30rpx;
- box-sizing: border-box;
- font-size: 30rpx;
- line-height: 30rpx;
- color: #666;
- }
- .tui-list-content {
- width: 100%;
- position: relative;
- }
- .tui-list-content::before {
- content: " ";
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- border-top: 1rpx solid #eaeef1;
- -webkit-transform: scaleY(0.5) translateZ(0);
- transform: scaleY(0.5) translateZ(0);
- transform-origin: 0 0;
- z-index: 2;
- pointer-events: none;
- }
- .tui-list-content::after {
- content: '';
- width: 100%;
- position: absolute;
- border-bottom: 1rpx solid #eaeef1;
- -webkit-transform: scaleY(0.5) translateZ(0);
- transform: scaleY(0.5) translateZ(0);
- transform-origin: 0 100%;
- bottom: 0;
- right: 0;
- left: 0;
- }
- .tui-border-top::before {
- border-top: 0;
- }
- .tui-border-bottom::after {
- border-bottom: 0;
- }
- .tui-border-all::after {
- border-bottom: 0;
- }
- .tui-border-all::before {
- border-top: 0;
- }
- </style>
|