diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..aca29012 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +/.vscode/ +/.idea/ +/dist/ +node_modules/ +yarn.lock +package-lock.json diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml deleted file mode 100644 index 88b623fc..00000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index 79ee123c..00000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 03d9549e..00000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/lili-shop-ui.iml b/.idea/lili-shop-ui.iml deleted file mode 100644 index 24643cc3..00000000 --- a/.idea/lili-shop-ui.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 1c24890b..00000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index b3b94630..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7f..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml deleted file mode 100644 index 4702c80f..00000000 --- a/.idea/workspace.xml +++ /dev/null @@ -1,380 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - -<<<<<<< HEAD - - - - -======= - - ->>>>>>> new-lmr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<<<<<<< HEAD - -======= - ->>>>>>> new-lmr - - - - - - - - - - - - -<<<<<<< HEAD - - -======= - ->>>>>>> new-lmr - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1597738125477 - - - 1597738125477 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1613996019944 - - - - 1613996019944 - - - 1613996389449 - - - - 1613996389449 - - - 1614076370139 - - - - 1614076370139 - - - 1614080544415 - - - - 1614080544415 - - - 1614143298555 - - - - 1614143298555 - - - 1614143902874 - - - - 1614143902874 - - - 1614144541858 - - - - 1614144541858 - - - 1614230386509 - - - - 1614230386509 - - - 1614230407722 - - - - 1614230407722 - - - 1614230544808 - - - - 1614230544808 - - - 1614230627881 - - - - 1614230627881 - - - 1614231645143 - - - - 1614231645143 - - - 1614231785359 - - - - 1614231785359 - - - 1614249105672 - - - - 1614249105672 - - - 1614258980903 - - - - 1614258980903 - - - 1614259068248 - - - - 1614259068248 - - - 1614313690732 - - - - 1614313690732 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - file://$PROJECT_DIR$/manager/src/views/sys/monitor/monitor.vue - 5 - - - - - - \ No newline at end of file diff --git a/buyer/src/components/goodsDetail/ShowGoodsDetail.vue b/buyer/src/components/goodsDetail/ShowGoodsDetail.vue index 8e27e6c6..862e59e9 100644 --- a/buyer/src/components/goodsDetail/ShowGoodsDetail.vue +++ b/buyer/src/components/goodsDetail/ShowGoodsDetail.vue @@ -1,5 +1,5 @@ - + @@ -71,7 +71,7 @@ - + {{item.groupName}} @@ -220,6 +220,7 @@ export default { width: 1200px; margin: 15px auto; display: flex; + overflow: scroll; flex-direction: row; } diff --git a/buyer/src/pages/Cart.vue b/buyer/src/pages/Cart.vue index 321376b2..ff6cfb63 100644 --- a/buyer/src/pages/Cart.vue +++ b/buyer/src/pages/Cart.vue @@ -228,7 +228,7 @@ export default { return { couponAvailable: false, // 展示优惠券 stepIndex: 0, // 当前处于哪一步,购物车==0,填写订单信息==1,成功提交订单==2 - goodsTotal: 1, // 商品数量 + goodsTotal: 0, // 商品数量 checkedNum: 0, // 选中数量 allChecked: false, // 全选 loading: false, // 加载状态 @@ -278,7 +278,7 @@ export default { const list = this.cartList; list.forEach((shop) => { shop.skuList.forEach((goods) => { - if(goods.checked) { + if (goods.checked) { idArr.push(goods.goodsSku.id); } }); diff --git a/buyer/src/pages/GoodsList.vue b/buyer/src/pages/GoodsList.vue index 90106cb7..6343afcf 100644 --- a/buyer/src/pages/GoodsList.vue +++ b/buyer/src/pages/GoodsList.vue @@ -150,6 +150,12 @@ export default { $route() { const keyword = this.$route.query.keyword; this.handleSearch(keyword); + if (this.$route.query.categoryId) { + let cateId = this.$route.query.categoryId.split(","); + Object.assign(this.params, this.$route.query); + this.params.categoryId = cateId[cateId.length - 1]; + this.getGoodsList(); + } }, }, methods: { diff --git a/buyer/src/pages/home/memberCenter/evaluation/EvalDetail.vue b/buyer/src/pages/home/memberCenter/evaluation/EvalDetail.vue index ba9364b4..c898f1b3 100644 --- a/buyer/src/pages/home/memberCenter/evaluation/EvalDetail.vue +++ b/buyer/src/pages/home/memberCenter/evaluation/EvalDetail.vue @@ -3,8 +3,9 @@ - 创建人:{{orderGoods.createBy | secrecyMobile}} - {{orderGoods.createTime}} + 创建人:{{ orderGoods.createBy | secrecyMobile }} + {{ orderGoods.createTime }} @@ -13,31 +14,64 @@ 物流评价: 服务评价: - 服务评价: + 服务评价: - + - - {{orderGoods.goodsName}} + + + {{ orderGoods.goodsName }} + 商品评价: - + 好评 中评 差评 - + - + + 商家回复: + {{ orderGoods.reply }} + + - - + + @@ -48,44 +82,47 @@ - +
- 创建人:{{orderGoods.createBy | secrecyMobile}} - {{orderGoods.createTime}} + 创建人:{{ orderGoods.createBy | secrecyMobile }} + {{ orderGoods.createTime }}
{{orderGoods.goodsName}}
+ {{ orderGoods.goodsName }} +