62 lines
1.0 KiB
Vue
62 lines
1.0 KiB
Vue
<template>
|
|
<div class="md-shortcut-row">
|
|
<div
|
|
v-for="(item, index) in shortcuts"
|
|
:key="index"
|
|
class="md-shortcut-row-item"
|
|
v-tap="{ methods: $_onEnter }"
|
|
>{{ item }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'md-shortcut-row',
|
|
|
|
components: {},
|
|
|
|
props: {
|
|
// 省份数据
|
|
shortcuts: {
|
|
type: Array,
|
|
default: () => {
|
|
return []
|
|
},
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {}
|
|
},
|
|
|
|
methods: {
|
|
$_onEnter(value) {
|
|
this.$emit('enter', value)
|
|
},
|
|
},
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
.md-shortcut-row {
|
|
padding: 32px 10px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
.md-shortcut-row-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 80px;
|
|
height: 104px;
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 2px 0px 0px rgba(159,159,159,0.5);
|
|
border-radius: 12px;
|
|
font-family: font-family-normal;
|
|
font-size: 40px;
|
|
color: #01080F;
|
|
letter-spacing: 0;
|
|
font-weight: 400;
|
|
margin: 0px 0px 10px 10px;
|
|
}
|
|
}
|
|
</style>
|