diff --git a/build.sh b/build.sh index bd6b5059..862de4eb 100644 --- a/build.sh +++ b/build.sh @@ -1,7 +1,6 @@ #代码目录 code_path=$PWD -git checkout master git pull cd ${code_path}/manager diff --git a/buyer/src/pages/home/orderCenter/AfterSale.vue b/buyer/src/pages/home/orderCenter/AfterSale.vue index d0f89578..04f085a6 100644 --- a/buyer/src/pages/home/orderCenter/AfterSale.vue +++ b/buyer/src/pages/home/orderCenter/AfterSale.vue @@ -9,7 +9,7 @@ class="width_300" search enter-button - v-model="params.sn" + v-model="params.keywords" @on-search="getList" placeholder="请输入订单号搜索" /> diff --git a/manager/src/views/goods/goods-manage/category.vue b/manager/src/views/goods/goods-manage/category.vue index bbc3ee80..056f9afb 100644 --- a/manager/src/views/goods/goods-manage/category.vue +++ b/manager/src/views/goods/goods-manage/category.vue @@ -114,14 +114,14 @@ - + 启用 禁用 diff --git a/manager/src/views/statistics/member.vue b/manager/src/views/statistics/member.vue index 0312eb22..b1b9fce4 100644 --- a/manager/src/views/statistics/member.vue +++ b/manager/src/views/statistics/member.vue @@ -64,12 +64,12 @@ export default { value: "YESTERDAY", }, { - title: "最近7天", + title: "过去7天", selected: true, value: "LAST_SEVEN", }, { - title: "最近30天", + title: "过去30天", selected: false, value: "LAST_THIRTY", }, diff --git a/manager/src/views/statistics/order.vue b/manager/src/views/statistics/order.vue index fb83d5c6..a65d2185 100644 --- a/manager/src/views/statistics/order.vue +++ b/manager/src/views/statistics/order.vue @@ -454,12 +454,12 @@ export default { value: "YESTERDAY", }, { - title: "最近7天", + title: "过去7天", selected: true, value: "LAST_SEVEN", }, { - title: "最近30天", + title: "过去30天", selected: false, value: "LAST_THIRTY", }, diff --git a/manager/src/views/statistics/traffic.vue b/manager/src/views/statistics/traffic.vue index 841e06a3..4d133beb 100644 --- a/manager/src/views/statistics/traffic.vue +++ b/manager/src/views/statistics/traffic.vue @@ -76,12 +76,12 @@ export default { value: "YESTERDAY", }, { - title: "最近7天", + title: "过去7天", selected: true, value: "LAST_SEVEN", }, { - title: "最近30天", + title: "过去30天", selected: false, value: "LAST_THIRTY", }, diff --git a/seller/src/views/goods/goods-seller/goodsOperationSec.vue b/seller/src/views/goods/goods-seller/goodsOperationSec.vue index 43a01f2c..5d4e8f68 100644 --- a/seller/src/views/goods/goods-seller/goodsOperationSec.vue +++ b/seller/src/views/goods/goods-seller/goodsOperationSec.vue @@ -156,12 +156,12 @@
- + @@ -1568,6 +1568,13 @@ export default { this.submitLoading = false; return; } + + if (this.goodsUnitList && !this.goodsUnitList.find(i => i === this.baseInfoForm.goodsUnit)) { + submit.goodsUnit = "" + this.$Message.error("商品单位不存在"); + this.submitLoading = false; + return; + } let skuInfoNames = this.skuInfo.map((n) => n.name); submit.skuList = []; this.skuTableData.map((sku) => { diff --git a/seller/src/views/promotion/pintuan/pintuan-goods.vue b/seller/src/views/promotion/pintuan/pintuan-goods.vue index 8d53bee3..e4b3a52a 100644 --- a/seller/src/views/promotion/pintuan/pintuan-goods.vue +++ b/seller/src/views/promotion/pintuan/pintuan-goods.vue @@ -277,6 +277,7 @@ export default { delGoods(index) { // 删除商品 this.goodsData.splice(index, 1); + this.selectCount = 0; }, delAll() { // 批量删除商品 @@ -295,6 +296,7 @@ export default { this.goodsData = this.goodsData.filter((item) => { return !ids.includes(item.skuId); }); + this.selectCount = 0; }, }); }, diff --git a/seller/src/views/statistics/order.vue b/seller/src/views/statistics/order.vue index 118bfa83..139093fd 100644 --- a/seller/src/views/statistics/order.vue +++ b/seller/src/views/statistics/order.vue @@ -377,12 +377,12 @@ export default { value: "YESTERDAY", }, { - title: "最近7天", + title: "过去7天", selected: true, value: "LAST_SEVEN", }, { - title: "最近30天", + title: "过去30天", selected: false, value: "LAST_THIRTY", }, diff --git a/seller/src/views/statistics/traffic.vue b/seller/src/views/statistics/traffic.vue index cac968cf..fc050b8d 100644 --- a/seller/src/views/statistics/traffic.vue +++ b/seller/src/views/statistics/traffic.vue @@ -74,12 +74,12 @@ export default { value: "YESTERDAY", }, { - title: "最近7天", + title: "过去7天", selected: true, value: "LAST_SEVEN", }, { - title: "最近30天", + title: "过去30天", selected: false, value: "LAST_THIRTY", },