feat: bbs新增商城页面初版

This commit is contained in:
橙子
2024-11-02 19:50:01 +08:00
parent ca1b8a728d
commit dd29c9a2fa
4 changed files with 118 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
<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>