diff --git a/apps/admin-web/src/pages/ProductsPage.tsx b/apps/admin-web/src/pages/ProductsPage.tsx
index 98d4d0f..6ec892e 100644
--- a/apps/admin-web/src/pages/ProductsPage.tsx
+++ b/apps/admin-web/src/pages/ProductsPage.tsx
@@ -271,7 +271,9 @@ export default function ProductsPage() {
{ title: '规格', dataIndex: 'spec', width: 120, ellipsis: true },
{ title: '售价', dataIndex: 'price', width: 80, render: (v) => `¥${v}` },
{ title: '权益额', dataIndex: 'benefitAmount', width: 80, render: (v) => `¥${v}` },
- { title: '状态', dataIndex: 'status', width: 80, render: (s) => {PRODUCT_STATUS_LABELS[s] || s} },
+ { title: '状态', dataIndex: 'status', width: 80, render: (s) => (
+ {PRODUCT_STATUS_LABELS[s] || s}
+ ) },
{
title: '现场取货',
dataIndex: 'allowOnSitePickup',
diff --git a/apps/admin-web/src/pages/StoresPage.tsx b/apps/admin-web/src/pages/StoresPage.tsx
index 38182a4..fbd7215 100644
--- a/apps/admin-web/src/pages/StoresPage.tsx
+++ b/apps/admin-web/src/pages/StoresPage.tsx
@@ -329,8 +329,6 @@ export default function StoresPage() {
const selectedRegionCodes = Form.useWatch('regionCodes', createForm);
const selectedCityId = Form.useWatch('cityId', createForm);
const selectedCategoryParentId = Form.useWatch('categoryParentId', createForm);
- const watchedLat = Form.useWatch('latitude', createForm);
- const watchedLng = Form.useWatch('longitude', createForm);
const categoryParentOptions = useMemo(
() =>
@@ -866,12 +864,24 @@ export default function StoresPage() {
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/apps/mini-user/src/pages/home/index.tsx b/apps/mini-user/src/pages/home/index.tsx
index ba14871..c632f42 100644
--- a/apps/mini-user/src/pages/home/index.tsx
+++ b/apps/mini-user/src/pages/home/index.tsx
@@ -150,7 +150,7 @@ export default function HomePage() {
indicatorDots={banners.length > 1}
autoplay={banners.length > 1}
circular={banners.length > 1}
- interval={4000}
+ interval={2500}
>
{banners.map((url) => (
diff --git a/apps/mini-user/src/styles/home.css b/apps/mini-user/src/styles/home.css
index dce852b..14a24f2 100644
--- a/apps/mini-user/src/styles/home.css
+++ b/apps/mini-user/src/styles/home.css
@@ -205,8 +205,8 @@
justify-content: center;
padding: 4px 10px;
border-radius: var(--radius-full);
- background: #2e7d32;
- color: #fff;
+ background: var(--color-aged-amber);
+ color: #5c4500;
font-size: 11px;
font-weight: 600;
line-height: 16px;