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.
54 lines
802 B
54 lines
802 B
<template> |
|
<view class="title-box acea-row row-between-wrapper"> |
|
<view class="title"><image :src="titImg"></image></view> |
|
<view class="more" @click="seeMoreClick">{{titWord}}</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default{ |
|
name: 'ListTitleBox', |
|
props:{ |
|
// 标题图片 |
|
titImg:{ |
|
type: String, |
|
default: '' |
|
}, |
|
// 标题内容 |
|
titWord: { |
|
type: String, |
|
default: '' |
|
}, |
|
// 图片尺寸 |
|
width: { |
|
type: String, |
|
default: '' |
|
}, |
|
height: { |
|
type: String, |
|
default: '' |
|
} |
|
}, |
|
|
|
methods:{ |
|
seeMoreClick(){ |
|
this.$emit('seeMoreClick') |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="less"> |
|
.title-box{ |
|
width: 100%; |
|
margin-bottom: 28rpx; |
|
image{ |
|
width: 206rpx; |
|
height: 58rpx; |
|
} |
|
.more{ |
|
font-size: 28rpx; |
|
color: #999; |
|
} |
|
} |
|
</style>
|
|
|