From 207f7427703d960da09103903aad1c1e4c3adf81 Mon Sep 17 00:00:00 2001 From: testadmin Date: Wed, 6 May 2026 15:48:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BC=80=E7=89=8C=E7=BB=93=E6=9E=9C?= =?UTF-8?q?=E6=94=B9=E7=94=A8HTML=E6=96=87=E5=AD=97=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=EF=BC=8C=E5=BA=84=E5=AF=B9=E7=BA=A2=E8=89=B2/=E9=97=B2?= =?UTF-8?q?=E5=AF=B9=E8=93=9D=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - showPng()不再用PNG图片,改为HTML文字渲染 - 庄对永远红色(#b20a00),闲对永远蓝色(#0543bc) - 版本号 v10.0.3 → v10.0.4 --- app/common.php | 2 +- public/static/handle/js/handle_b.js | 107 ++++------------------------ 2 files changed, 15 insertions(+), 94 deletions(-) diff --git a/app/common.php b/app/common.php index 094e39a..eda3926 100644 --- a/app/common.php +++ b/app/common.php @@ -3,7 +3,7 @@ //应用公共文件 // 版本号 -define('VERSION_V','?ver=v10.0.3'); +define('VERSION_V','?ver=v10.0.4'); // 加密秘钥 const UC_AUTH_KEY = 'L='); - } + var winText = '', winColor = '', pairHtml = ''; + var bpLabel = (lang.banker_pair || lang.banker+'对'); + var ppLabel = (lang.player_pair || lang.player+'对'); + if(opening == 1){ winText = lang.banker+'赢'; winColor = '#b20a00'; mp3List = ['banker_win.mp3']; } + if(opening == 2){ winText = lang.player+'赢'; winColor = '#0543bc'; mp3List = ['player_win.mp3']; } + if(opening == 3){ winText = lang.tie; winColor = '#0A5101'; mp3List = ['tie.mp3']; } + if(pair == 1 || pair == 3) { pairHtml += '' + bpLabel + ' '; if(isVoice) mp3List.push('banker_pair.mp3'); } + if(pair == 2 || pair == 3) { pairHtml += '' + ppLabel + ''; if(isVoice) mp3List.push('player_pair.mp3'); } + if(isVoice){ audioMp3(mp3List).Play(); } + var html = '
'+winText+'
'; + if(pairHtml) html += '
'+pairHtml+'
'; + html += '
'; + $("#resultAreaTimer").hide(); + $("#resultAreaImg").html(html); } function showPngDt (opening,isVoice){