feat: 卡新增IMEI
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 5m47s

This commit is contained in:
sexygoat
2026-05-26 18:07:39 +08:00
parent 878d93a865
commit fe0093972f
10 changed files with 152 additions and 0 deletions

View File

@@ -1094,6 +1094,7 @@ const formItems: SearchFormItem[] = baseFormItems
// 列配置
const columnOptions = [
{ label: 'ICCID', prop: 'iccid' },
{ label: 'IMEI', prop: 'gateway_card_imei' },
{ label: 'MSISDN', prop: 'msisdn' },
{ label: '卡虚拟号', prop: 'virtual_no' },
{ label: '运营商', prop: 'carrier_name' },
@@ -1226,6 +1227,13 @@ const { columnChecks, columns } = useCheckedColumns(() => [
)
}
},
{
prop: 'gateway_card_imei',
label: 'IMEI',
width: 180,
showOverflowTooltip: true,
formatter: (row: StandaloneIotCard) => row.gateway_card_imei || '-'
},
{
prop: 'msisdn',
label: 'MSISDN',