优化代码

This commit is contained in:
pengxiaolong
2025-08-21 22:07:46 +08:00
parent 89014e306e
commit cb34cd9673
2 changed files with 6 additions and 4 deletions

View File

@@ -411,11 +411,13 @@ function initNotification() {
} }
function showNotification() { function showNotification() {
new Notification("新消息到达", { const notification = new Notification("新消息到达", {
body: "您有 "+ chatList.value.unreadTotal +" 封未读消息", body: "您有 "+ chatList.value.unreadTotal +" 封未读消息",
lang: "zh-CN", // 语言 lang: "zh-CN", // 语言
// onClick: () => window.location.href = "/nav/Message",
}); });
notification.addEventListener('click', () => {
window.location.href = "https://pk.webapp.yolozs.com/nav/Message";
});
} }
//获取会话列表 //获取会话列表

View File

@@ -15,10 +15,10 @@ import { setStorage , getStorage } from '@/utils/storage.js';
let baseURL = '' let baseURL = ''
if (process.env.NODE_ENV === 'development') { if (process.env.NODE_ENV === 'development') {
// 生产环境 // 生产环境
baseURL = "http://192.168.1.174:8086/" baseURL = "https://pk.zhukeping.com/"
} else { } else {
// 测试环境 // 测试环境
baseURL = "http://192.168.1.174:8086/" baseURL = "https://pk.zhukeping.com/"
} }
// 请求拦截器 // 请求拦截器