feat: 统计: 饮食要求、兴趣爱好、年龄段

main
Lei OT 6 months ago
parent ac11babdab
commit e822b9bb3a

@ -1,6 +1,6 @@
import React, { Component } from "react"; import React, { Component } from "react";
import { Row, Col, Tabs, Table, Divider, Spin } from "antd"; import { Row, Col, Tabs, Table, Divider, Spin } from "antd";
import { ContainerOutlined, BlockOutlined, SmileOutlined, TagsOutlined, GlobalOutlined, FullscreenOutlined, DingtalkOutlined, CarryOutOutlined, CoffeeOutlined } from "@ant-design/icons"; import { ContainerOutlined, BlockOutlined, SmileOutlined, TagsOutlined, GlobalOutlined, FullscreenOutlined, DingtalkOutlined, CarryOutOutlined, CoffeeOutlined, ClockCircleOutlined, HeartOutlined, IdcardOutlined, ContactsOutlined } from "@ant-design/icons";
import { stores_Context } from "../config"; import { stores_Context } from "../config";
import { Line, Pie } from "@ant-design/charts"; import { Line, Pie } from "@ant-design/charts";
import { observer } from "mobx-react"; import { observer } from "mobx-react";
@ -472,11 +472,14 @@ class Orders extends Component {
key: 'ToB', key: 'ToB',
label: ( label: (
<span> <span>
<CoffeeOutlined /> <ContactsOutlined />
客运类别 客运类别
</span> </span>
), ),
}, },
{key: 'FoodRequirement',label: (<span><CoffeeOutlined />饮食要求</span>),},
{key: 'hobbies',label: (<span><HeartOutlined/>兴趣爱好</span>),},
{key: 'ages',label: (<span><IdcardOutlined/>年龄段</span>),},
].map((ele) => { ].map((ele) => {
return { return {
...ele, ...ele,

Loading…
Cancel
Save