<template>
|
|
<view class="book-item" :class="{'horizontal': horizontal}" @click="$emit('click')">
|
|
<image class="book-cover" :src="book.image
|
|
&& book.image.split(',')[0]" mode="aspectFill"></image>
|
|
<view class="book-info">
|
|
<view class="book-title">{{book.name}}</view>
|
|
<view class="book-author" v-if="book.author && !horizontal">{{book.author}}</view>
|
|
<view class="book-desc" v-if="!horizontal">{{book.details || '暂无简介'}}</view>
|
|
|
|
<view class="content-row" v-if="!horizontal">
|
|
<view class="book-tags" v-if="book.tags && book.tags.length">
|
|
<text class="tag" v-for="(tag, index) in book.tags" :key="index">{{tag}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="content-row" v-if="!horizontal">
|
|
|
|
<view class="book-status">
|
|
<text>{{ statusText }}</text>
|
|
</view>
|
|
<view class="book-text">
|
|
{{ item.service || '大家都在读' }}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
book: {
|
|
type: Object,
|
|
default: {}
|
|
},
|
|
// 是否显示为水平布局(默认垂直布局)
|
|
horizontal: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
},
|
|
computed: {
|
|
statusClass() {
|
|
const statusMap = {
|
|
'draft': 'new',
|
|
'0': 'ongoing',
|
|
'1': 'completed'
|
|
};
|
|
return statusMap[this.book.status] || 'ongoing';
|
|
},
|
|
statusText() {
|
|
const textMap = {
|
|
// '0': '新建',
|
|
'0': '连载中',
|
|
'1': '已完结'
|
|
};
|
|
return textMap[this.book.status] || '连载中';
|
|
},
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.book-item {
|
|
display: flex;
|
|
padding: 20rpx 0;
|
|
border-bottom: 1px solid #eee;
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.book-cover {
|
|
width: 160rpx;
|
|
height: 210rpx;
|
|
border-radius: 16rpx;
|
|
margin-right: 20rpx;
|
|
box-shadow: 0 4rpx 8rpx rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.book-info {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
.book-title {
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #333;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
flex: 1;
|
|
margin-right: 10rpx;
|
|
}
|
|
|
|
.book-author {
|
|
font-size: 24rpx;
|
|
color: #666;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.book-desc {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
line-height: 1.5;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
overflow: hidden;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.content-row {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.book-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.tag {
|
|
font-size: 20rpx;
|
|
color: #666;
|
|
background-color: #f5f5f5;
|
|
padding: 4rpx 12rpx;
|
|
border-radius: 20rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
}
|
|
|
|
.book-status {
|
|
flex-shrink: 0;
|
|
|
|
text {
|
|
font-size: 20rpx;
|
|
color: #67C23A;
|
|
background-color: rgba(103, 194, 58, 0.1);
|
|
border-radius: 20rpx;
|
|
padding: 4rpx 12rpx;
|
|
}
|
|
}
|
|
.book-text{
|
|
font-size: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* 水平布局样式 - 用于网格展示 */
|
|
.book-item.horizontal {
|
|
flex-direction: column;
|
|
width: 220rpx;
|
|
padding: 10rpx;
|
|
border: none;
|
|
|
|
.book-cover {
|
|
width: 100%;
|
|
height: 300rpx;
|
|
margin-right: 0;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.book-info {
|
|
.title-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.book-title {
|
|
font-size: 26rpx;
|
|
white-space: wrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
flex: 1;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
margin-right: 5rpx;
|
|
}
|
|
|
|
.book-author {
|
|
font-size: 22rpx;
|
|
}
|
|
|
|
.book-desc {
|
|
display: none;
|
|
}
|
|
|
|
.book-tags {
|
|
display: none;
|
|
}
|
|
|
|
.book-status {
|
|
flex-shrink: 0;
|
|
|
|
text {
|
|
font-size: 18rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|