mand-mobile/components/cell-item/index.vue

123 lines
2.5 KiB
Vue

<template>
<div class="md-cell-item" :class="{ 'is-disabled': disabled }" @click="$_onClick">
<div class="md-cell-item-content">
<div class="md-cell-item-start" v-if="$slots.start">
<slot name="start"></slot>
</div>
<div class="md-cell-item-inner">
<p class="md-cell-item-title" v-if="title" v-text="title"></p>
<p class="md-cell-item-brief" v-if="brief" v-text="brief"></p>
<slot></slot>
</div>
<div class="md-cell-item-addon" v-if="arrow || addon || $slots.addon">
<slot name="addon">
{{ addon }}
</slot>
<md-icon v-if="arrow" name="arrow-right" size="lg" />
</div>
</div>
<div class="md-cell-item-children" v-if="$slots.children">
<slot name="children"></slot>
</div>
</div>
</template>
<script>
import Icon from '../icon'
export default {
name: 'md-cell-item',
components: {
[Icon.name]: Icon,
},
props: {
title: {
type: String,
default: '',
},
brief: {
type: String,
default: '',
},
addon: {
type: String,
default: '',
},
arrow: {
type: Boolean,
default: false,
},
disabled: {
type: Boolean,
default: false,
},
},
methods: {
$_onClick(e) {
if (!this.disabled) {
this.$emit('click', e)
}
},
},
}
</script>
<style lang="stylus">
.md-cell-item
position relative
&:not(:last-child)
hairline(bottom, cell-item-border-color)
.md-cell-item-content
display flex
align-items center
justify-content space-between
min-height cell-item-min-height
padding-top cell-item-padding-v
padding-bottom cell-item-padding-v
box-sizing border-box
.md-cell-item-start
flex-shrink 0
margin-right h-gap-lg
.md-cell-item-inner
flex 1 1 0%
color cell-item-color
font-size cell-item-font-size
line-height 1.2
.md-cell-item-addon
flex-shrink 0
margin-left h-gap-sm
display inline-flex
align-items center
justify-content flex-end
color cell-item-addon-color
font-size cell-item-addon-font-size
.md-icon-arrow-right
margin-right -12px
.md-cell-item-title
line-height 1.2
.md-cell-item-brief
color #858B9C
font-size 24px
line-height 1.4
margin-top v-gap-sm
.md-cell-item-children
padding-bottom cell-item-padding-v
.md-cell-item
&.is-disabled
.md-cell-item-inner,
.md-cell-item-title,
.md-cell-item-describe,
.md-cell-item-addon
color color-text-disabled
</style>