fix: use localhost for BaoDan admin URL in local dev

Replace hardcoded server IP 150.5.135.143 with localhost in
openDifyAdmin() to match local development environment.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
wsb1224 2026-07-24 14:38:52 +08:00
parent 53346c9def
commit 7a53834f5d

View File

@ -322,7 +322,7 @@ onMounted(() => {
function openDifyAdmin() {
// Dify 3000
window.open('http://150.5.135.143:3000', '_blank')
window.open('http://localhost:3000', '_blank')
showMobileMenu.value = false
}