|
@@ -29,6 +29,7 @@ import com.citu.module.menduner.system.enums.MathOperationEnum;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.jeasy.rules.api.Facts;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.util.StringUtils;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
@@ -159,7 +160,9 @@ public class EventTrackServiceImpl implements EventTrackService {
|
|
|
return Collections.singletonList(EventTrackPointRespVO.builder().build());
|
|
|
}
|
|
|
// 搜索出配置后,带入场景去判断处理
|
|
|
- url = url + scene;
|
|
|
+ if(StringUtils.hasText(scene)) {
|
|
|
+ url = url + scene;
|
|
|
+ }
|
|
|
|
|
|
// 遍历处理每个积分规则配置
|
|
|
for (PointRuleConfigDO config : configList) {
|