This commit is contained in:
Lingzi
2022-03-28 10:02:34 +08:00
parent c1fb620227
commit 5693c85f30
11 changed files with 133 additions and 7 deletions

View File

@ -49,7 +49,8 @@ export class ShowServiceComponent implements OnInit {
return this.service.request(this.service.$api_getStaffList, params).pipe(
map((res: any) => {
return res.map((i: any) => {
return { label: i.name, value: i.appUserId };
let name = i.name ? `${i.name} / ` : '';
return { label: `${name}${i.telephone}`, value: i.appUserId };
});
}),
);