提交 a4b9eb91 authored 作者: 王鹏飞's avatar 王鹏飞

fix: #3353

上级 e81b39ad
......@@ -19,6 +19,7 @@ defineEmits<{
const statusList = useMapStore().getMapValuesByKey('system_status')
const genderList = useMapStore().getMapValuesByKey('system_gender')
const connectionTypeList = useMapStore().getMapValuesByKey('experiment_connection_type')
const detail = reactive({ count: 0, status: '1', updated_time: '-' })
function fetchInfo() {
......@@ -71,7 +72,13 @@ const listOptions = computed(() => {
}
},
{ label: '手机号码', prop: 'mobile' },
{ label: '来源连接', prop: 'experiment_connection_id' },
{
label: '来源连接',
prop: 'experiment_connection_id',
computed({ row }: { row: GroupMember }) {
return getNameByValue(row.connection.type.toString(), connectionTypeList)
}
},
{
label: '状态',
prop: 'status',
......
......@@ -45,4 +45,5 @@ export interface GroupMember {
created_operator: Operator
updated_time: string
updated_operator: Operator
connection: any
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论