123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <template>
- <view class="tui-cell-class tui-list-cell" :class="{'tui-cell-arrow':arrow,'tui-cell-last':last,'tui-line-left':lineLeft,'tui-line-right':lineRight,'tui-radius':radius}" :hover-class="hover?'tui-cell-hover':''"
- :style="{background: bgcolor,fontSize: size+'rpx',color:color,padding:padding}" :hover-stay-time="150" @tap="handleClick">
- <slot></slot>
- </view>
- </template>
- <script>
- export default {
- name: "tuiListCell",
- props: {
- //是否有箭头
- arrow: {
- type: Boolean,
- default: false
- },
- //是否有点击效果
- hover: {
- type: Boolean,
- default: true
- },
- //left 30rpx
- lineLeft:{
- type: Boolean,
- default: true
- },
- //right 30rpx
- lineRight:{
- type: Boolean,
- default: false
- },
- padding:{
- type:String,
- default:"26rpx 30rpx"
- },
- last: {
- type: Boolean,
- default: false //最后一条数据隐藏线条
- },
- radius:{
- type:Boolean,
- default:false
- },
- bgcolor: {
- type: String,
- default: "#fff" //背景颜色
- },
- size: {
- type: Number,
- default: 32 //字体大小
- },
- color: {
- type: String,
- default: "#333" //字体颜色
- },
- index: {
- type: Number,
- default: 0
- }
- },
- methods: {
- handleClick() {
- this.$emit('click', {
- index: this.index
- });
- }
- }
- }
- </script>
- <style>
- .tui-list-cell {
- position: relative;
- width: 100%;
- box-sizing: border-box;
- overflow: hidden;
- display: flex;
- align-items: center;
- }
- .tui-radius{
- border-radius: 12rpx;
- overflow: hidden;
- }
- .tui-cell-hover {
- background: #f7f7f9 !important;
- }
- .tui-list-cell::after {
- content: '';
- position: absolute;
- border-bottom: 1rpx solid #eaeef1;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- bottom: 0;
- right: 0;
- left:0;
- }
- .tui-line-left::after{
- left: 30rpx !important;
- }
-
- .tui-line-right::after{
- right: 30rpx !important;
- }
- .tui-cell-last::after {
- border-bottom: 0 !important;
- }
- .tui-list-cell.tui-cell-arrow:before {
- content: " ";
- height: 11px;
- width: 11px;
- border-width: 2px 2px 0 0;
- border-color: #b2b2b2;
- border-style: solid;
- -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
- transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
- position: absolute;
- top: 50%;
- margin-top: -7px;
- right: 30rpx;
- }
- </style>
|