Files
Yi.Framework/Yi.Bbs.Vue3/src/views/shop/components/ShopCard.vue
2024-11-02 19:50:01 +08:00

29 lines
678 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<el-card shadow="hover">
<template #header>商品-物品A</template>
<img
src="https://ccnetcore.com/prod-api/wwwroot/logo.png"
style="width: 100%"
alt=""/>
<ul>
<li>所需钱钱扣除666</li>
<li>所需价值拥有777</li>
<li>所需积分拥有888</li>
<li>限制数量1</li>
</ul>
<el-divider />
<div class="bottom">
<el-button type="success">申请购买</el-button>
</div>
</el-card>
</template>
<script setup lang="ts">
</script>
<style scoped lang="scss">
.bottom
{
display: flex;
justify-content: flex-end;
margin-top: 20px;
}
</style>