|
|
|
@ -83,22 +83,12 @@ const OrderProfile = ({ coliSN, ...props }) => {
|
|
|
|
|
return customerDetail.name
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const getPlanStatus = () => {
|
|
|
|
|
return orderDetail.DidPlan === 0 ? '未做计划' : '已做计划'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
{/* <Tabs
|
|
|
|
|
tabPosition={'right'}
|
|
|
|
|
onTabClick={(key) => {
|
|
|
|
|
console.info(key)
|
|
|
|
|
}}
|
|
|
|
|
items={Array.from({ length: 3 }).map((_, i) => {
|
|
|
|
|
const id = String(i + 1)
|
|
|
|
|
return {
|
|
|
|
|
label: `Tab ${id}`,
|
|
|
|
|
key: id,
|
|
|
|
|
children: `Content of Tab ${id}`,
|
|
|
|
|
}
|
|
|
|
|
})}
|
|
|
|
|
/> */}
|
|
|
|
|
<Skeleton active loading={loading}>
|
|
|
|
|
<Flex gap='small' vertical={true} justify='space-between' className='p-2'>
|
|
|
|
|
<Typography.Text>
|
|
|
|
@ -111,7 +101,7 @@ const OrderProfile = ({ coliSN, ...props }) => {
|
|
|
|
|
</Typography.Text>
|
|
|
|
|
<Typography.Text>
|
|
|
|
|
<CompassOutlined className=' pr-1' />
|
|
|
|
|
Thailand
|
|
|
|
|
{orderDetail.MEI_Country}
|
|
|
|
|
</Typography.Text>
|
|
|
|
|
<Typography.Text>
|
|
|
|
|
<PhoneOutlined className=' pr-1' />
|
|
|
|
@ -128,13 +118,13 @@ const OrderProfile = ({ coliSN, ...props }) => {
|
|
|
|
|
<Typography.Text>
|
|
|
|
|
<Tooltip title='出发日期'>
|
|
|
|
|
<CalendarOutlined className='pr-1' />
|
|
|
|
|
2025-09-18
|
|
|
|
|
{orderDetail.COLI_OrderStartDate}
|
|
|
|
|
</Tooltip>
|
|
|
|
|
</Typography.Text>
|
|
|
|
|
<Typography.Text>
|
|
|
|
|
<Tooltip title='计划'>
|
|
|
|
|
<Tooltip title='计划状态'>
|
|
|
|
|
<CheckOutlined className='pr-1' />
|
|
|
|
|
已做计划
|
|
|
|
|
{getPlanStatus()}
|
|
|
|
|
</Tooltip>
|
|
|
|
|
</Typography.Text>
|
|
|
|
|
</Flex>
|
|
|
|
@ -230,7 +220,7 @@ const OrderProfile = ({ coliSN, ...props }) => {
|
|
|
|
|
<EditOutlined className='pl-1' />
|
|
|
|
|
</Tooltip> */}
|
|
|
|
|
</Divider>
|
|
|
|
|
<Typography.Text>泰国马来水灯节</Typography.Text>
|
|
|
|
|
<Typography.Text>{orderDetail.COLI_Introduction}</Typography.Text>
|
|
|
|
|
</Skeleton>
|
|
|
|
|
<Drawer title='添加表单信息' closable={{ 'aria-label': 'Close Button' }} onClose={() => setOpenOrderCommnet(false)} open={openOrderCommnet}>
|
|
|
|
|
<Form
|
|
|
|
|