diff --git a/src/pages/table-list/job/index.tsx b/src/pages/table-list/job/index.tsx index 740b064..8939f67 100644 --- a/src/pages/table-list/job/index.tsx +++ b/src/pages/table-list/job/index.tsx @@ -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', diff --git a/src/services/typings.d.ts b/src/services/typings.d.ts index 245d832..cba34b9 100644 --- a/src/services/typings.d.ts +++ b/src/services/typings.d.ts @@ -74,6 +74,14 @@ declare namespace API { updated: string; // 是否禁用,默认为 false disable: boolean; + /** + * 通告手机号 + */ + phone: string; + /** + * 通告微信号 + */ + acctNo: string; } interface GroupListItem {