2022-06-22 08:44:32 +08:00
|
|
|
<template>
|
|
|
|
<div class="wrapper">
|
|
|
|
<el-row class="row-cards row-deck" :gutter="20">
|
2024-02-20 14:38:24 +08:00
|
|
|
<el-col :xs="24" :sm="24" :md="10" :lg="10" :xl="10" v-for="product in products.list" :key="product.idProduct"
|
|
|
|
style="margin-bottom: 10px;">
|
2022-06-22 08:44:32 +08:00
|
|
|
<el-card :body-style="{ padding: '20px' }">
|
2024-02-20 14:38:24 +08:00
|
|
|
<div style="width: 96%;">
|
2024-02-20 19:42:25 +08:00
|
|
|
<img style="max-height: 300px;display: block;margin: 0 auto" :src="product.productImgUrl"
|
|
|
|
object-fit="contain"/>
|
2024-02-20 14:38:24 +08:00
|
|
|
</div>
|
2024-02-20 19:42:25 +08:00
|
|
|
<el-col :span="24">
|
|
|
|
<el-tag
|
|
|
|
style="margin-right: 0.5rem;"
|
|
|
|
v-for="tag in product.tags?.split(',') || []"
|
|
|
|
:key="tag"
|
|
|
|
size="small"
|
|
|
|
effect="plain">
|
|
|
|
# {{ tag }}
|
|
|
|
</el-tag>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="24"
|
|
|
|
style="font-size: 16px;line-height: 22px;font-weight: 500;margin: 4px 0;text-align: center;">
|
|
|
|
<span style="font-weight: bolder;" v-html="product.productTitle"></span>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="24">
|
|
|
|
<small class="text-container">
|
|
|
|
{{ product.productDescription }}
|
|
|
|
</small>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="24" style="text-align: center;">
|
|
|
|
<el-button type="text" class="button" @click="handleClick(product.idProduct)">了解更多</el-button>
|
|
|
|
</el-col>
|
2022-06-22 08:44:32 +08:00
|
|
|
</el-card>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: "ProductList",
|
|
|
|
props: {
|
|
|
|
products: {
|
|
|
|
type: Object
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
handleClick(idProduct) {
|
|
|
|
this.$router.push({
|
|
|
|
path: `/product/${idProduct}`
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
body {
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
position: relative;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: flex;
|
|
|
|
-ms-flex-direction: column;
|
|
|
|
flex-direction: column;
|
|
|
|
min-width: 0;
|
|
|
|
word-wrap: break-word;
|
|
|
|
background-color: #fff;
|
|
|
|
background-clip: border-box;
|
|
|
|
border: 1px solid rgba(0, 40, 100, 0.12);
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-profile .card-header {
|
|
|
|
height: 20rem;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-header:first-child {
|
|
|
|
border-radius: calc(3px - 1px) calc(3px - 1px) 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-header {
|
|
|
|
background: none;
|
|
|
|
padding: 0.5rem 1.5rem;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: flex;
|
|
|
|
min-height: 3.5rem;
|
|
|
|
-ms-flex-align: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-header {
|
|
|
|
padding: 1.5rem 1.5rem;
|
|
|
|
margin-bottom: 0;
|
|
|
|
background-color: rgba(0, 0, 0, 0.03);
|
|
|
|
border-bottom: 1px solid rgba(0, 40, 100, 0.12);
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-body {
|
|
|
|
-ms-flex: 1;
|
|
|
|
flex: 1;
|
|
|
|
margin: 0;
|
|
|
|
padding: 1.5rem 1.5rem;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-profile-img {
|
|
|
|
max-width: 6rem;
|
|
|
|
margin-top: -5rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
border: 3px solid #fff;
|
|
|
|
border-radius: 100%;
|
|
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-img-top {
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-img-top {
|
|
|
|
width: 100%;
|
|
|
|
border-top-left-radius: calc(3px - 1px);
|
|
|
|
border-top-right-radius: calc(3px - 1px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.mb-3, .my-3 {
|
|
|
|
margin-bottom: 0.75rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3, .h3 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mb-4, .my-4 {
|
|
|
|
margin-bottom: 1rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-header-md {
|
|
|
|
position: relative;
|
|
|
|
line-height: 1.4em;
|
|
|
|
height: 1.4em;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-header-md a {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-summary-md {
|
|
|
|
position: relative;
|
|
|
|
line-height: 1.4em;
|
|
|
|
height: 4.2em;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-col-6 {
|
|
|
|
padding-right: 0.75rem;
|
|
|
|
padding-left: 0.75rem;
|
|
|
|
}
|
2024-02-20 19:42:25 +08:00
|
|
|
|
2024-02-20 14:38:24 +08:00
|
|
|
.text-container {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2022-06-22 08:44:32 +08:00
|
|
|
|
|
|
|
</style>
|