diff --git a/src/api/clue.ts b/src/api/clue.ts index a9b388f..c84af00 100644 --- a/src/api/clue.ts +++ b/src/api/clue.ts @@ -32,3 +32,6 @@ export function apiEditRemark(params: any) { export function apiEditClue(params: any) { return request.post({ url: '/clue/edit', data: params }) } +export function apiTeleClueList(params: any) { + return request.get({ url: '/clue/telemarketingList', data: params }) +} diff --git a/src/bundle/pages/complete_add/index.vue b/src/bundle/pages/complete_add/index.vue index 8a61ad1..e1c7e7b 100644 --- a/src/bundle/pages/complete_add/index.vue +++ b/src/bundle/pages/complete_add/index.vue @@ -2,10 +2,10 @@ - + - + - + - + - + - + @@ -78,7 +78,13 @@ - + 提交 @@ -87,49 +93,71 @@ diff --git a/src/config/options.ts b/src/config/options.ts index 6fae010..babd38a 100644 --- a/src/config/options.ts +++ b/src/config/options.ts @@ -1,3 +1,4 @@ +import { stateEnum } from '@/enums' import { SexEnum } from '@/enums/appEnums' import { OrderStatusEnum, @@ -175,5 +176,11 @@ export const optionsMap = { label: infoCheckMap[InfoCheckEnum.RETURN], value: InfoCheckEnum.RETURN } + ], + + stateOptions: [ + { label: '账号已添加', value: stateEnum.ADD_RELATION }, + { label: '账号不存在', value: stateEnum.NO_EXIST }, + { label: '账号未通过', value: stateEnum.UN_PASS } ] } diff --git a/src/pages/recruitsale/home/index.vue b/src/pages/recruitsale/home/index.vue index 82584b8..208208b 100644 --- a/src/pages/recruitsale/home/index.vue +++ b/src/pages/recruitsale/home/index.vue @@ -5,6 +5,7 @@ placeholder="搜索客户姓名/手机号码" backgroundColor="#F5F5F5" showBorder + @on-input="searchChange" /> diff --git a/src/styles/public.scss b/src/styles/public.scss index a62801b..ac34d37 100644 --- a/src/styles/public.scss +++ b/src/styles/public.scss @@ -290,6 +290,6 @@ page { } .u-tabbar { .u-tabbar__content { - z-index: 99999 !important; + z-index: 999 !important; } }