fix(我的工作台): 列表信息显示的人员名称格式不一致
--bug=1011777 --user=郭雨琦 【我的工作台】github#12026,我的工作台》》我的创建:列表信息显示的人员名称不一致,有的是中文有的是用户Id https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001011777 chore(sync): sync chore(sync): sync
This commit is contained in:
parent
a406458f14
commit
f9c73ff4e8
|
@ -393,6 +393,9 @@ public class IssuesService {
|
|||
private Map<String, Set<String>> getCaseSetMap(List<IssuesDao> issues) {
|
||||
List<String> ids = issues.stream().map(Issues::getId).collect(Collectors.toList());
|
||||
Map<String,Set<String>>map = new HashMap<>();
|
||||
if(ids.size()==0){
|
||||
return map;
|
||||
}
|
||||
TestCaseIssuesExample example = new TestCaseIssuesExample();
|
||||
example.createCriteria().andIssuesIdIn(ids);
|
||||
List<TestCaseIssues> testCaseIssues = testCaseIssuesMapper.selectByExample(example);
|
||||
|
|
|
@ -298,7 +298,6 @@ export default {
|
|||
return {text: u.name, value: u.id};
|
||||
});
|
||||
});
|
||||
|
||||
},
|
||||
handleEdit(data) {
|
||||
this.$refs.issueEdit.open(data, 'edit');
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit ed1ed7f1af0119167d4b8c462df0ec27882c5fc4
|
||||
Subproject commit 195b63f5af1fcb28a9f72ca44c1027964734988c
|
Loading…
Reference in New Issue