Browse Source

修复bug

master
前端-胡立永 2 weeks ago
parent
commit
21271cdd87
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      admin-pc/.env.production
  2. BIN
      admin-pc/dist.zip
  3. +2
    -2
      module-common/src/main/java/org/jeecg/api/service/impl/AppletClassServiceImpl.java

+ 1
- 1
admin-pc/.env.production View File

@ -1,5 +1,5 @@
NODE_ENV=production NODE_ENV=production
# VUE_APP_API_BASE_URL=http://localhost:8081/recycle-admin-v2/ # VUE_APP_API_BASE_URL=http://localhost:8081/recycle-admin-v2/
VUE_APP_API_BASE_URL=https://www.ddmhs.top/recycle-admin-v2/
VUE_APP_API_BASE_URL=https://wwwv2.ddmhs.top/recycle-admin-v2/
VUE_APP_CAS_BASE_URL=http://localhost:8888/cas VUE_APP_CAS_BASE_URL=http://localhost:8888/cas
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview

BIN
admin-pc/dist.zip View File


+ 2
- 2
module-common/src/main/java/org/jeecg/api/service/impl/AppletClassServiceImpl.java View File

@ -100,8 +100,8 @@ public class AppletClassServiceImpl implements AppletClassService {
@Override @Override
public Result<?> getGoodsBrandProduct(String productId, String brandId) { public Result<?> getGoodsBrandProduct(String productId, String brandId) {
return Result.ok(commonBrandProductService.lambdaQuery() return Result.ok(commonBrandProductService.lambdaQuery()
// .eq(CommonBrandProduct::getBrandId, brandId)
// .eq(CommonBrandProduct::getShopId, productId)
.eq(CommonBrandProduct::getBrandId, brandId)
.eq(CommonBrandProduct::getShopId, productId)
.list()); .list());
} }


Loading…
Cancel
Save