update
This commit is contained in:
@@ -357,7 +357,7 @@ export default {
|
|||||||
startTime:'开始时间',
|
startTime:'开始时间',
|
||||||
answeredTime:'接听时间',
|
answeredTime:'接听时间',
|
||||||
callDuration:'通话时长',
|
callDuration:'通话时长',
|
||||||
msdData:'msd内容',
|
msdData:'MSD内容',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dashboard: {
|
dashboard: {
|
||||||
|
|||||||
@@ -52,12 +52,6 @@ let tableState: TabeStateType = reactive({
|
|||||||
|
|
||||||
/**表格字段列 */
|
/**表格字段列 */
|
||||||
let tableColumns: ColumnsType = [
|
let tableColumns: ColumnsType = [
|
||||||
{
|
|
||||||
title: t('common.rowId'),
|
|
||||||
dataIndex: 'id',
|
|
||||||
align: 'center',
|
|
||||||
width: 3,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: t('views.agentManage.callings.callerIdNumber'),
|
title: t('views.agentManage.callings.callerIdNumber'),
|
||||||
dataIndex: 'callerIdNumber',
|
dataIndex: 'callerIdNumber',
|
||||||
@@ -72,7 +66,7 @@ let tableColumns: ColumnsType = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: t('views.agentManage.callings.startTime'),
|
title: t('views.agentManage.callings.startTime'),
|
||||||
dataIndex: 'startTime',
|
dataIndex: 'createdTime',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 6,
|
width: 6,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -12,8 +12,10 @@ import { listNeInfo } from '@/api/ne/neInfo';
|
|||||||
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
||||||
import { getNeConfigData } from '@/api/ne/neConfig';
|
import { getNeConfigData } from '@/api/ne/neConfig';
|
||||||
import { listCallings } from '@/api/agentManage/callings';
|
import { listCallings } from '@/api/agentManage/callings';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
/**10s调度器 */
|
/**10s调度器 */
|
||||||
const interval10s = ref<any>(null);
|
const interval10s = ref<any>(null);
|
||||||
@@ -287,6 +289,10 @@ function fnGetList() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**栏目信息跳转 */
|
||||||
|
function fnToRouter(name: string, query?: any) {
|
||||||
|
router.push({ name, query });
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
// 初始获取数据
|
// 初始获取数据
|
||||||
@@ -357,7 +363,7 @@ onBeforeUnmount(() => {
|
|||||||
|
|
||||||
|
|
||||||
<a-col :xs="24" :sm="24" :lg="8">
|
<a-col :xs="24" :sm="24" :lg="8">
|
||||||
<a-card :bordered="false" class="metric-card">
|
<a-card :bordered="false" class="metric-card" @click="fnToRouter('Callings_2201')">
|
||||||
<div class="card-title">{{ t('views.dashboard.overview.parallelUser') }}</div>
|
<div class="card-title">{{ t('views.dashboard.overview.parallelUser') }}</div>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<div class="trend-chart">
|
<div class="trend-chart">
|
||||||
|
|||||||
Reference in New Issue
Block a user