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
e16923c3
Commit
e16923c3
authored
Jun 04, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
555
parent
89a83302
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
projectAssignDetail.vue
src/views/assign/components/projectAssignDetail.vue
+10
-1
No files found.
src/views/assign/components/projectAssignDetail.vue
View file @
e16923c3
...
...
@@ -23,7 +23,7 @@
</a-form-item>
</a-form>
<a-divider
style=
"height: 1px; background-color: #e8e8e8;"
/>
<a-table
:dataSource=
"tableData"
:columns=
"columns"
rowKey=
"id"
:pagination=
"false"
:loading=
"loading"
>
<a-table
:dataSource=
"tableData"
:columns=
"columns"
rowKey=
"id"
:
scroll=
"
{ x: 'max-content' }" :
pagination="false" :loading="loading">
<template
slot=
"personName"
slot-scope=
"record"
>
<a-tag
:color=
"'#2db7f5'"
v-if=
"record.expertType==1"
>
{{
record
.
personName
}}
</a-tag>
<a-tag
:color=
"'#87d068'"
v-if=
"record.expertType==2"
>
{{
record
.
personName
}}
</a-tag>
...
...
@@ -31,6 +31,13 @@
<
template
slot=
"spec"
slot-scope=
"record"
>
<span
v-for=
"data in record.specList"
:key=
"data.id"
:color=
"'green'"
>
{{
data
.
specName
+
' '
}}
</span>
</
template
>
<
template
slot=
"supportState"
slot-scope=
"record"
>
<a-tag
:color=
"'#87d068'"
v-if=
"record.supportState==1"
>
是
</a-tag>
<a-tag
:color=
"'#f50'"
v-if=
"record.supportState==0"
>
否
</a-tag>
</
template
>
<
template
slot=
"noSupportReason"
slot-scope=
"record"
>
<span
v-if=
"record.supportState==0"
>
{{
record
.
noSupportReason
}}
</span>
</
template
>
<
template
slot=
"evaluationType"
slot-scope=
"record"
>
<a-tag
:color=
"'#87d068'"
v-if=
"record.evaluationType==1"
>
{{
evaluationTypeA
}}
</a-tag>
<a-tag
:color=
"'#2db7f5'"
v-if=
"record.evaluationType==2"
>
{{
evaluationTypeB
}}
</a-tag>
...
...
@@ -76,6 +83,8 @@ export default {
{
title
:
"专家单位"
,
dataIndex
:
"workUnit"
,
align
:
'center'
},
{
title
:
"评审意见"
,
dataIndex
:
"remark"
,
align
:
'center'
},
{
title
:
'评分'
,
dataIndex
:
'totalScore'
,
align
:
'center'
},
{
title
:
'是否推荐立项'
,
scopedSlots
:
{
customRender
:
'supportState'
},
align
:
'center'
},
{
title
:
'不推荐原因'
,
scopedSlots
:
{
customRender
:
'noSupportReason'
},
align
:
'center'
},
{
title
:
'评审结果'
,
scopedSlots
:
{
customRender
:
'evaluationType'
},
align
:
'center'
},
// { title: '评审状态', scopedSlots: { customRender: 'expertEvaluation' }, align: 'center' },
{
title
:
'操作'
,
scopedSlots
:
{
customRender
:
'option'
},
align
:
'center'
,
fixed
:
'right'
,
width
:
120
,
},
...
...
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