Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄庭坚
jinfa-platform
Commits
97e935a5
Commit
97e935a5
authored
Jan 07, 2021
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复退货、收货单号跳转的问题
parent
683bfd22
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
66 additions
and
23 deletions
+66
-23
index.tsx
...erService/exchangeApplication/exchangePrDeliver/index.tsx
+8
-2
index.tsx
...rService/exchangeApplication/exchangePrReceived/index.tsx
+11
-4
index.tsx
...s/afterService/exchangeManage/exchangePrDeliver/index.tsx
+8
-2
index.tsx
.../afterService/exchangeManage/exchangePrReceived/index.tsx
+11
-5
index.tsx
...rService/returnApplication/returnPrAddLogistics/index.tsx
+10
-4
index.tsx
...erService/returnApplication/returnPrConfirmBack/index.tsx
+9
-3
index.tsx
...ages/afterService/returnManage/returnPrReceived/index.tsx
+9
-3
No files found.
src/pages/afterService/exchangeApplication/exchangePrDeliver/index.tsx
View file @
97e935a5
...
...
@@ -11,7 +11,7 @@ import {
ClockCircleOutlined
,
ExclamationCircleOutlined
,
}
from
'@ant-design/icons'
;
import
{
history
}
from
'umi'
;
import
{
history
,
Link
}
from
'umi'
;
import
{
StandardTable
}
from
'god'
;
import
moment
from
'moment'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
...
...
@@ -75,7 +75,13 @@ const ExchangePrDeliver: React.FC = () => {
title
:
'退货发货单号'
,
dataIndex
:
'returnDeliveryNo'
,
align
:
'center'
,
render
:
text
=>
<
a
>
{
text
}
</
a
>,
render
:
(
text
,
record
)
=>
(
<
Link
to=
{
`/memberCenter/tranactionAbility/stockSellStorage/bills/detail?id=${record.returnDeliveryId}`
}
>
{
text
}
</
Link
>
),
},
{
title
:
'外部状态'
,
...
...
src/pages/afterService/exchangeApplication/exchangePrReceived/index.tsx
View file @
97e935a5
...
...
@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2020-11-06 16:30:44
* @LastEditors: XieZhiXiong
* @LastEditTime: 202
0-12-31 10:33:18
* @LastEditTime: 202
1-01-07 11:02:51
* @Description: 待换货收货
*/
import
React
,
{
useState
,
useRef
}
from
'react'
;
...
...
@@ -11,7 +11,7 @@ import {
ClockCircleOutlined
,
ExclamationCircleOutlined
,
}
from
'@ant-design/icons'
;
import
{
history
}
from
'umi'
;
import
{
history
,
Link
}
from
'umi'
;
import
{
StandardTable
}
from
'god'
;
import
moment
from
'moment'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
...
...
@@ -74,9 +74,16 @@ const ExchangePrReceived: React.FC = () => {
align
:
'center'
,
},
{
title
:
'换货
发货
单号'
,
dataIndex
:
'replace
Delivery
No'
,
title
:
'换货
入库
单号'
,
dataIndex
:
'replace
Storage
No'
,
align
:
'center'
,
render
:
(
text
,
record
)
=>
(
<
Link
to=
{
`/memberCenter/tranactionAbility/stockSellStorage/bills/detail?id=${record.replaceStorageId}`
}
>
{
text
}
</
Link
>
),
},
{
title
:
'外部状态'
,
...
...
src/pages/afterService/exchangeManage/exchangePrDeliver/index.tsx
View file @
97e935a5
...
...
@@ -11,7 +11,7 @@ import {
ClockCircleOutlined
,
ExclamationCircleOutlined
,
}
from
'@ant-design/icons'
;
import
{
history
}
from
'umi'
;
import
{
history
,
Link
}
from
'umi'
;
import
{
StandardTable
}
from
'god'
;
import
moment
from
'moment'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
...
...
@@ -75,7 +75,13 @@ const ExchangePrDeliver: React.FC = () => {
title
:
'换货发货单号'
,
dataIndex
:
'replaceDeliveryNo'
,
align
:
'center'
,
render
:
text
=>
<
a
>
{
text
}
</
a
>,
render
:
(
text
,
record
)
=>
(
<
Link
to=
{
`/memberCenter/tranactionAbility/stockSellStorage/bills/detail?id=${record.replaceDeliveryId}`
}
>
{
text
}
</
Link
>
),
},
{
title
:
'外部状态'
,
...
...
src/pages/afterService/exchangeManage/exchangePrReceived/index.tsx
View file @
97e935a5
...
...
@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2020-11-06 16:30:44
* @LastEditors: XieZhiXiong
* @LastEditTime: 202
0-12-03 20:18:26
* @LastEditTime: 202
1-01-07 11:05:27
* @Description: 待退货收货
*/
import
React
,
{
useState
,
useRef
}
from
'react'
;
...
...
@@ -11,7 +11,7 @@ import {
ClockCircleOutlined
,
ExclamationCircleOutlined
,
}
from
'@ant-design/icons'
;
import
{
history
}
from
'umi'
;
import
{
history
,
Link
}
from
'umi'
;
import
{
StandardTable
}
from
'god'
;
import
moment
from
'moment'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
...
...
@@ -74,10 +74,16 @@ const ExchangePrReceived: React.FC = () => {
align
:
'center'
,
},
{
title
:
'退货
发货
单号'
,
dataIndex
:
'return
Delivery
No'
,
title
:
'退货
入库
单号'
,
dataIndex
:
'return
Storage
No'
,
align
:
'center'
,
render
:
text
=>
<
a
>
{
text
}
</
a
>,
render
:
(
text
,
record
)
=>
(
<
Link
to=
{
`/memberCenter/tranactionAbility/stockSellStorage/bills/detail?id=${record.returnStorageId}`
}
>
{
text
}
</
Link
>
),
},
{
title
:
'外部状态'
,
...
...
src/pages/afterService/returnApplication/returnPrAddLogistics/index.tsx
View file @
97e935a5
...
...
@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2020-11-06 16:30:44
* @LastEditors: XieZhiXiong
* @LastEditTime: 202
0-12-17 15:13:16
* @LastEditTime: 202
1-01-07 10:51:04
* @Description: 待新增退货发货单
*/
import
React
,
{
useState
,
useRef
}
from
'react'
;
...
...
@@ -10,7 +10,7 @@ import { Card, Badge, Progress, Button } from 'antd';
import
{
ClockCircleOutlined
,
}
from
'@ant-design/icons'
;
import
{
history
}
from
'umi'
;
import
{
history
,
Link
}
from
'umi'
;
import
{
StandardTable
}
from
'god'
;
import
moment
from
'moment'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
...
...
@@ -83,7 +83,13 @@ const ReturnPrAddLogistics: React.FC = () => {
title
:
'退货发货单号'
,
dataIndex
:
'returnDeliveryNo'
,
align
:
'center'
,
render
:
text
=>
<
a
>
{
text
}
</
a
>,
render
:
(
text
,
record
)
=>
(
<
Link
to=
{
`/memberCenter/tranactionAbility/stockSellStorage/bills/detail?id=${record.returnDeliveryId}`
}
>
{
text
}
</
Link
>
),
},
{
title
:
'外部状态'
,
...
...
@@ -121,7 +127,7 @@ const ReturnPrAddLogistics: React.FC = () => {
type=
"link"
onClick=
{
()
=>
history
.
push
(
`/memberCenter/logisticsAbility/logisticsSubmit/orderSubmitSearchList/detail?id=${record.return
Delivery
Id}`
)
history
.
push
(
`/memberCenter/logisticsAbility/logisticsSubmit/orderSubmitSearchList/detail?id=${record.return
Logistics
Id}`
)
}
>
查看物流单
...
...
src/pages/afterService/returnApplication/returnPrConfirmBack/index.tsx
View file @
97e935a5
...
...
@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2020-11-06 16:30:44
* @LastEditors: XieZhiXiong
* @LastEditTime: 202
0-11-17 17:24:12
* @LastEditTime: 202
1-01-07 10:52:38
* @Description: 待新增退货发货单
*/
import
React
,
{
useState
,
useRef
}
from
'react'
;
...
...
@@ -11,7 +11,7 @@ import {
ClockCircleOutlined
,
ExclamationCircleOutlined
,
}
from
'@ant-design/icons'
;
import
{
history
}
from
'umi'
;
import
{
history
,
Link
}
from
'umi'
;
import
{
StandardTable
}
from
'god'
;
import
moment
from
'moment'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
...
...
@@ -82,7 +82,13 @@ const ReturnPrConfirmBack: React.FC = () => {
title
:
'退货发货单号'
,
dataIndex
:
'returnDeliveryNo'
,
align
:
'center'
,
render
:
text
=>
<
a
>
{
text
}
</
a
>,
render
:
(
text
,
record
)
=>
(
<
Link
to=
{
`/memberCenter/tranactionAbility/stockSellStorage/bills/detail?id=${record.returnDeliveryId}`
}
>
{
text
}
</
Link
>
),
},
{
title
:
'外部状态'
,
...
...
src/pages/afterService/returnManage/returnPrReceived/index.tsx
View file @
97e935a5
...
...
@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2020-11-06 16:30:44
* @LastEditors: XieZhiXiong
* @LastEditTime: 202
0-12-08 17:22:57
* @LastEditTime: 202
1-01-07 10:56:40
* @Description: 待新增退货入库单
*/
import
React
,
{
useState
,
useRef
}
from
'react'
;
...
...
@@ -11,7 +11,7 @@ import {
ClockCircleOutlined
,
ExclamationCircleOutlined
,
}
from
'@ant-design/icons'
;
import
{
history
}
from
'umi'
;
import
{
history
,
Link
}
from
'umi'
;
import
{
StandardTable
}
from
'god'
;
import
moment
from
'moment'
;
import
{
ColumnType
}
from
'antd/lib/table/interface'
;
...
...
@@ -82,7 +82,13 @@ const ReturnPrReceived: React.FC = () => {
title
:
'退货入库单号'
,
dataIndex
:
'returnStorageNo'
,
align
:
'center'
,
render
:
text
=>
<
a
>
{
text
}
</
a
>,
render
:
(
text
,
record
)
=>
(
<
Link
to=
{
`/memberCenter/tranactionAbility/stockSellStorage/bills/detail?id=${record.returnStorageId}`
}
>
{
text
}
</
Link
>
),
},
{
title
:
'外部状态'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment