|
@@ -52,8 +52,8 @@
|
|
|
class="item active"
|
|
|
:title="telStatusInfo.isHold ? '取消外呼模式' : '外呼模式'"
|
|
|
@click="onControlClick(telStatusInfo.isCallOut ? 'unCallOut' : 'callOut')"
|
|
|
- @mouseenter="onHover('callOutSrc', 'phoneControls/evaluate_white.png')"
|
|
|
- @mouseleave="onHover('callOutSrc', 'phoneControls/evaluate_blue.png')"
|
|
|
+ @mouseenter="onHover('callOutSrc', 'phoneControls/callOut_white.png')"
|
|
|
+ @mouseleave="onHover('callOutSrc', 'phoneControls/callOut_blue.png')"
|
|
|
>
|
|
|
<img :src="state.callOutSrc" alt="" />
|
|
|
<span>{{ telStatusInfo.isCallOut ? '取消外呼模式' : '外呼模式' }}</span>
|
|
@@ -62,7 +62,7 @@
|
|
|
<!-- 灰色外呼不可用 -->
|
|
|
<template v-else>
|
|
|
<div class="item disabled" title="外呼模式">
|
|
|
- <img :src="getImageUrl('phoneControls/evaluate_grey.png')" alt="" />
|
|
|
+ <img :src="getImageUrl('phoneControls/callOut_grey.png')" alt="" />
|
|
|
<span>外呼模式</span>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -579,7 +579,7 @@ const state = reactive<any>({
|
|
|
transferSrc: getImageUrl('phoneControls/transfer_blue.png'), //转接图片
|
|
|
conferenceSrc: getImageUrl('phoneControls/conference_blue.png'), //三方会议图片
|
|
|
outboundSrc: getImageUrl('phoneControls/outbound_blue.png'), //外呼图片
|
|
|
- callOutSrc: getImageUrl('phoneControls/evaluate_blue.png'), // 外呼模式图片
|
|
|
+ callOutSrc: getImageUrl('phoneControls/callOut_blue.png'), // 外呼模式图片
|
|
|
restReasonOptions: [], // 小休原因
|
|
|
nextStepOptions: [], // 下一个环节
|
|
|
handlerOptions: [], // 处理人
|
|
@@ -665,8 +665,8 @@ const activeArr = computed(() => {
|
|
|
onCallOut: ['callOut', 'outbound'], // 外呼模式中
|
|
|
rest: ['rest'], // 小休中状态
|
|
|
ring: ['hangup'], //振铃中
|
|
|
- onCall: ['hangup', 'hold', 'transfer', 'evaluate', 'conference'], // 单个通话中
|
|
|
- onHold: ['hangup', 'hold', 'transfer', 'evaluate'], // 保持中
|
|
|
+ onCall: ['hangup', 'hold', 'transfer', 'conference'], // 单个通话中
|
|
|
+ onHold: ['hangup', 'hold', 'transfer'], // 保持中
|
|
|
onTalkingDeal: ['dutyOff', 'rest', 'TalkingDeal'], // 话后整理中
|
|
|
onConference: ['hangup'], // 三方会议中 只能挂断
|
|
|
onThreeWay: ['hangup', 'conference'], // 三方会议呼出中 只能挂断和踢人
|