diff --git a/README.md b/README.md
index 62fda1fb..a94031b2 100644
--- a/README.md
+++ b/README.md
@@ -9,11 +9,12 @@
##### 交流 qq 1群 961316482(已满)
##### 交流 qq 2群 875294241(已满)
##### 交流 qq 3群 263785057(已满)
-##### 交流 qq 4群 674617534
+##### 交流 qq 4群 674617534 (已满)
+##### 交流 qq 5群 594675235
##### 体验 公众号/小程序/APP 体验,扫描二维码
-![image-20210511171611793](https://pickmall.cn/assets/imgs/h5-qrcode.png)
+![image-20210511171611793](https://static.pickmall.cn/images/h5-qrcode.png)
[![star](https://gitee.com/beijing_hongye_huicheng/lilishop/badge/star.svg?theme=dark)](https://gitee.com/beijing_hongye_huicheng/lilishop/stargazers)
![github](https://img.shields.io/github/stars/hongyehuicheng/lilishop.svg?style=social&logo=#181717)
@@ -55,7 +56,7 @@ PS:手机验证码为 ‘111111’
**商城 小程序/公众号/APP**:扫描二维码
-![image-20210511171611793](https://pickmall.cn/assets/imgs/h5-qrcode.png)
+![image-20210511171611793](https://static.pickmall.cn/images/h5-qrcode.png)
### 快速本地部署
@@ -74,24 +75,24 @@ PS:手机验证码为 ‘111111’
#### 平台管理端功能
-![平台管理端功能](https://pickmall.cn/assets/imgs/other/managerList1.jpg)
+![平台管理端功能](https://static.pickmall.cn/images/other/managerList1.jpg)
#### 卖家功能
-![商家端功能](https://pickmall.cn/assets/imgs/other/storeList.jpg)
+![商家端功能](https://static.pickmall.cn/images/other/storeList.jpg)
### 商城前端功能展示
#### 商城移动端
-
+
#### 平台管理端
-![管理端功能展示](https://pickmall.cn/assets/imgs/other/manager.gif)
+![管理端功能展示](https://static.pickmall.cn/images/other/manager.gif)
### 技术选型
@@ -164,4 +165,12 @@ PS:手机验证码为 ‘111111’
##### 交流 qq 1群 961316482(已满)
##### 交流 qq 2群 875294241(已满)
##### 交流 qq 3群 263785057(已满)
-##### 交流 qq 4群 674617534
+##### 交流 qq 4群 674617534(已满)
+##### 交流 qq 5群 594675235
+
+### 附录
+有人有自己的学习视频、学习记录文档、希望宣传关联开源项目等均可以私聊仓库所有者。
+
+类似:
+
+清晨敲代码同学的分析: https://blog.csdn.net/vaevaevae233/category_12103567.html
\ No newline at end of file
diff --git a/buyer/src/pages/GoodsList.vue b/buyer/src/pages/GoodsList.vue
index 0d454c22..68a5cc1b 100644
--- a/buyer/src/pages/GoodsList.vue
+++ b/buyer/src/pages/GoodsList.vue
@@ -49,35 +49,35 @@
class="goods-show-info"
v-for="(item, index) in goodsList"
:key="index"
- @click="goGoodsDetail(item.id, item.content.goodsId)"
+ @click="goGoodsDetail(item.id, item.goodsId)"
>
-
+
{{
- item.content.price | unitPrice("¥")
+ item.price | unitPrice("¥")
}}
批发
- {{ item.content.goodsName }}
+ {{ item.goodsName }}
- 已有{{ item.content.commentNum || 0 }}{{ item.commentNum || 0 }}人评价
{{
- item.content.storeName
+ item.storeName
}}
@@ -85,21 +85,21 @@
自营
虚拟
实物
@@ -146,7 +146,6 @@ export default {
],
goodsList: [], // 商品列表
loading: false, // 加载状态
- goodsListType: "",
total: 0, // 列表总数
params: {
// 请求参数
@@ -230,11 +229,8 @@ export default {
.then((res) => {
this.loading = false;
if (res.success) {
- this.goodsList = res.result.content;
- this.total = res.result.totalElements;
- for (var i = 0; i < this.goodsList.length; i++) {
- this.goodsListType = this.goodsList[i];
- }
+ this.goodsList = res.result.records;
+ this.total = res.result.total;
}
})
.catch(() => {
diff --git a/buyer/src/pages/Merchant.vue b/buyer/src/pages/Merchant.vue
index 773d8ac8..621f3ad5 100644
--- a/buyer/src/pages/Merchant.vue
+++ b/buyer/src/pages/Merchant.vue
@@ -7,14 +7,14 @@
{{ storeMsg.storeName || 'xx店铺' }}
-
+
- {{
+ {{
storeCollected ? '已收藏店铺' : '收藏店铺'
}}
- 联系客服
@@ -26,7 +26,7 @@
>
首页
-
+
{{ cate.labelName }}
@@ -34,10 +34,10 @@
{{ sec.labelName }}
@@ -63,38 +63,38 @@
-
+
{{
- item.content.price | unitPrice("¥")
+ item.price | unitPrice("¥")
}}
- {{ item.content.goodsName }}
+ {{ item.goodsName }}
- 已有{{ item.content.commentNum || 0 }}{{ item.commentNum || 0 }}人评价
@@ -107,15 +107,14 @@
-
-
diff --git a/manager/src/views/page/article-manage/template/statisticsHotWords.vue b/manager/src/views/page/article-manage/template/statisticsHotWords.vue
index cc9fe130..d1e55ce7 100644
--- a/manager/src/views/page/article-manage/template/statisticsHotWords.vue
+++ b/manager/src/views/page/article-manage/template/statisticsHotWords.vue
@@ -3,7 +3,7 @@
-
+
+
diff --git a/manager/src/views/sys/setting-manage/authLogin/WECHAT_CONNECT.vue b/manager/src/views/sys/setting-manage/authLogin/WECHAT_CONNECT.vue
index cb57be19..d03e3d82 100644
--- a/manager/src/views/sys/setting-manage/authLogin/WECHAT_CONNECT.vue
+++ b/manager/src/views/sys/setting-manage/authLogin/WECHAT_CONNECT.vue
@@ -49,7 +49,7 @@
+
diff --git a/seller/src/views/statistics/order.vue b/seller/src/views/statistics/order.vue
index 8d9bb3de..d9e00b70 100644
--- a/seller/src/views/statistics/order.vue
+++ b/seller/src/views/statistics/order.vue
@@ -523,6 +523,7 @@ export default {
},
// 实例化订单图表
async initOrderChartList(name) {
+ this.orderChart ? this.orderChart.clear() : ''
const res = await API_Goods.getOrderChart(this.orderParams);
if (res.success) {
this.chartList = res.result;
diff --git a/seller/src/views/statistics/traffic.vue b/seller/src/views/statistics/traffic.vue
index 348e1315..41bdad36 100644
--- a/seller/src/views/statistics/traffic.vue
+++ b/seller/src/views/statistics/traffic.vue
@@ -190,6 +190,7 @@ export default {
},
// 初始化
init() {
+ this.orderChart ? this.orderChart.clear() : ''
API_Member.getStatisticsList(this.params).then((res) => {
if (res.result) {
this.data = res.result;