bug
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 7m10s

This commit is contained in:
sexygoat
2026-04-11 12:19:35 +08:00
parent 90ae585651
commit 33e15314ac
30 changed files with 1077 additions and 532 deletions

View File

@@ -671,6 +671,7 @@
virtual_no: string
device_virtual_no: string
is_distributed: undefined | number
is_standalone: undefined | boolean
[key: string]: any
} = {
status: undefined,
@@ -679,7 +680,8 @@
msisdn: '',
virtual_no: '',
device_virtual_no: '',
is_distributed: undefined
is_distributed: undefined,
is_standalone: undefined
}
// 搜索表单
@@ -858,6 +860,19 @@
{ label: '是', value: true },
{ label: '否', value: false }
]
},
{
label: '独立卡',
prop: 'is_standalone',
type: 'select',
config: {
clearable: true,
placeholder: '全部'
},
options: () => [
{ label: '是(未绑定设备)', value: true },
{ label: '否(已绑定设备)', value: false }
]
}
]