From 504d381eff0935be7079a21d219b72366cfba5a1 Mon Sep 17 00:00:00 2001 From: kaeery <3491123437@qq.com> Date: Thu, 27 Feb 2025 21:42:37 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=8B=9B=E7=94=9F=E5=B0=8F=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=E3=80=91=20=E6=96=B0=E5=A2=9E#=20=E7=94=B5=E9=94=80?= =?UTF-8?q?=EF=BC=9A=E5=AF=B9=E6=8E=A5=E4=BF=AE=E6=94=B9=E8=B7=9F=E8=BF=9B?= =?UTF-8?q?=E3=80=81=E7=BA=BF=E7=B4=A2=E5=88=97=E8=A1=A8=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/clue.ts | 3 + src/bundle/pages/complete_add/index.vue | 92 ++++++++++++------- src/bundle/pages/follow_edit/index.vue | 76 +++++++++++---- src/bundle/pages/progress_add/index.vue | 20 ++-- src/components/design-search.vue | 1 + src/components/design-switch-field.vue | 2 +- .../widgets/recruitsale/clue-card.vue | 19 +++- src/components/widgets/telesale/clue-card.vue | 13 ++- .../widgets/telesale/follow-record.vue | 15 ++- src/config/options.ts | 7 ++ src/pages/recruitsale/home/index.vue | 23 ++++- src/styles/public.scss | 2 +- 12 files changed, 196 insertions(+), 77 deletions(-) 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; } }