zq-erp/src/main/java/com/matrix/config/MvcCoreConfig.java
@@ -21,7 +21,6 @@
 * @date 2019-06-14 15:50
 */
@Configuration()
@PropertySource("classpath:config/system.properties")
public class MvcCoreConfig implements WebMvcConfigurer {
   @Autowired
@@ -72,6 +71,9 @@
      //小程序公司与域名对应关系拦截
      registry.addInterceptor(hostInterceptor).addPathPatterns("/**/wxapi/**")
            .addPathPatterns("/api/common/wxLogin/**")
            .addPathPatterns("/api/common/bindUser")
            .addPathPatterns("/api/user/xcxloginOut/**")
            .excludePathPatterns("/wxCommon/wxapi/wxpayCallback")
            .excludePathPatterns("/wxCommon/wxapi/rechargeCallBack");
   }