666
This commit is contained in:
@ -60,7 +60,7 @@ export class ParterChannelSalesEditComponent implements OnInit {
|
||||
ui: {
|
||||
widget: 'autocomplete',
|
||||
placeholder:'请选择',
|
||||
asyncData: () => this.service.request(this.service.$api_fuzzyQuery).pipe(
|
||||
asyncData: (input:string) => this.service.request(this.service.$api_fuzzyQuery,{name:input}).pipe(
|
||||
map((res: any) => {
|
||||
console.log('111',res)
|
||||
return [];
|
||||
@ -81,7 +81,7 @@ export class ParterChannelSalesEditComponent implements OnInit {
|
||||
default: '0',
|
||||
},
|
||||
roleIds: {
|
||||
title: '角色',
|
||||
title: '',
|
||||
type: 'string',
|
||||
ui: {
|
||||
widget: 'select',
|
||||
@ -89,6 +89,7 @@ export class ParterChannelSalesEditComponent implements OnInit {
|
||||
mode: 'multiple',
|
||||
maxMultipleCount: 5,
|
||||
asyncData: () => {
|
||||
|
||||
return this.service.request(this.service.$api_getAppRoleList).pipe(
|
||||
map((res: any) => {
|
||||
return res
|
||||
|
||||
@ -64,27 +64,27 @@ export class ParterChannelSalesListComponent implements OnInit {
|
||||
this.columns = [
|
||||
{
|
||||
title: '销售渠道姓名',
|
||||
index: 'name1'
|
||||
index: 'name'
|
||||
},
|
||||
{
|
||||
title: '手机号',
|
||||
index: 'name1'
|
||||
index: 'telephone'
|
||||
},
|
||||
{
|
||||
title: '所属组织',
|
||||
index: 'name1'
|
||||
index: 'organLable'
|
||||
},
|
||||
{
|
||||
title: '职级',
|
||||
index: 'name1'
|
||||
index: 'station'
|
||||
},
|
||||
{
|
||||
title: '等级',
|
||||
index: 'name1'
|
||||
index: 'postLevel'
|
||||
},
|
||||
{
|
||||
title: '省市',
|
||||
index: 'name1'
|
||||
index: 'residencePlace'
|
||||
},
|
||||
{
|
||||
title: '邀请码',
|
||||
|
||||
Reference in New Issue
Block a user