This commit is contained in:
heqinghang
2022-01-27 11:14:59 +08:00
parent 9b2c25524a
commit 3a37e012a6
2 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ export class ShipperBaseService extends BaseService {
const list = res.map(((item: any) => {
return {
label: item.name,
value: item.userId
value: item.appUserId
}
}))
const obj = [];
@ -100,7 +100,7 @@ export class ShipperBaseService extends BaseService {
const list = res.map(((item: any) => {
return {
label: `${item.name}/${item.telephone}`,
value: item.userId
value: item.appUserId
}
}))
return [...list];