You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< view class = "content" >
< view class = "mix-list-cell" :class ="border" @click ="eventClick" hover -class = " cell -hover " :hover-stay-time ="50" >
< text
v-if ="icon"
class="cell-icon yticon"
:style="[{
color: iconColor,
}]"
:class="icon"
></text>
<text class="cell-tit clamp">{{title}}</text>
<text v-if="tips" class="cell-tip" > {{ tips }} < / text >
< text class = "cell-more yticon"
:class ="typeList[navigateType]"
> < / text >
< / view >
< / view >
< / template >
< script >
/**
* 简单封装了下, 应用范围比较狭窄,可以在此基础上进行扩展使用
* 比如加入image, iconSize可控等
*/
export default {
data ( ) {
return {
typeList : {
left : 'icon-zuo' ,
right : 'icon-you' ,
up : 'icon-shang' ,
down : 'icon-xia'
} ,
}
} ,
props : {
icon : {
type : String ,
default : ''
} ,
title : {
type : String ,
default : '标题'
} ,
tips : {
type : String ,
default : ''
} ,
navigateType : {
type : String ,
default : 'right'
} ,
border : {
type : String ,
default : 'b-b'
} ,
hoverClass : {
type : String ,
default : 'cell-hover'
} ,
iconColor : {
type : String ,
default : '#333'
}
} ,
methods : {
eventClick ( ) {
this . $emit ( 'eventClick' ) ;
}
} ,
}
< / script >
< style lang = 'scss' >
. icon . mix - list - cell . b - b : after {
left : 90 upx ;
}
. mix - list - cell {
display : flex ;
align - items : baseline ;
padding : 20 upx $page - row - spacing ;
line - height : 60 upx ;
position : relative ;
& . cell - hover {
background : # fafafa ;
}
& . b - b : after {
left : 30 upx ;
}
. cell - icon {
align - self : center ;
width : 56 upx ;
max - height : 60 upx ;
font - size : 38 upx ;
}
. cell - more {
align - self : center ;
font - size : 30 upx ;
color : $font - color - base ;
margin - left : $uni - spacing - row - sm ;
}
. cell - tit {
flex : 1 ;
font - size : $font - base ;
color : $font - color - dark ;
margin - right : 10 upx ;
}
. cell - tip {
font - size : $font - sm + 2 upx ;
color : $font - color - light ;
}
}
< / style >