Commit e8c2d9b4 by Sweet Zhang

转介人id取clientUserBizId

parent 5af59a6d
...@@ -97,7 +97,7 @@ const searchConfig = ref([ ...@@ -97,7 +97,7 @@ const searchConfig = ref([
requestParams: { pageNo: 1, pageSize: 20 }, requestParams: { pageNo: 1, pageSize: 20 },
placeholder: '输入转介人名称搜索', placeholder: '输入转介人名称搜索',
debounceWait: 500, // 自定义防抖时间 debounceWait: 500, // 自定义防抖时间
valueKey: 'userSaleBizId', valueKey: 'clientUserBizId',
labelKey: 'realName', labelKey: 'realName',
multiple: true, multiple: true,
transform: (res) => { transform: (res) => {
......
...@@ -286,7 +286,7 @@ const introducerConfig = [ ...@@ -286,7 +286,7 @@ const introducerConfig = [
}, },
transform: res => { transform: res => {
return (res?.data.records || []).map(item => ({ return (res?.data.records || []).map(item => ({
value: item.userSaleBizId, value: item.clientUserBizId,
label: item.realName, label: item.realName,
...item ...item
})) }))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment