155 lines
4.4 KiB
Vue
Raw Normal View History

2024-01-14 22:44:25 +08:00
<template>
<el-row :gutter="20">
<el-col :span="4" class="min-w-[200px]">
<div class="side-item-list">
<div
v-for="(item, index) in leftSides"
:key="index"
:class="leftType == item.infoType ? 'side-item-select' : 'side-item-default'"
class="side-item"
@click="sideClick(item)"
>
{{ item.name }}
<el-badge v-if="item.msgCount > 0" :max="99" :value="item.msgCount" />
</div>
</div>
</el-col>
<el-col :span="20" :xs="24">
<TodayCustomer v-if="leftType === 'todayCustomer'" />
<FollowLeads v-if="leftType === 'followLeads'" />
<CheckContract v-if="leftType === 'checkContract'" />
<CheckReceivables v-if="leftType === 'checkReceivables'" />
<EndContract v-if="leftType === 'endContract'" />
<FollowCustomer v-if="leftType === 'followCustomer'" />
<PutInPoolRemind v-if="leftType === 'putInPoolRemind'" />
<RemindReceivables v-if="leftType === 'remindReceivables'" />
2024-01-14 22:44:25 +08:00
</el-col>
</el-row>
</template>
2024-01-14 22:44:25 +08:00
<script lang="ts" setup>
2024-02-18 00:04:43 +08:00
import * as BacklogApi from '@/api/crm/backlog'
import CheckContract from './tables/CheckContract.vue'
import CheckReceivables from './tables/CheckReceivables.vue'
import EndContract from './tables/EndContract.vue'
import FollowCustomer from './tables/FollowCustomer.vue'
2024-01-14 22:44:25 +08:00
import FollowLeads from './tables/FollowLeads.vue'
import PutInPoolRemind from './tables/PutInPoolRemind.vue'
import RemindReceivables from './tables/RemindReceivables.vue'
import TodayCustomer from './tables/TodayCustomer.vue'
2024-01-14 22:44:25 +08:00
const leftType = ref('todayCustomer')
2024-02-18 00:04:43 +08:00
const todayCustomerCountRef = ref(0)
const followLeadsCountRef = ref(0)
const followCustomerCountRef = ref(0)
const putInPoolCustomerRemindCountRef = ref(0)
const checkContractCountRef = ref(0)
const checkReceivablesCountRef = ref(0)
const remindReceivablesCountRef = ref(0)
const endContractCountRef = ref(0)
2024-01-14 22:44:25 +08:00
const leftSides = ref([
{
name: '今日需联系客户',
infoType: 'todayCustomer',
2024-02-18 00:04:43 +08:00
msgCount: todayCustomerCountRef
2024-01-14 22:44:25 +08:00
},
{
name: '分配给我的线索',
infoType: 'followLeads',
2024-02-18 00:04:43 +08:00
msgCount: followLeadsCountRef
2024-01-14 22:44:25 +08:00
},
{
name: '分配给我的客户',
infoType: 'followCustomer',
2024-02-18 00:04:43 +08:00
msgCount: followCustomerCountRef
2024-01-14 22:44:25 +08:00
},
{
name: '待进入公海的客户',
infoType: 'putInPoolRemind',
2024-02-18 00:04:43 +08:00
msgCount: putInPoolCustomerRemindCountRef
2024-01-14 22:44:25 +08:00
},
{
name: '待审核合同',
infoType: 'checkContract',
2024-02-18 00:04:43 +08:00
msgCount: checkContractCountRef
2024-01-14 22:44:25 +08:00
},
{
name: '待审核回款',
infoType: 'checkReceivables',
2024-02-18 00:04:43 +08:00
msgCount: checkReceivablesCountRef
2024-01-14 22:44:25 +08:00
},
{
name: '待回款提醒',
infoType: 'remindReceivables',
2024-02-18 00:04:43 +08:00
msgCount: remindReceivablesCountRef
2024-01-14 22:44:25 +08:00
},
{
name: '即将到期的合同',
infoType: 'endContract',
2024-02-18 00:04:43 +08:00
msgCount: endContractCountRef
2024-01-14 22:44:25 +08:00
}
])
/** 侧边点击 */
const sideClick = (item: any) => {
2024-01-14 22:44:25 +08:00
leftType.value = item.infoType
}
2024-02-18 00:04:43 +08:00
/** 加载时读取待办数量 */
onMounted(async () => {
BacklogApi.getTodayCustomerCount().then(count => todayCustomerCountRef.value = count)
BacklogApi.getFollowLeadsCount().then(count => followLeadsCountRef.value = count)
BacklogApi.getFollowCustomerCount().then(count => followCustomerCountRef.value = count)
BacklogApi.getPutInPoolCustomerRemindCount().then(count => putInPoolCustomerRemindCountRef.value = count)
BacklogApi.getCheckContractCount().then(count => checkContractCountRef.value = count)
BacklogApi.getCheckReceivablesCount().then(count => checkReceivablesCountRef.value = count)
BacklogApi.getRemindReceivablePlanCount().then(count => remindReceivablesCountRef.value = count)
BacklogApi.getEndContractCount().then(count => endContractCountRef.value = count)
})
2024-01-14 22:44:25 +08:00
</script>
2024-01-14 22:44:25 +08:00
<style lang="scss" scoped>
.side-item-list {
top: 0;
bottom: 0;
left: 0;
z-index: 1;
font-size: 14px;
background-color: var(--el-bg-color);
border: 1px solid var(--el-border-color);
2024-01-14 22:44:25 +08:00
border-radius: 5px;
.side-item {
position: relative;
height: 50px;
padding: 0 20px;
line-height: 50px;
cursor: pointer;
}
}
.side-item-default {
color: var(--el-text-color-primary);
2024-01-14 22:44:25 +08:00
border-right: 2px solid transparent;
}
.side-item-select {
color: var(--el-color-primary);
background-color: var(--el-color-primary-light-9);
2024-01-14 22:44:25 +08:00
border-right: 2px solid var(--el-color-primary);
}
.el-badge :deep(.el-badge__content) {
top: 0;
border: none;
}
.el-badge {
position: absolute;
top: 0;
right: 15px;
}
</style>