Browse Source

no message

master
xpz2018 9 months ago
parent
commit
e8503005d7
2 changed files with 4 additions and 8 deletions
  1. 5
      src/views/clue/customer/index.vue
  2. 7
      src/views/invite/list/index.vue

5
src/views/clue/customer/index.vue

@ -14,10 +14,7 @@
</Popconfirm>
<span style="color: #666;margin: 0 12px;">(ID{{details.id}} | 渠道来源{{channelList.find((find) => find.value === details.channelType)?.label}})</span>
<Tag color="warning" v-if="details.allocationStatus === 1">待分配</Tag>
<Tag color="green" v-else-if="details.validStatus === 2">#有效线索</Tag>
<Tag color="error" v-else-if="details.validStatus === 3">#无效线索</Tag>
<Tag color="pink" v-else-if="details.followStatus === 1">#待跟进</Tag>
<Tag color="pink">#{{followStageList.find((find) => find.value === details.followStatus)?.label}}</Tag>
</div>
<div class="flex-row-center-start" style="margin-top: 5px;">
<div class="flex-row-center-start" style="width: 240px;">

7
src/views/invite/list/index.vue

@ -37,9 +37,8 @@
<Timeline :list="record.datingClueFollowRecordList"/>
</template>
<template #action="{ record }">
<div class="flex-row-center-start">
<Button type="link" @click="toDetail(record)">详情</Button>
<span style="color: #999;">|</span>
<div class="flex-col-center-start">
<Button style="width: 100px;" @click.stop="toDetail(record)">详情</Button>
<Popconfirm placement="topRight" :icon="record.allocationStatus == 1 ? '分配' : '重新分配'" @confirm="allocateList(record.id)">
<template #title>
<div class="flex-row-center-start" style="padding: 8px 8px 8px 0px;border-bottom: 1px solid #ddd;" v-for="item in memberList" :key="item.userId">
@ -49,7 +48,7 @@
</Checkbox>
</div>
</template>
<Button type="link" danger >{{record.allocationStatus == 1 ? '分配' : '重新分配'}}</Button>
<Button style="width: 100px;margin-top: 8px;" danger>{{record.allocationStatus == 1 ? '分配' : '重新分配'}}</Button>
</Popconfirm>
</div>
</template>

Loading…
Cancel
Save