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
550d5947
Commit
550d5947
authored
Sep 22, 2020
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加供应商评价路由相关
parent
eeb619dd
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
92 additions
and
5 deletions
+92
-5
tranactionRoute.ts
config/routes/tranactionRoute.ts
+29
-2
menu.ts
src/locales/zh-CN/menu.ts
+8
-3
index.less
src/pages/transaction/supplierEvaluation/analysis/index.less
+0
-0
index.tsx
src/pages/transaction/supplierEvaluation/analysis/index.tsx
+11
-0
index.less
src/pages/transaction/supplierEvaluation/index.less
+0
-0
index.tsx
src/pages/transaction/supplierEvaluation/index.tsx
+11
-0
index.less
src/pages/transaction/supplierEvaluation/received/index.less
+0
-0
index.tsx
src/pages/transaction/supplierEvaluation/received/index.tsx
+11
-0
index.less
src/pages/transaction/supplierEvaluation/sent/index.less
+0
-0
index.tsx
src/pages/transaction/supplierEvaluation/sent/index.tsx
+11
-0
index.less
...ges/transaction/supplierEvaluation/unevaluated/index.less
+0
-0
index.tsx
...ages/transaction/supplierEvaluation/unevaluated/index.tsx
+11
-0
No files found.
config/routes/tranactionRoute.ts
View file @
550d5947
/*
* @Author: LeeJiancong
* @Date: 2020-07-31 19:56:22
* @LastEditors:
jiaxin
* @LastEditors:
XieZhiXiong
* @Copyright: 1549414730@qq.com
* @LastEditTime: 2020-09-2
1 18:32:55
* @LastEditTime: 2020-09-2
2 10:35:20
*/
const
TranactionRoute
=
{
...
...
@@ -309,6 +309,33 @@ const TranactionRoute = {
hideInMenu
:
true
,
component
:
'@/pages/transaction/transactionRules/addRule'
,
},
// 供应会员评价管理
{
path
:
'/memberCenter/tranactionAbility/supplierEvaluation'
,
name
:
'supplierEvaluation'
,
routes
:
[
{
path
:
'/memberCenter/tranactionAbility/supplierEvaluation/unevaluated'
,
name
:
'unevaluated'
,
component
:
'@/pages/transaction/supplierEvaluation/unevaluated'
,
},
{
path
:
'/memberCenter/tranactionAbility/supplierEvaluation/analysis'
,
name
:
'analysis'
,
component
:
'@/pages/transaction/supplierEvaluation/analysis'
,
},
{
path
:
'/memberCenter/tranactionAbility/supplierEvaluation/received'
,
name
:
'received'
,
component
:
'@/pages/transaction/supplierEvaluation/received'
,
},
{
path
:
'/memberCenter/tranactionAbility/supplierEvaluation/sent'
,
name
:
'sent'
,
component
:
'@/pages/transaction/supplierEvaluation/sent'
,
},
],
},
]
}
...
...
src/locales/zh-CN/menu.ts
View file @
550d5947
/*
* @Author: LeeJiancong
* @Date: 2020-07-13 14:08:50
* @LastEditors:
jiaxin
* @LastEditTime: 2020-09-2
1 18:33:27
* @LastEditors:
XieZhiXiong
* @LastEditTime: 2020-09-2
2 10:30:48
*/
export
default
{
...
...
@@ -169,7 +169,12 @@ export default {
'menu.tranactionAbility.enquiryOffer.enquiryTwo'
:
'待审核报价单(二级)'
,
'menu.tranactionAbility.enquiryOffer.toSubmit'
:
'待提交报价单'
,
// 供应商评价
'menu.tranactionAbility.supplierEvaluation'
:
'供应会员评价管理'
,
'menu.tranactionAbility.supplierEvaluation.unevaluated'
:
'待评价订单'
,
'menu.tranactionAbility.supplierEvaluation.analysis'
:
'评价统计'
,
'menu.tranactionAbility.supplierEvaluation.received'
:
'收到的评价'
,
'menu.tranactionAbility.supplierEvaluation.sent'
:
'发出的评价'
,
//物流能力
'menu.logisticsAbility'
:
'物流'
,
...
...
src/pages/transaction/supplierEvaluation/analysis/index.less
0 → 100644
View file @
550d5947
src/pages/transaction/supplierEvaluation/analysis/index.tsx
0 → 100644
View file @
550d5947
import
React
from
'react'
;
import
styles
from
'./index.less'
;
const
Analysis
:
React
.
FC
=
()
=>
{
return
(
<
div
>
Analysis
</
div
>
);
};
export
default
Analysis
;
\ No newline at end of file
src/pages/transaction/supplierEvaluation/index.less
0 → 100644
View file @
550d5947
src/pages/transaction/supplierEvaluation/index.tsx
0 → 100644
View file @
550d5947
import
React
from
'react'
;
import
styles
from
'./index.less'
;
const
SupplierEvaluation
:
React
.
FC
=
()
=>
{
return
(
<
div
>
123
</
div
>
);
};
export
default
SupplierEvaluation
;
\ No newline at end of file
src/pages/transaction/supplierEvaluation/received/index.less
0 → 100644
View file @
550d5947
src/pages/transaction/supplierEvaluation/received/index.tsx
0 → 100644
View file @
550d5947
import
React
from
'react'
;
import
styles
from
'./index.less'
;
const
Received
:
React
.
FC
=
()
=>
{
return
(
<
div
>
Received
</
div
>
);
};
export
default
Received
;
\ No newline at end of file
src/pages/transaction/supplierEvaluation/sent/index.less
0 → 100644
View file @
550d5947
src/pages/transaction/supplierEvaluation/sent/index.tsx
0 → 100644
View file @
550d5947
import
React
from
'react'
;
import
styles
from
'./index.less'
;
const
Sent
:
React
.
FC
=
()
=>
{
return
(
<
div
>
Sent
</
div
>
);
};
export
default
Sent
;
\ No newline at end of file
src/pages/transaction/supplierEvaluation/unevaluated/index.less
0 → 100644
View file @
550d5947
src/pages/transaction/supplierEvaluation/unevaluated/index.tsx
0 → 100644
View file @
550d5947
import
React
from
'react'
;
import
styles
from
'./index.less'
;
const
Unevaluated
:
React
.
FC
=
()
=>
{
return
(
<
div
>
Unevaluated
</
div
>
);
};
export
default
Unevaluated
;
\ No newline at end of file
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