Commit 23c6fd3e authored by 前端-李俊鑫's avatar 前端-李俊鑫

fix: 格式调整

parent 1fc7cfa8
......@@ -2,10 +2,13 @@
* 订单能力 - 送货通知单管理 - 新增待提交送货通知单B2B
* @author: Gavin
*/
import React, { useRef } from 'react'
import React, { useRef } from 'react'
import { history } from 'umi'
import AddEditContent from './components/AddEditContent'
const DeliveryNoticeManagementAwaitB2BAdd: React.FC = () => {
const [time] = history.location?.query?.time
return (
<AddEditContent type='add' />
)
......
......@@ -2,12 +2,12 @@
* 订单能力 - 送货通知单管理 - 修改待提交送货通知单B2B
* @author: Gavin
*/
import React, { useRef } from 'react'
import { history } from 'umi'
import React, { useRef } from 'react'
import { history } from 'umi'
import AddEditContent from './components/AddEditContent'
const DeliveryNoticeManagementAwaitB2BEdit: React.FC = () => {
const [ id ] = history.location?.query?.id
const [id] = history.location?.query?.id
return (
<AddEditContent
......
......@@ -3,10 +3,13 @@
* @author: Gavin
* @description: 与B2B内容大致相同,文件分开方便后续对接以及日后变动修改二开
*/
import React, { useRef } from 'react'
import React, { useRef } from 'react'
import { history } from 'umi'
import AddEditContent from './components/AddEditContent'
const DeliveryNoticeManagementAwaitSRMAdd: React.FC = () => {
const [time] = history.location?.query?.time
return (
<AddEditContent type='add' />
)
......
......@@ -3,12 +3,12 @@
* @author: Gavin
* @description: 与B2B内容大致相同,文件分开方便后续对接以及日后变动修改二开
*/
import React, { useRef } from 'react'
import { history } from 'umi'
import React, { useRef } from 'react'
import { history } from 'umi'
import AddEditContent from './components/AddEditContent'
const DeliveryNoticeManagementAwaitSRMEdit: React.FC = () => {
const [ id ] = history.location?.query?.id
const [id] = history.location?.query?.id
return (
<AddEditContent
......
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