|  | @@ -81,22 +81,22 @@ service.interceptors.request.use(
 | 
	
		
			
				|  |  |        // please modify it according to the actual situation
 | 
	
		
			
				|  |  |        config.headers['Authorization'] = getToken()
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  | -    const tenantId = sessionStorage.getItem('tenantId') || null
 | 
	
		
			
				|  |  | -    const configData = {
 | 
	
		
			
				|  |  | -      ...config.data,
 | 
	
		
			
				|  |  | -      tenantId
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -    const configParams = {
 | 
	
		
			
				|  |  | -      ...config.params,
 | 
	
		
			
				|  |  | -      tenantId
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | +    // const tenantId = sessionStorage.getItem('tenantId') || null
 | 
	
		
			
				|  |  | +    // const configData = {
 | 
	
		
			
				|  |  | +    //   ...config.data,
 | 
	
		
			
				|  |  | +    //   tenantId
 | 
	
		
			
				|  |  | +    // }
 | 
	
		
			
				|  |  | +    // const configParams = {
 | 
	
		
			
				|  |  | +    //   ...config.params,
 | 
	
		
			
				|  |  | +    //   tenantId
 | 
	
		
			
				|  |  | +    // }
 | 
	
		
			
				|  |  |      if (config.requestType === 'form') {
 | 
	
		
			
				|  |  |        config.headers['Content-Type'] = 'application/x-www-form-urlencoded'
 | 
	
		
			
				|  |  | -      config.data = qs.stringify(cleanDeep(configData))
 | 
	
		
			
				|  |  | +      config.data = qs.stringify(cleanDeep(config.data))
 | 
	
		
			
				|  |  |      } else {
 | 
	
		
			
				|  |  | -      config.data = cleanDeep(configData)
 | 
	
		
			
				|  |  | +      config.data = cleanDeep(config.data)
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  | -    config.params = cleanDeep(configParams)
 | 
	
		
			
				|  |  | +    config.params = cleanDeep(config.params)
 | 
	
		
			
				|  |  |      return config
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    error => {
 |