+  
+    
+      
+        
+
+        {{item.content}}
+      
+
+    
+    
+  
+
+
+
+
+
\ No newline at end of file
diff --git a/plugins/APPUpdate/index.js b/plugins/APPUpdate/index.js
index fb7a54b..363b6c5 100644
--- a/plugins/APPUpdate/index.js
+++ b/plugins/APPUpdate/index.js
@@ -2,7 +2,7 @@
 /**** 此文件说明请看注释 *****/
 // 可以用自己项目的请求方法
 // 请求配置说明:https://ext.dcloud.net.cn/plugin?id=822
-import { getAppVersionList } from "@/api/message.js";
+import { getAppVersion } from "@/api/message.js";
 
 const platform = uni.getSystemInfoSync().platform;
 // 主颜色
@@ -28,7 +28,7 @@ export const getServerNo = function (callback) {
 
   platform == "android" ? (type = "ANDROID") : (type = "IOS");
 
-  getAppVersionList(type).then((res) => {
+  getAppVersion(type).then((res) => {
     if (res.data.success && res.data.result.downloadUrl) {
       let response = res.data.result;
       let result = {};
diff --git a/utils/request.js b/utils/request.js
index 0825b42..2b03fbf 100644
--- a/utils/request.js
+++ b/utils/request.js
@@ -189,7 +189,6 @@ http.interceptors.response.use(
     /* 请求之后拦截器。可以使用async await 做异步操作  */
     // token存在并且token过期
     let token = storage.getAccessToken();
-    console.warn(token)
     if (
       (token && response.statusCode === 403) ||
       response.data.status === 403