This commit is contained in:
wangshiming
2022-05-16 13:30:26 +08:00
parent ee141d1248
commit 45946fd39b
2 changed files with 5 additions and 3 deletions

View File

@ -4,10 +4,12 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-04-21 13:49:22 * @Date : 2022-04-21 13:49:22
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-26 09:47:43 * @LastEditTime : 2022-05-16 13:30:12
* @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\channel-sales\\components\\list\\list.component.html * @FilePath : \\tms-obc-web\\src\\app\\routes\\partner\\channel-sales\\components\\list\\list.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
<page-header-wrapper [title]="'销售渠道管理'"></page-header-wrapper>
<nz-card> <nz-card>
<!-- 搜索区 --> <!-- 搜索区 -->
<sf <sf

View File

@ -162,8 +162,8 @@ export class ShipperBaseService extends BaseService {
} }
const list = res.map((item: any) => { const list = res.map((item: any) => {
return { return {
label: item.partnerType == 1 ? item.enterpriseName : item.contactName + '/' + item.contactMobile , label: item?.partnerType == 1 ? item?.enterpriseName : item?.contactName + '/' + item?.contactMobile ,
value: item.id value: item?.id
}; };
}); });
const obj = []; const obj = [];