Browse Source

no message

master
xpz2018 7 months ago
parent
commit
dbb2ad85e6
3 changed files with 22 additions and 4 deletions
  1. 10
      src/views/clue/customer/data.ts
  2. 6
      src/views/components/Profile.vue
  3. 10
      src/views/invite/inviteInfo/data.ts

10
src/views/clue/customer/data.ts

@ -352,7 +352,15 @@ export const modalFormSchema: FormSchema[] = [
required: true,
component: 'Select',
componentProps: {
options: followStageList,
options: [
{ label: '空号', value: -3, color: 'red' },
{ label: '资料信息无效', value: -2, color: 'green' },
{ label: '放弃线索(进入公海)', value: -1, color: 'red' },
{ label: '未接通,待跟进', value: 1, color: 'red' },
{ label: '已接通,未明确拒绝', value: 2, color: 'green' },
{ label: '已接通,明确拒绝', value: 3, color: 'gray' },
{ label: '已接通,沟通有效', value: 4, color: 'gray' },
],
},
},
// {

6
src/views/components/Profile.vue

@ -1,6 +1,6 @@
<template>
<div class="flex-row-center-start" style="padding-left: 12px;">
<div class="flex-col-center-center" style="min-width: 100px;">
<div class="flex-col-center-center" style="width: 125px;">
<Avatar :src="info.profilePhoto || `https://dating-agency-prod.oss-cn-shenzhen.aliyuncs.com/${info.genderCode == 1 ? 'BB25BB9200BB' : '897B0B201483'}.png`" :size="64" />
<div style="background-color: #FAA19D;border-radius: 24px;padding: 2px 12px;margin-top: 8px;" v-if="info.cityName">
<span style="font-size: 12px;color: #fff;">{{info.provinceName}}-{{info.cityName}}</span>
@ -11,7 +11,6 @@
<span class="single-line" style="font-size: 14px;color: #333;font-weight: bold;max-width: 160px;">{{info.nickName}}</span>
<span class="single-line" style="font-size: 13px;color: #333;margin-left: 12px;">{{info.genderCode == 1 ? '女' : '男'}}</span>
<span class="single-line" style="font-size: 13px;color: #333;margin-left: 12px;" v-if="info.phone">{{info.phone}}</span>
<span class="single-line" style="font-size: 13px;color: #666;margin-left: 12px;">({{info.orgName}})</span>
</div>
<div class="flex-row">
<span style="font-size: 13px;color: #666;" v-if="info.age">{{info.age}}</span>
@ -20,6 +19,9 @@
<span style="font-size: 13px;color: #666;margin-left: 12px;" v-if="info.occupation !== null">{{info.occupation}}</span>
<span style="font-size: 13px;color: #666;margin-left: 12px;" v-if="info.incomeCode !== null">月收入{{incomeList.find((find) => find.value === info.incomeCode)?.label}}</span>
</div>
<div class="flex-row">
<span class="single-line" style="font-size: 13px;color: #19be6b;margin-top: 4px;">线索来源{{info.creatorName}}[{{info.orgName}}]</span>
</div>
</div>
</div>
</template>

10
src/views/invite/inviteInfo/data.ts

@ -352,7 +352,15 @@ export const modalFormSchema: FormSchema[] = [
required: true,
component: 'Select',
componentProps: {
options: followStageList,
options: [
{ label: '空号', value: -3, color: 'red' },
{ label: '资料信息无效', value: -2, color: 'green' },
{ label: '放弃线索(进入公海)', value: -1, color: 'red' },
{ label: '未接通,待跟进', value: 1, color: 'red' },
{ label: '已接通,未明确拒绝', value: 2, color: 'green' },
{ label: '已接通,明确拒绝', value: 3, color: 'gray' },
{ label: '已接通,沟通有效', value: 4, color: 'gray' },
],
},
},
// {

Loading…
Cancel
Save