diff --git a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-goods-card/coreshop-goods-card.vue b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-goods-card/coreshop-goods-card.vue
index b664afe2..0b065ba9 100644
--- a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-goods-card/coreshop-goods-card.vue
+++ b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-goods-card/coreshop-goods-card.vue
@@ -1,64 +1,64 @@
-
-
-
- 推荐
- 热门
-
-
-
- {{ props.goodsData.name }}
-
-
- {{ props.goodsData.brief }}
-
+
+
+
+ 推荐
+ 热门
+
+
+
+ {{ props.goodsData.name }}
+
+
+ {{ props.goodsData.brief }}
+
-
+
-
-
-
-
- ¥
- {{ props.goodsData.price }}
-
- ¥{{ props.goodsData.mktprice }}
-
-
- 立即购买
-
-
-
-
-
-
+
+
+
+
+ ¥
+ {{ props.goodsData.price }}
+
+ ¥{{ props.goodsData.mktprice }}
+
+
+ 立即购买
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-view-more/coreshop-view-more.vue b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-view-more/coreshop-view-more.vue
index c3d19512..37438777 100644
--- a/CoreCms.Net.Uni-App/CoreShop/components/coreshop-view-more/coreshop-view-more.vue
+++ b/CoreCms.Net.Uni-App/CoreShop/components/coreshop-view-more/coreshop-view-more.vue
@@ -1,39 +1,39 @@
-
- {{ props.title }}
-
-
-
-
+
+ {{ props.title }}
+
+
+
+
\ No newline at end of file
diff --git a/CoreCms.Net.Uni-App/CoreShop/core/consts/page-comm.ts b/CoreCms.Net.Uni-App/CoreShop/core/consts/page-comm.ts
index d4bb0ba2..2c624863 100644
--- a/CoreCms.Net.Uni-App/CoreShop/core/consts/page-comm.ts
+++ b/CoreCms.Net.Uni-App/CoreShop/core/consts/page-comm.ts
@@ -2,4 +2,7 @@
export const onHomePageShow = "onHomePageShow";
/** 监听分类onHide需要的常量字段 */
-export const onClassifyPageHide = "onClassifyPageHide";
\ No newline at end of file
+export const onClassifyPageHide = "onClassifyPageHide";
+
+/** 监听上拉刷新onPullDownRefresh要的常量字段 */
+export const onClassifyPagePullDownRefresh = "onClassifyPagePullDownRefresh";
diff --git a/CoreCms.Net.Uni-App/CoreShop/pages/category/category.vue b/CoreCms.Net.Uni-App/CoreShop/pages/category/category.vue
index 3c9ec712..c286e20a 100644
--- a/CoreCms.Net.Uni-App/CoreShop/pages/category/category.vue
+++ b/CoreCms.Net.Uni-App/CoreShop/pages/category/category.vue
@@ -240,6 +240,7 @@
onPullDownRefresh(async () => {
state.page = 1;
state.totalPages = 1;
+ state.goodsList = [[], []];
await handleuQueryProduct(queryParams);
uni.stopPullDownRefresh();
});
diff --git a/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-five/classify-five.vue b/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-five/classify-five.vue
index bcf597ea..2118cb2c 100644
--- a/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-five/classify-five.vue
+++ b/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-five/classify-five.vue
@@ -1,410 +1,416 @@
-
-
-
-
-
-
-
-
-
-
- {{ item.name }}
-
-
-
-
-
- 全部
-
-
-
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+ 全部
+
+
+
-
-
-
-
- {{ item.name }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ¥
- {{ item.price }}
-
- ¥{{ item.mktprice }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ¥
+ {{ item.price }}
+
+ ¥{{ item.mktprice }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
- 购物车数量:{{ state.cartCount }}
- ¥{{ state.cartMoney }}
-
-
-
- 去结算
-
-
+
+
+
+
+
+
+
+ 购物车数量:{{ state.cartCount }}
+ ¥{{ state.cartMoney }}
+
+
+
+ 去结算
+
+
-
-
-
+
+
+
-
-
-
- 全部分类
-
-
-
-
-
-
- {{ item.name }}
-
-
-
- 点击收起
-
-
-
+
+
+
+ 全部分类
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+ 点击收起
+
+
+
\ No newline at end of file
diff --git a/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-four/classify-four.vue b/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-four/classify-four.vue
index 485bf70c..1bcaac9d 100644
--- a/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-four/classify-four.vue
+++ b/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-four/classify-four.vue
@@ -1,301 +1,307 @@
-
-
-
-
- {{ item.name }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ¥
- {{ item.price }}
-
- ¥{{ item.mktprice }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 购物车数量:{{ state.cartCount }}
- ¥{{ state.cartMoney }}
-
-
-
- 去结算
-
-
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ¥
+ {{ item.price }}
+
+ ¥{{ item.mktprice }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 购物车数量:{{ state.cartCount }}
+ ¥{{ state.cartMoney }}
+
+
+
+ 去结算
+
+
-
-
-
+
+
+
-
+
\ No newline at end of file
diff --git a/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-three/classify-three.vue b/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-three/classify-three.vue
index 5839280f..e7580efa 100644
--- a/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-three/classify-three.vue
+++ b/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify-page/classify-three/classify-three.vue
@@ -1,72 +1,74 @@
-
-
-
-
- {{ item.name }}
-
-
-
-
-
-
-
-
-
-
-
- {{ item.name }}
-
-
-
-
-
-
-
-
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify.vue b/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify.vue
index 2e85f21e..6c50d235 100644
--- a/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify.vue
+++ b/CoreCms.Net.Uni-App/CoreShop/pages/classify/classify.vue
@@ -1,115 +1,118 @@
-
-
-
-
-
-
-
-
-
-
-
- 分类
-
-
- 搜索
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ 分类
+
+
+ 搜索
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CoreCms.Net.Uni-App/CoreShop/pages/components/custom-page/components/home-swiper/home-swiper.vue b/CoreCms.Net.Uni-App/CoreShop/pages/components/custom-page/components/home-swiper/home-swiper.vue
index 470a9791..90901362 100644
--- a/CoreCms.Net.Uni-App/CoreShop/pages/components/custom-page/components/home-swiper/home-swiper.vue
+++ b/CoreCms.Net.Uni-App/CoreShop/pages/components/custom-page/components/home-swiper/home-swiper.vue
@@ -1,39 +1,39 @@
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/CoreCms.Net.Uni-App/CoreShop/pages/subpackage/form/detail/detail.vue b/CoreCms.Net.Uni-App/CoreShop/pages/subpackage/form/detail/detail.vue
index 35493629..0a5ffcc5 100644
--- a/CoreCms.Net.Uni-App/CoreShop/pages/subpackage/form/detail/detail.vue
+++ b/CoreCms.Net.Uni-App/CoreShop/pages/subpackage/form/detail/detail.vue
@@ -13,7 +13,7 @@
- {{ state.formInfo?.description }}1
+ {{ state.formInfo?.description }}