From 1575845de7299a2a38de8643a7c55e36567c9275 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Thu, 16 Oct 2025 16:23:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E6=8C=89=E9=92=AE=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E8=AF=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/memorial/adminMemorial.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/memorial/adminMemorial.vue b/pages/memorial/adminMemorial.vue index 62582f0..17f2398 100644 --- a/pages/memorial/adminMemorial.vue +++ b/pages/memorial/adminMemorial.vue @@ -266,7 +266,7 @@ export default { // 底部按钮:强制开启 async handleForceOpen() { if (!this.ensureUnitSelected()) return; - const ok = await this.confirmAction("确定要强制开启该单元吗?"); + const ok = await this.confirmAction("确定要强制开启该牌位吗?"); if (!ok) return; await this.performPut( `/bst/memorial/open/${this.selectedUnitId}`, @@ -278,7 +278,7 @@ export default { // 底部按钮:强制关闭 async handleForceClose() { if (!this.ensureUnitSelected()) return; - const ok = await this.confirmAction("确定要强制关闭该单元吗?"); + const ok = await this.confirmAction("确定要强制关闭该牌位吗?"); if (!ok) return; await this.performPut( `/bst/memorial/close/${this.selectedUnitId}`, @@ -290,7 +290,7 @@ export default { // 底部按钮:时长归零 async handleResetDuration() { if (!this.ensureUnitSelected()) return; - const ok = await this.confirmAction("确定要将该单元时长归零吗?"); + const ok = await this.confirmAction("确定要将该牌位时长归零吗?"); if (!ok) return; await this.performPut( `/bst/memorial/reset/${this.selectedUnitId}`,