You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wkcrm_web/src/views/crm/message/index.vue

377 lines
9.0 KiB

<template>
<div style="height:100%;">
<flexbox class="message-header"><img
src="@/assets/img/crm/todo.png"
class="title-icon">
<span class="title">待办事项</span>
</flexbox>
<div class="message-body">
<div
v-loading="loading"
class="message-content">
<div class="message-body-side">
<xr-menu-item
v-for="(item, index) in showLeftSides"
:key="index"
:label="item.name"
:num="item.num"
:icon-class="item.iconClass"
:icon-color="item.color"
:select="leftType==item.infoType"
@click.native="sideClick(item)"/>
</div>
<div class="message-body-content">
<c-r-m-message
v-for="(item, index) in showLeftSides"
v-show="leftType==item.infoType"
:key="index"
:crm-type="item.crmType"
:info-type="item.infoType"
:info-title="item.name"
:info-tips="item.tips"
:model="item.model"
:show="leftType==item.infoType"
:icon-data="item"
@on-handle="messageHandle"/>
</div>
</div>
</div>
</div>
</template>
<script>
import CRMMessage from './compenents/CRMMessage' // 系统消息
import { mapGetters } from 'vuex'
import { objDeepCopy } from '@/utils'
import XrMenuItem from '@/components/XrMenu/XrMenuItem'
export default {
/** 客户管理 的 消息列表 */
name: 'Message',
components: {
CRMMessage,
XrMenuItem
},
data() {
return {
loading: false,
leftType: '',
/**
* model 1今日需联系客户 2分配给我的线索 3分配给我的客户 4待进入公海的客户 5待审核合同 6待审核回款 7待回款提醒 8即将到期的合同 9待回访合同 10待审核发票 13待审核商机 14新商机
*/
leftSides: [
{
name: '今日需联系线索',
crmType: 'leads',
color: '#2362FB',
iconClass: 'wk wk-leads',
infoType: 'todayLeads',
model: 11,
num: 0,
tips: '下次跟进时间为今日的线索',
hidden: true
},
{
name: '今日需联系客户',
crmType: 'customer',
color: '#2362FB',
iconClass: 'wk wk-customer',
infoType: 'todayCustomer',
model: 1,
num: 0,
tips: '下次跟进时间为今日的客户',
hidden: true
},
{
name: '今日需联系商机',
crmType: 'business',
color: '#2362FB',
iconClass: 'wk wk-business',
infoType: 'todayBusiness',
model: 12,
num: 0,
tips: '下次跟进时间为今日的商机',
hidden: true
},
{
name: '分配给我的线索',
crmType: 'leads',
color: '#704AFD',
iconClass: 'wk wk-leads',
infoType: 'followLeads',
model: 2,
num: 0,
tips: '转移之后未跟进的线索',
hidden: true
},
{
name: '分配给我的客户',
crmType: 'customer',
color: '#19B5F6',
iconClass: 'wk wk-s-seas',
infoType: 'followCustomer',
model: 3,
num: 0,
tips: '转移、领取、分配之后未跟进的客户,默认显示自己负责的客户',
hidden: true
},
{
name: '待进入公海的客户',
crmType: 'customer',
color: '#26D4DA',
iconClass: 'wk wk-seas',
infoType: 'putInPoolRemind',
model: 4,
num: 0,
tips: '',
hidden: true
},
{
name: '待审核合同',
crmType: 'contract',
color: '#FD5B4A',
iconClass: 'wk wk-contract',
infoType: 'checkContract',
model: 5,
num: 0,
tips: '',
hidden: true
},
{
name: '待审核回款',
crmType: 'receivables',
color: '#FFB940',
iconClass: 'wk wk-receivables',
infoType: 'checkReceivables',
model: 6,
num: 0,
tips: '',
hidden: true
},
{
name: '待回款提醒',
crmType: 'receivables_plan',
color: '#27BA4A',
iconClass: 'wk wk-bell',
infoType: 'remindReceivablesPlan',
model: 7,
num: 0,
tips: '',
hidden: true
},
{
name: '即将到期的合同',
crmType: 'contract',
color: '#FF7A38',
iconClass: 'wk wk-contract',
infoType: 'endContract',
model: 8,
num: 0,
tips: '根据“合同到期时间”及设置的“提前提醒天数”提醒',
hidden: true
},
{
name: '待回访合同',
crmType: 'contract',
color: '#ff9232',
iconClass: 'wk wk-house',
infoType: 'returnVisitRemind',
model: 9,
num: 0,
tips: '',
hidden: true
},
{
name: '待审核发票',
crmType: 'invoice',
color: '#ff9232',
iconClass: 'wk wk-invoice',
infoType: 'checkInvoice',
model: 10,
num: 0,
tips: '',
hidden: true
},
{
name: '待审核商机',
crmType: 'business',
color: '#704AFD',
iconClass: 'wk wk-business',
infoType: 'checkBusiness',
model: 13,
num: 0,
tips: '',
hidden: true
},
{
name: '新商机',
crmType: 'business',
color: '#704AFD',
iconClass: 'wk wk-business',
infoType: 'newBusiness',
model: 14,
num: 0,
tips: '',
hidden: true
},
{
name: '审批客户捞取',
crmType: 'customer',
color: '#704AFD',
iconClass: 'wk wk-customer',
infoType: 'checkCustomerCheck',
model: 15,
num: 0,
tips: '',
hidden: true
}
]
}
},
computed: {
...mapGetters(['messageNum']),
showLeftSides() {
return this.leftSides.filter(item => {
return !item.hidden
})
}
},
watch: {
/** 变化就刷新数据 */
messageNum() {
this.refreshNum()
}
},
mounted() {
this.loading = true
this.requestNumCount()
/** 控制table的高度 */
window.onresize = () => {
var offsetHei = document.documentElement.clientHeight
this.$bus.emit('message-scroll', offsetHei - 300)
}
},
methods: {
/**
* 获取数据
*/
requestNumCount() {
this.$store
.dispatch('GetMessageNum')
.then(res => {
this.loading = false
this.refreshNum()
})
.catch(() => {
this.loading = false
})
},
/**
* 刷新消息数据
*/
refreshNum() {
for (let index = 0; index < this.leftSides.length; index++) {
const element = this.leftSides[index]
if (this.messageNum.hasOwnProperty(element.infoType)) {
element.num = this.messageNum[element.infoType] || 0
element.hidden = false
} else {
element.hidden = true
}
}
if (!this.leftType && this.showLeftSides.length > 0) {
this.leftType = this.showLeftSides[0].infoType
}
},
/**
* 消息页面点击操作
*/
messageHandle(data) {
if (data.type == 'follow') {
const copyNum = objDeepCopy(this.messageNum)
const num = parseInt(copyNum[data.infoType]) - data.value
copyNum[data.infoType] = num > 0 ? num : 0
this.$store.commit('SET_MESSAGENUM', copyNum)
}
},
/**
* 侧边点击
*/
sideClick(item) {
this.leftType = item.infoType
}
}
}
</script>
<style lang="scss" scoped>
.message-header {
margin-left: 28px;
height: 60px;
.title-icon {
width: 30px;
height: 30px;
margin-right: 10px;
}
.title {
font-size: 16px;
font-weight: 600;
}
}
.message-body {
position: relative;
height: calc(100% - 75px);
padding-left: 15px;
}
.message-content {
position: relative;
height: 100%;
}
.message-body-side {
padding: 20px 0;
width: 200px;
font-size: 14px;
background-color: white;
position: absolute;
top: 0;
left: 0;
bottom: 0;
z-index: 1;
border: 1px solid $xr-border-line-color;
border-radius: $xr-border-radius-base;
overflow-y: auto;
.side-item {
position: relative;
height: 50px;
line-height: 50px;
padding: 0 20px;
font-size: 13px;
cursor: pointer;
i {
color: #999;
}
}
}
.message-body-content {
margin-left: 210px;
height: 100%;
overflow: hidden;
background-color: white;
border: 1px solid #e6e6e6;
border-radius: $xr-border-radius-base;
}
</style>