1234567891011121314151617181920212223242526272829303132333435363738 |
- export const TableColumnOfAccount = [
- {
- title: "公众号名称",
- dataIndex: "account_name",
- },
- {
- title: "公众号唯一标识",
- dataIndex: "app_id",
- },
- {
- title: "平台",
- dataIndex: "platform",
- },
- {
- title: "站点",
- dataIndex: "channel_id",
- },
- {
- title: "推广员",
- dataIndex: "nickname",
- },
- {
- title: "开始时间",
- dataIndex: "start_time",
- },
- {
- title: "结束时间",
- dataIndex: "end_time",
- },
- {
- title: "操作",
- dataIndex: "operte",
- slots: {
- customRender: "operte",
- },
- },
- ];
|