Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
Y
yn-science-front
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
徐俊
yn-science-front
Commits
d587957a
Commit
d587957a
authored
Dec 25, 2024
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
84cf07ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
projKeyAssign.vue
src/views/peAssign/projKeyAssign.vue
+5
-2
No files found.
src/views/peAssign/projKeyAssign.vue
View file @
d587957a
...
...
@@ -39,6 +39,7 @@
<a-button
type=
"primary"
@
click=
"onaAssignDetail"
>
分配明细
</a-button>
<a-button
icon=
"download"
type=
"primary"
@
click=
"exportEvaluationExcel"
>
项目评审结果导出
</a-button>
<a-button
icon=
"download"
type=
"primary"
@
click=
"exportProjGroupScoreExcel"
>
项目分组排名导出
</a-button>
<a-tag
:color=
"technology"
>
{{
'技术专家'
}}
</a-tag>
<a-tag
:color=
"finance"
>
{{
'财务专家'
}}
</a-tag>
</div>
<a-table
:dataSource=
"tableData2"
:columns=
"columns2"
rowKey=
"id"
:pagination=
"false"
:loading=
"loading"
:row-selection=
"
{ selectedRowKeys: projGroupSelectedRowKeys, onChange: onProjGroupSelectChange, type: selectType }" @expand="getInnerData" :expandedRowKeys="expandedRowKeys">
<template
slot=
"groupName"
slot-scope=
"record"
>
...
...
@@ -46,7 +47,7 @@
</
template
>
<
template
slot=
"assignInfo"
slot-scope=
"record"
>
<a-tag
v-if=
"!record.expertList||record.expertList.length===0"
:color=
"'red'"
>
未分配
</a-tag>
<a-tag
v-else
v-for=
"data in record.expertList"
:key=
"data.id"
:color=
"
'orange'
"
@
click=
"evaluationView(data)"
>
{{
data
.
personName
}}
</a-tag>
<a-tag
v-else
v-for=
"data in record.expertList"
:key=
"data.id"
:color=
"
data.expertType == 1 ? technology : finance
"
@
click=
"evaluationView(data)"
>
{{
data
.
personName
}}
</a-tag>
</
template
>
<
template
slot=
"option"
slot-scope=
"record"
>
<a-button
type=
"link"
size=
"small"
@
click=
"recordClick(record, 'edit')"
>
修改
</a-button>
...
...
@@ -159,7 +160,9 @@ export default {
eTableData
:
[],
eMergeList
:
[],
projectIntoGroupVisible
:
false
,
projectIntoGroupTitle
:
null
projectIntoGroupTitle
:
null
,
technology
:
"green"
,
finance
:
"red"
,
};
},
created
()
{
...
...
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