菜单 增加参数

用户默认头像
This commit is contained in:
2024-04-11 16:55:40 +08:00
parent 5946c78cf9
commit f8c53d3548
6 changed files with 11 additions and 336 deletions

View File

@@ -130,15 +130,6 @@ public class HomePageService {
return Result.success(CodeEnum.SUCCESS, homeVOList);
}
private List<String> tagList(String tag){
if (tag == null){
return new ArrayList<>();
}else {
String[] arr = tag.split(",");
return new ArrayList<>(Arrays.asList(arr));
}
}
public Result homePageUp(String environment) {
HomeUpVO homeUpVO = new HomeUpVO();
//轮播图

View File

@@ -167,7 +167,7 @@ public class LoginService {
userInfo.setConsumeAmount(BigDecimal.ZERO);
userInfo.setTotalScore(0);
userInfo.setLockScore(0);
userInfo.setHeadImg("");
userInfo.setHeadImg("https://cashier-oss.oss-cn-beijing.aliyuncs.com/upload/20240411/a2be5869bfa24d72a4782f695cc53ed1.png");//默认头像
userInfo.setNickName(nickName);
userInfo.setTelephone(phone);
userInfo.setStatus(Byte.parseByte("1"));