💥 feat(模块): 通告列表增加微信号和手机号

This commit is contained in:
chashaobao
2025-11-06 19:42:45 +08:00
parent 6f4ef68db4
commit 447934d5ff
2 changed files with 20 additions and 0 deletions

View File

@ -92,6 +92,18 @@ const TableList: React.FC = () => {
valueType: 'textarea',
copyable: true,
},
{
title: '微信号',
dataIndex: 'acctNo',
valueType: 'textarea',
copyable: true,
},
{
title: '手机号',
dataIndex: 'phone',
valueType: 'textarea',
copyable: true,
},
{
title: '发布群数量',
dataIndex: 'relateGroupCount',

View File

@ -74,6 +74,14 @@ declare namespace API {
updated: string;
// 是否禁用,默认为 false
disable: boolean;
/**
* 通告手机号
*/
phone: string;
/**
* 通告微信号
*/
acctNo: string;
}
interface GroupListItem {