Commit beb5199d authored by Gavin Peng's avatar Gavin Peng

fix: 提交最新代码

parent b3beb1e5
...@@ -17,6 +17,13 @@ export const LogisticsCompanyLable = '物流公司'; ...@@ -17,6 +17,13 @@ export const LogisticsCompanyLable = '物流公司';
export const LogisticsCarNoLable = '车牌号码'; export const LogisticsCarNoLable = '车牌号码';
export const LogisticsNoLable = '物流单号'; export const LogisticsNoLable = '物流单号';
export const PlanNumber = '计划编号';
export const SupplyMember = '供应会员';
export const PlanSummary = '计划摘要';
export const PlanningCycle = '计划周期';
export const ExternalState = '外部状态';
......
...@@ -8,7 +8,7 @@ import { Card, Descriptions, Steps, Tag } from 'antd' ...@@ -8,7 +8,7 @@ import { Card, Descriptions, Steps, Tag } from 'antd'
import AnchorPage from '@/components/AnchorPage' import AnchorPage from '@/components/AnchorPage'
import { AnchorsItem } from "@/components/AnchorPage" import { AnchorsItem } from "@/components/AnchorPage"
import BaseInfo from '@/components/BaseInfo/BaseInfo' import BaseInfo from '@/components/BaseInfo/BaseInfo'
import { BaseInfo as base_Info, Circulation, DeliveryPlanDetails, PlanMaterial } from '../../constants' import { BaseInfo as base_Info, Circulation, DeliveryPlanDetails, ExternalState, PlanMaterial, PlanningCycle, PlanNumber, PlanSummary, SupplyMember, } from '../../constants'
const DeliveryPlanManagementDetails: React.FC = () => { const DeliveryPlanManagementDetails: React.FC = () => {
...@@ -21,32 +21,33 @@ const DeliveryPlanManagementDetails: React.FC = () => { ...@@ -21,32 +21,33 @@ const DeliveryPlanManagementDetails: React.FC = () => {
onBack={() => history.goBack()} onBack={() => history.goBack()}
anchors={iAnchors} anchors={iAnchors}
> >
<BaseInfo className='mt-10' title={Circulation.name} id={Circulation.key} cols={1}> <BaseInfo className='mt-16' title={Circulation.name} id={Circulation.key} cols={1}>
<Steps progressDot current={0}> <Steps progressDot current={0}>
<Steps.Step title='采购商' description='提交送货计划' /> <Steps.Step title='采购商' description='提交送货计划' />
<Steps.Step title='供应商' description='确认送货计划' /> <Steps.Step title='供应商' description='确认送货计划' />
</Steps> </Steps>
</BaseInfo> </BaseInfo>
<BaseInfo className='mt-10' title={base_Info.name} id={base_Info.key}> <BaseInfo className='mt-16' title={base_Info.name} id={base_Info.key}>
<BaseInfo.BaseInfoItem label='计划编号'> <BaseInfo.BaseInfoItem label={PlanNumber}>
DL2014070100001 DL2014070100001
</BaseInfo.BaseInfoItem> </BaseInfo.BaseInfoItem>
<BaseInfo.BaseInfoItem label='采购会员'> <BaseInfo.BaseInfoItem label={SupplyMember}>
温州龙昌手袋有限公司 温州龙昌手袋有限公司
</BaseInfo.BaseInfoItem> </BaseInfo.BaseInfoItem>
<BaseInfo.BaseInfoItem label='计划摘要'> <BaseInfo.BaseInfoItem label={PlanSummary}>
2014-07-01~2014-07-31 广州白马皮具交易中心送货计划 2014-07-01~2014-07-31 广州白马皮具交易中心送货计划
</BaseInfo.BaseInfoItem> </BaseInfo.BaseInfoItem>
<BaseInfo.BaseInfoItem label='计划周期'> <BaseInfo.BaseInfoItem label={PlanningCycle}>
2020-08-25 至 2020-10-25 2020-08-25 至 2020-10-25
</BaseInfo.BaseInfoItem> </BaseInfo.BaseInfoItem>
<BaseInfo.BaseInfoItem label='外部状态'> <BaseInfo.BaseInfoItem label={ExternalState}>
<Tag color='green'>已提交</Tag> <Tag color='green'>已提交</Tag>
</BaseInfo.BaseInfoItem> </BaseInfo.BaseInfoItem>
</BaseInfo> </BaseInfo>
<BaseInfo className='mt-10' title={PlanMaterial.name} id={PlanMaterial.key}> <BaseInfo className='mt-1' title={PlanMaterial.name} id={PlanMaterial.key}>
计划送货物料 计划送货物料
</BaseInfo> </BaseInfo>
</AnchorPage> </AnchorPage>
) )
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment