refactor(shop): 优化店铺优惠券页面布局和代码结构- 移除 shop-coupon-container div,直接使用 a-page-header组件

- 调整按钮布局,使用 a-space 组件- 优化图标使用,去除多余空格
- 注释代码功能,提高可读性
- 修改 API_URL 环境变量,启用服务器 API
This commit is contained in:
2025-08-14 19:57:38 +08:00
parent 24e1958bcd
commit 9ba07e6c0d
2 changed files with 372 additions and 373 deletions

View File

@@ -1,5 +1,5 @@
VITE_APP_NAME=后台管理(开发环境)
VITE_API_URL=http://127.0.0.1:9200/api
#VITE_API_URL=http://127.0.0.1:9200/api
#VITE_SERVER_API_URL=http://127.0.0.1:8000/api

View File

@@ -1,5 +1,4 @@
<template>
<div class="shop-coupon-container">
<a-page-header :title="getPageTitle()" @back="() => $router.go(-1)">
<template #extra>
<a-space>
@@ -17,7 +16,6 @@
</a-button>
</a-space>
</template>
</a-page-header>
<a-card :bordered="false" :body-style="{ padding: '16px' }">
<!-- 搜索区域 -->
@@ -232,7 +230,8 @@
<!-- 编辑弹窗 -->
<ShopCouponEdit v-model:visible="showEdit" :data="current" @done="reload"/>
</div>
</a-page-header>
</template>
<script lang="ts" setup>