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
shenshaokai
jinfa-platform
Commits
bbcb2848
Commit
bbcb2848
authored
Oct 30, 2020
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整评价详情页面 loading
parent
d1087c35
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
30 additions
and
2 deletions
+30
-2
index.ts
config/routes/tranactionRoute/index.ts
+12
-2
index.tsx
...transaction/purchaserEvaluation/received/detail/index.tsx
+3
-0
index.tsx
.../purchaserEvaluation/sent/components/DetailInfo/index.tsx
+3
-0
index.tsx
...action/purchaserEvaluation/unevaluated/evaluate/index.tsx
+3
-0
index.tsx
.../transaction/supplierEvaluation/received/detail/index.tsx
+3
-0
index.tsx
...n/supplierEvaluation/sent/components/DetailInfo/index.tsx
+3
-0
index.tsx
...saction/supplierEvaluation/unevaluated/evaluate/index.tsx
+3
-0
No files found.
config/routes/tranactionRoute/index.ts
View file @
bbcb2848
...
...
@@ -230,13 +230,15 @@ const TranactionRoute = {
name
:
'evaluate'
,
component
:
'@/pages/transaction/supplierEvaluation/unevaluated/evaluate/index'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 待评价订单-订单详情
{
path
:
'/memberCenter/tranactionAbility/supplierEvaluation/unevaluated/order'
,
name
:
'orderPreview'
,
hideInMenu
:
true
,
component
:
'@/pages/transaction/saleOrder/orderPreview'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 评价统计
{
...
...
@@ -250,6 +252,7 @@ const TranactionRoute = {
name
:
'receivedDetail'
,
component
:
'@/pages/transaction/supplierEvaluation/received/detail/index'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 发出的评价-详情
{
...
...
@@ -257,6 +260,7 @@ const TranactionRoute = {
name
:
'sentDetail'
,
component
:
'@/pages/transaction/supplierEvaluation/sent/detail'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 发出的评价-编辑
{
...
...
@@ -264,6 +268,7 @@ const TranactionRoute = {
name
:
'editSent'
,
component
:
'@/pages/transaction/supplierEvaluation/sent/edit'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 收到的评价(UI合并到评价统计了,暂时不需要)
// {
...
...
@@ -297,13 +302,15 @@ const TranactionRoute = {
name
:
'evaluate'
,
component
:
'@/pages/transaction/purchaserEvaluation/unevaluated/evaluate/index'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 待评价订单-订单详情
{
path
:
'/memberCenter/tranactionAbility/purchaserEvaluation/unevaluated/order'
,
name
:
'orderPreview'
,
hideInMenu
:
true
,
component
:
'@/pages/transaction/saleOrder/orderPreview'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 评价统计
{
...
...
@@ -317,6 +324,7 @@ const TranactionRoute = {
name
:
'receivedDetail'
,
component
:
'@/pages/transaction/purchaserEvaluation/received/detail/index'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 发出的评价-详情
{
...
...
@@ -324,6 +332,7 @@ const TranactionRoute = {
name
:
'sentDetail'
,
component
:
'@/pages/transaction/purchaserEvaluation/sent/detail'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 发出的评价-编辑
{
...
...
@@ -331,6 +340,7 @@ const TranactionRoute = {
name
:
'editSent'
,
component
:
'@/pages/transaction/purchaserEvaluation/sent/edit'
,
hideInMenu
:
true
,
noMargin
:
true
,
},
// 收到的评价(UI合并到评价统计了,暂时不需要)
// {
...
...
src/pages/transaction/purchaserEvaluation/received/detail/index.tsx
View file @
bbcb2848
...
...
@@ -126,6 +126,9 @@ const ReceivedDetail: React.FC = () => {
return
(
<
Spin
spinning=
{
orderInfoLoading
||
evaluationInfoLoading
}
>
<
PageHeaderWrapper
style=
{
{
padding
:
24
,
}
}
title=
{
<>
<
PageHeader
...
...
src/pages/transaction/purchaserEvaluation/sent/components/DetailInfo/index.tsx
View file @
bbcb2848
...
...
@@ -170,6 +170,9 @@ const DetailInfo: React.FC<DetailInfoProps> = ({
return
(
<
Spin
spinning=
{
orderInfoLoading
||
evaluationInfoLoading
}
>
<
PageHeaderWrapper
style=
{
{
padding
:
24
,
}
}
title=
{
<>
<
PageHeader
...
...
src/pages/transaction/purchaserEvaluation/unevaluated/evaluate/index.tsx
View file @
bbcb2848
...
...
@@ -139,6 +139,9 @@ const EvaluateOrder: React.FC = () => {
return
(
<
Spin
spinning=
{
infoLoading
}
>
<
PageHeaderWrapper
style=
{
{
padding
:
24
,
}
}
title=
{
<>
<
PageHeader
...
...
src/pages/transaction/supplierEvaluation/received/detail/index.tsx
View file @
bbcb2848
...
...
@@ -126,6 +126,9 @@ const ReceivedDetail: React.FC = () => {
return
(
<
Spin
spinning=
{
orderInfoLoading
||
evaluationInfoLoading
}
>
<
PageHeaderWrapper
style=
{
{
padding
:
24
,
}
}
title=
{
<>
<
PageHeader
...
...
src/pages/transaction/supplierEvaluation/sent/components/DetailInfo/index.tsx
View file @
bbcb2848
...
...
@@ -169,6 +169,9 @@ const DetailInfo: React.FC<DetailInfoProps> = ({
return
(
<
Spin
spinning=
{
orderInfoLoading
||
evaluationInfoLoading
}
>
<
PageHeaderWrapper
style=
{
{
padding
:
24
,
}
}
title=
{
<>
<
PageHeader
...
...
src/pages/transaction/supplierEvaluation/unevaluated/evaluate/index.tsx
View file @
bbcb2848
...
...
@@ -139,6 +139,9 @@ const EvaluateOrder: React.FC = () => {
return
(
<
Spin
spinning=
{
infoLoading
}
>
<
PageHeaderWrapper
style=
{
{
padding
:
24
,
}
}
title=
{
<>
<
PageHeader
...
...
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