增加租户列

This commit is contained in:
lai
2024-10-17 10:27:20 +08:00
parent 879cf783b6
commit a78b830a05

View File

@@ -857,7 +857,6 @@ function fnRecordExport(type: string = 'txt') {
let content = '';
if (type == 'txt') {
for (const row of rows) {
debugger;
const epsDat = [
row.epsFlag,
row.epsOdb,
@@ -868,7 +867,7 @@ function fnRecordExport(type: string = 'txt') {
row.apnContext,
row.staticIp,
].join(',');
content += `${row.imsi},${row.msisdn},${row.ambr},${row.nssai},${row.arfb},${row.sar},${row.rat},${row.cn},${row.smfSel},${row.smData},${epsDat}\r\n`;
content += `${row.imsi},${row.msisdn},${row.ambr},${row.nssai},${row.arfb},${row.sar},${row.rat},${row.cn},${row.smfSel},${row.smData},${row.tenantName},${epsDat}\r\n`;
}
}
if (type == 'csv') {