Merge remote-tracking branch 'origin/main' into lichang

This commit is contained in:
TsMask
2024-05-17 20:23:52 +08:00

View File

@@ -107,7 +107,7 @@ let tableColumns: ColumnsType = [
title: t('views.dashboard.cdr.recordType'), title: t('views.dashboard.cdr.recordType'),
dataIndex: 'cdrJSON', dataIndex: 'cdrJSON',
align: 'left', align: 'left',
width: 100, width: 150,
customRender(opt) { customRender(opt) {
const cdrJSON = opt.value; const cdrJSON = opt.value;
return cdrJSON.recordType; return cdrJSON.recordType;
@@ -125,7 +125,7 @@ let tableColumns: ColumnsType = [
dataIndex: 'cdrJSON', dataIndex: 'cdrJSON',
key: 'calledParty', key: 'calledParty',
align: 'left', align: 'left',
width: 100, width: 120,
customRender(opt) { customRender(opt) {
const cdrJSON = opt.value; const cdrJSON = opt.value;
return cdrJSON.calledParty; return cdrJSON.calledParty;
@@ -136,7 +136,7 @@ let tableColumns: ColumnsType = [
dataIndex: 'cdrJSON', dataIndex: 'cdrJSON',
key: 'callerParty', key: 'callerParty',
align: 'left', align: 'left',
width: 100, width: 120,
customRender(opt) { customRender(opt) {
const cdrJSON = opt.value; const cdrJSON = opt.value;
return cdrJSON.callerParty; return cdrJSON.callerParty;
@@ -160,7 +160,7 @@ let tableColumns: ColumnsType = [
dataIndex: 'cdrJSON', dataIndex: 'cdrJSON',
key: 'cause', key: 'cause',
align: 'left', align: 'left',
width: 100, width: 150,
}, },
{ {
title: t('views.dashboard.cdr.time'), title: t('views.dashboard.cdr.time'),