From e594478f1678549b9bd3835f0e51b66f809239ff Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Mon, 17 Apr 2023 17:55:34 +0800 Subject: [PATCH] 262 --- .../app/AppIntegratingSupermarket/components/StoreList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/fengdu/app/AppIntegratingSupermarket/components/StoreList.vue b/project/fengdu/app/AppIntegratingSupermarket/components/StoreList.vue index f9977ff2..b99c5aca 100644 --- a/project/fengdu/app/AppIntegratingSupermarket/components/StoreList.vue +++ b/project/fengdu/app/AppIntegratingSupermarket/components/StoreList.vue @@ -140,7 +140,7 @@ }, changeStatus (row) { - this.$confirm(`确定${row.status === '0' ? '启用' : '停用'}该商品?`).then(() => { + this.$confirm(`确定${row.status === '0' ? '启用' : '停用'}该商铺?`).then(() => { this.instance.post(`/app/appintegralsupermarketshop/enable?id=${row.id}`).then(res => { if (res.code == 0) { this.$message.success(`${row.status === '0' ? '启用' : '停用'}成功`)