billydong1973
billydong1973
> 怎么解决啊,我也发现这个问题了 client.js:5 > > ``` > Uncaught ReferenceError: __COLOR_PLUGIN_OUTPUT_FILE_NAME__ is not defined > ``` 同问,怎么解决啊
很感谢以上提供的解决方案,目前可以运行了
> good job.
@Bean public MybatisPlusInterceptor mybatisPlusInterceptor() { MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); // 多租户插件 必须放到第一位 try { TenantLineInnerInterceptor tenant = SpringUtils.getBean(TenantLineInnerInterceptor.class); interceptor.addInnerInterceptor(tenant); log.info("已加载多租户插件"); } catch (BeansException ignore) { } // 数据权限处理 interceptor.addInnerInterceptor(dataPermissionInterceptor());...