This commit is contained in:
juntao
2021-03-29 20:54:34 +08:00
parent 721d5acc1d
commit d3de323c06
7 changed files with 14 additions and 11 deletions

View File

@ -734,7 +734,9 @@ public class BindingAdapters {
try {
ArrayList<TagStyleEntity> tagStyle = new ArrayList<>();
TestEntity test = gameEntity.getTest();
if (test != null) {
if (test != null
// 这个判断用于开测表列表
&& !"type_tag".equals(test.getGameTag())) {
TagStyleEntity typeTag = new TagStyleEntity();
typeTag.setName(test.getType() != null ? test.getType() : "");
typeTag.setBackground("FFF3E0");