记得上下班打卡 | git大法好,push需谨慎

Commit a871ecbe authored by 胡佳晨's avatar 胡佳晨

修改 位置 bug修复

parent 2bc37a2d
...@@ -380,15 +380,17 @@ public class GoblinMixServiceImpl implements IGoblinMixService { ...@@ -380,15 +380,17 @@ public class GoblinMixServiceImpl implements IGoblinMixService {
private boolean redisList(Integer showPosition, String mixId, Integer status) { private boolean redisList(Integer showPosition, String mixId, Integer status) {
if (showPosition == 1) {//商品 if (showPosition == 1) {//商品
if (status == 6) { if (status == 6) {
redisUtils.addGoblinMixSkuList(mixId); redisUtils.removeGoblinMixSkuList(mixId);
redisUtils.removeGoblinMixNftList(mixId); redisUtils.removeGoblinMixNftList(mixId);
redisUtils.addGoblinMixSkuList(mixId);
} else if (status == 7) { } else if (status == 7) {
redisUtils.removeGoblinMixSkuList(mixId); redisUtils.removeGoblinMixSkuList(mixId);
} }
} else if (showPosition == 2) {//nft } else if (showPosition == 2) {//nft
if (status == 6) { if (status == 6) {
redisUtils.addGoblinMixNftList(mixId); redisUtils.removeGoblinMixNftList(mixId);
redisUtils.removeGoblinMixSkuList(mixId); redisUtils.removeGoblinMixSkuList(mixId);
redisUtils.addGoblinMixNftList(mixId);
} else if (status == 7) { } else if (status == 7) {
redisUtils.removeGoblinMixNftList(mixId); redisUtils.removeGoblinMixNftList(mixId);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment