From 2b66404a2ac75409b145c7a6d48a91e90fca8d06 Mon Sep 17 00:00:00 2001 From: xiaoQQya Date: Thu, 26 Jun 2025 13:24:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=9B=BD=E6=A0=87?= =?UTF-8?q?=E6=94=B6=E6=B5=81=E5=88=97=E8=A1=A8=E6=92=AD=E6=94=BE=E6=8C=89?= =?UTF-8?q?=E9=92=AE=20loading=20=E4=B8=8D=E7=94=9F=E6=95=88=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/views/dialog/hasStreamChannel.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/views/dialog/hasStreamChannel.vue b/web/src/views/dialog/hasStreamChannel.vue index a00496167..7775ef44f 100644 --- a/web/src/views/dialog/hasStreamChannel.vue +++ b/web/src/views/dialog/hasStreamChannel.vue @@ -119,7 +119,7 @@ export default { sendDevicePush: function (row) { const deviceId = row.parentDeviceId const channelId = row.deviceId - row.playing = true + this.$set(row, "playing", true) this.$store.dispatch("play/play", [deviceId, channelId]) .then((data) => { this.$refs.devicePlayer.openDialog("media", deviceId, channelId, { @@ -128,7 +128,7 @@ export default { }) }) .finally(() => { - row.playing = false + this.$set(row, "playing", false) }) }, stopDevicePush: function (row) {