Browse Source

feat: 删除多余的天气图片

珍珍 2 weeks ago
parent
commit
beefaed2fc

BIN
public/images/pac/weather/多云.png


BIN
public/images/pac/weather/大雨.png


BIN
public/images/pac/weather/小雨.png


BIN
public/images/pac/weather/晴.png


BIN
public/images/pac/weather/暴雨.png


BIN
public/images/pac/weather/阴.png


BIN
public/images/pac/weather/阵雨.png


BIN
public/images/pac/weather/雨夹雪.png


BIN
public/images/pac/weather/雪.png


BIN
public/images/pac/weather/雷阵雨.png


File diff suppressed because it is too large
+ 125 - 0
public/images/pac/weather/雷阵雨.svg


BIN
public/images/pac/weather/雾.png


BIN
public/images/pac/weather/风.png


BIN
public/images/pac/weather/龙卷风.png


+ 4 - 5
src/utils/https.ts

@@ -22,13 +22,12 @@ export const https = (configobj: any = { timeout: '',isComParams:true }) => {
   }
   const https = new HttpClient(config)
   https.httpClient.interceptors.request.use(function (request) {
-    // debugger
     let comInfo = getUserInfo()
-    // comInfo.projectId="Pj1101080255"
-    console.log("configobj.isComParams==",configobj.isComParams)
-    // const comParams: string = configobj.isComParams?setQueryConfig(comInfo):''
-    const comParams: string=setQueryConfig(comInfo);
+    const comParams: string = configobj.isComParams?setQueryConfig(comInfo):''
+    // const comParams: string=setQueryConfig(comInfo);
     let url: any = request.url
+    console.log("url==",url);
+    console.log("url==",comParams);
     if (url.indexOf("?") != -1) {
       request.url = request.url + "&" + comParams
     } else {