From 0f747842f5585c5798f8b99d0689d655df8a40b8 Mon Sep 17 00:00:00 2001 From: maqian Date: Fri, 26 Jun 2026 18:18:57 +0800 Subject: [PATCH] [TBID:ECX-9077] chore: merge master changes for release --- src/view/mall/storeshop/store-shop.standard.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/view/mall/storeshop/store-shop.standard.vue b/src/view/mall/storeshop/store-shop.standard.vue index 9c329ee..4af0616 100755 --- a/src/view/mall/storeshop/store-shop.standard.vue +++ b/src/view/mall/storeshop/store-shop.standard.vue @@ -685,15 +685,15 @@ export default { this.loading = false } } else if (command == '3' || command == '4') { - this.loading = true - let remainItems = [] + let remainItems = this.selectItems if (this.IS_ADMIN() && this.VERSION_STANDARD()) { remainItems = this.selectItems.filter((item) => item.supplier_id == '0') } if (!remainItems.length) { - this.$refs.finder.refresh(true) + this.$message.error(this.$t('8c556aa3.20e46f')) return } + this.loading = true try { await this.$api.marketing.updateDistributorItem({ distributor_id: this.searchParams.distributor_id, @@ -701,7 +701,7 @@ export default { is_total_store: command == '3' }) this.$message.success(this.$t('8c556aa3.33130f')) - this.$refs.finder.refresh(true) + this.$refs.finder.refresh() } catch (error) { this.$message.error(this.$t('8c556aa3.5fa802')) } finally {