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.
64 lines
946 B
64 lines
946 B
2 years ago
|
<template>
|
||
|
<view class="item_cell">
|
||
|
<view>
|
||
|
{{cellname}}
|
||
|
</view>
|
||
|
<image src="/static/images/home/right.png"></image>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
|
||
|
components: {},
|
||
|
props: {
|
||
|
cellname: {
|
||
|
type: String
|
||
|
},
|
||
|
linkUrl: {
|
||
|
type: String
|
||
|
}
|
||
|
},
|
||
|
methods: {}
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.item_cell{
|
||
|
background-color: #fff;
|
||
|
height: 80upx;
|
||
|
line-height: 80upx;
|
||
|
padding: 0 4%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
position: relative;
|
||
|
}
|
||
|
.item_cell:after{
|
||
|
position: absolute;
|
||
|
z-index: 3;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
height: 0;
|
||
|
bottom: 0;
|
||
|
left: 4%;
|
||
|
content: "";
|
||
|
-webkit-transform: scaleY(.5);
|
||
|
transform: scaleY(.5);
|
||
|
border-bottom: 1px solid #e4e7ed;
|
||
|
}
|
||
|
.item_cell:active{
|
||
|
background-color: #f5f5f5;
|
||
|
}
|
||
|
.item_cell view{
|
||
|
width: 93%;
|
||
|
float: left;
|
||
|
}
|
||
|
.item_cell image{
|
||
|
width: 40upx;
|
||
|
height: 40upx;
|
||
|
float: right;
|
||
|
}
|
||
|
</style>
|