1.<el-card>生成带图片、内容、操作按钮的卡片。 2.循环的时候,一行固定五个,最多只有两行共10条数据。 3.设置好相隔宽度,自动适应屏幕,先用死数据给我所有数据。 4.最后在底部,生成elementUI的分页,包括总条数和跳转指定页、当前页,将数量填充设置好 5.框架为vue2脚手架使用
时间: 2024-03-07 13:54:21 浏览: 61
好的,这里提供一份示例代码,实现上述功能:
``` vue
<template>
<div>
<el-card v-for="(item, index) in cards" :key="index" class="card" :body-style="{ padding: '0px' }">
<img :src="item.image" class="image">
<div style="padding: 14px;">
<span class="title">{{ item.title }}</span>
<div class="description">{{ item.description }}</div>
<div class="operation">
<el-button type="primary">{{ item.buttonText }}</el-button>
</div>
</div>
</el-card>
<el-pagination :total="total" :page-size="pageSize" layout="total, prev, pager, next" class="pagination"></el-pagination>
</div>
</template>
<script>
export default {
data() {
return {
cards: [
{ image: 'https://picsum.photos/200/200', title: 'Card 1', description: 'This is a card', buttonText: 'Click me' },
{ image: 'https://picsum.photos/200/200', title: 'Card 2', description: 'This is a card', buttonText: 'Click me' },
{ image: 'https://picsum.photos/200/200', title: 'Card 3', description: 'This is a card', buttonText: 'Click me' },
{ image: 'https://picsum.photos/200/200', title: 'Card 4', description: 'This is a card', buttonText: 'Click me' },
{ image: 'https://picsum.photos/200/200', title: 'Card 5', description: 'This is a card', buttonText: 'Click me' },
{ image: 'https://picsum.photos/200/200', title: 'Card 6', description: 'This is a card', buttonText: 'Click me' },
{ image: 'https://picsum.photos/200/200', title: 'Card 7', description: 'This is a card', buttonText: 'Click me' },
{ image: 'https://picsum.photos/200/200', title: 'Card 8', description: 'This is a card', buttonText: 'Click me' },
{ image: 'https://picsum.photos/200/200', title: 'Card 9', description: 'This is a card', buttonText: 'Click me' },
{ image: 'https://picsum.photos/200/200', title: 'Card 10', description: 'This is a card', buttonText: 'Click me' },
],
total: 10,
pageSize: 5,
};
},
};
</script>
<style scoped>
.card {
width: calc(20% - 16px);
margin-right: 16px;
margin-bottom: 16px;
}
.image {
width: 100%;
height: 200px;
object-fit: cover;
}
.title {
font-size: 18px;
font-weight: bold;
margin-right: 20px;
}
.description {
margin-top: 12px;
margin-bottom: 12px;
}
.operation {
text-align: right;
}
.pagination {
margin-top: 16px;
text-align: right;
}
</style>
```
这段代码实现了:
1. 使用 `el-card` 生成带图片、内容、操作按钮的卡片。
2. 循环的时候,一行固定五个,最多只有两行共10条数据。
3. 设置好相隔宽度,自动适应屏幕,使用 `calc()` 函数实现自适应宽度。
4. 在底部生成 `elementUI` 的分页,包括总条数和跳转指定页、当前页,将数量填充设置好。
5. 使用 `vue2` 脚手架。
需要注意的是,示例代码中的图片使用了 `https://picsum.photos/` 这个网站提供的随机图片。你需要将 `image` 属性替换成自己的图片链接。
阅读全文