Browse Source

fix(OTA): 更新版本信息获取接口地址

- 将版本信息获取接口地址从旧的 URL 更新为新的阿里云 OSS 地址
- 新地址为:https://huilima.oss-cn-hangzhou.aliyuncs.com/frontend/html/zhihuiyin/version.json
panqiuyao 5 months ago
parent
commit
8d8a9448a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/views/OTA/index.vue

+ 1 - 1
frontend/src/views/OTA/index.vue

@@ -30,7 +30,7 @@ const fetchVersions = async () => {
   try {
     // 添加时间戳避免缓存问题
     const timestamp = new Date().getTime();
-    const response = await axios.get('https://huilimaimg.cnhqt.com/frontend/html/zhihuiyin/version.json', {
+    const response = await axios.get('https://huilima.oss-cn-hangzhou.aliyuncs.com/frontend/html/zhihuiyin/version.json', {
       params: {
         _t: timestamp
       }