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
b21a2cee
Commit
b21a2cee
authored
Jul 23, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.yiboshi.com/XuJun/yn-science-front
parents
58f6d3c9
d9df4caf
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
index.js
src/router/index.js
+1
-1
projKeyAssign.vue
src/views/peAssign/projKeyAssign.vue
+3
-1
projKnowledgeAssign.vue
src/views/peAssign/projKnowledgeAssign.vue
+3
-1
index.vue
src/views/talentAssign/index.vue
+0
-0
No files found.
src/router/index.js
View file @
b21a2cee
...
@@ -152,7 +152,7 @@ export const routes = [
...
@@ -152,7 +152,7 @@ export const routes = [
children
:
[
children
:
[
{
path
:
'/audit/talent'
,
name
:
'人才申报审核'
,
component
:
()
=>
import
(
'@/views/audit/talent/Index.vue'
),
meta
:
{
title
:
'人才申报审核'
,
icon
:
''
,
noCache
:
true
}
},
{
path
:
'/audit/talent'
,
name
:
'人才申报审核'
,
component
:
()
=>
import
(
'@/views/audit/talent/Index.vue'
),
meta
:
{
title
:
'人才申报审核'
,
icon
:
''
,
noCache
:
true
}
},
{
path
:
'/talent/preliminary'
,
name
:
'人才预审'
,
component
:
()
=>
import
(
'@/views/audit/talent/Index.vue'
),
meta
:
{
title
:
'人才预审'
,
icon
:
''
,
noCache
:
true
}
},
{
path
:
'/talent/preliminary'
,
name
:
'人才预审'
,
component
:
()
=>
import
(
'@/views/audit/talent/Index.vue'
),
meta
:
{
title
:
'人才预审'
,
icon
:
''
,
noCache
:
true
}
},
{
path
:
'/talent/assign'
,
name
:
'人才分配'
,
component
:
()
=>
import
(
'@/views/
audit/talent/I
ndex.vue'
),
meta
:
{
title
:
'人才分配'
,
icon
:
''
,
noCache
:
true
}
},
{
path
:
'/talent/assign'
,
name
:
'人才分配'
,
component
:
()
=>
import
(
'@/views/
talentAssign/i
ndex.vue'
),
meta
:
{
title
:
'人才分配'
,
icon
:
''
,
noCache
:
true
}
},
{
path
:
'/talent/final'
,
name
:
'人才终审'
,
component
:
()
=>
import
(
'@/views/audit/talent/Index.vue'
),
meta
:
{
title
:
'人才终审'
,
icon
:
''
,
noCache
:
true
}
},
{
path
:
'/talent/final'
,
name
:
'人才终审'
,
component
:
()
=>
import
(
'@/views/audit/talent/Index.vue'
),
meta
:
{
title
:
'人才终审'
,
icon
:
''
,
noCache
:
true
}
},
]
]
},
},
...
...
src/views/peAssign/projKeyAssign.vue
View file @
b21a2cee
...
@@ -46,13 +46,15 @@
...
@@ -46,13 +46,15 @@
</
template
>
</
template
>
<
template
slot=
"assignInfo"
slot-scope=
"record"
>
<
template
slot=
"assignInfo"
slot-scope=
"record"
>
<a-tag
v-if=
"!record.expertList||record.expertList.length===0"
:color=
"'red'"
>
未分配
</a-tag>
<a-tag
v-if=
"!record.expertList||record.expertList.length===0"
:color=
"'red'"
>
未分配
</a-tag>
<a-tooltip
v-else
v-for=
"data in record.expertList"
:key=
"data.id"
placement=
"topLeft"
>
<template
v-else
>
<a-tooltip
v-for=
"data in record.expertList"
:key=
"data.id"
placement=
"topLeft"
>
<template
slot=
"title"
>
<template
slot=
"title"
>
<span>
{{
data
.
workUnit
}}
</span>
<span>
{{
data
.
workUnit
}}
</span>
</
template
>
</
template
>
<a-tag
:color=
"data.expertType == 1 ? technology : finance"
@
click=
"evaluationView(data)"
>
{{data.personName}}
</a-tag>
<a-tag
:color=
"data.expertType == 1 ? technology : finance"
@
click=
"evaluationView(data)"
>
{{data.personName}}
</a-tag>
</a-tooltip>
</a-tooltip>
</template>
</template>
</template>
<
template
slot=
"option"
slot-scope=
"record"
>
<
template
slot=
"option"
slot-scope=
"record"
>
<a-button
type=
"link"
size=
"small"
@
click=
"recordClick(record, 'edit')"
>
修改
</a-button>
<a-button
type=
"link"
size=
"small"
@
click=
"recordClick(record, 'edit')"
>
修改
</a-button>
<a-button
type=
"link"
size=
"small"
@
click=
"recordClick(record, 'delete')"
v-if=
"!record.projectList||record.projectList.length===0"
>
删除
</a-button>
<a-button
type=
"link"
size=
"small"
@
click=
"recordClick(record, 'delete')"
v-if=
"!record.projectList||record.projectList.length===0"
>
删除
</a-button>
...
...
src/views/peAssign/projKnowledgeAssign.vue
View file @
b21a2cee
...
@@ -50,7 +50,9 @@
...
@@ -50,7 +50,9 @@
</
template
>
</
template
>
<
template
slot=
"assignInfo"
slot-scope=
"record"
>
<
template
slot=
"assignInfo"
slot-scope=
"record"
>
<a-tag
v-if=
"!record.expertList||record.expertList.length===0"
:color=
"'red'"
>
未分配
</a-tag>
<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>
<template
v-else
>
<a-tag
v-for=
"data in record.expertList"
:key=
"data.id"
:color=
"'orange'"
@
click=
"evaluationView(data)"
>
{{
data
.
personName
}}
</a-tag>
</
template
>
</template>
</template>
<
template
slot=
"option"
slot-scope=
"record"
>
<
template
slot=
"option"
slot-scope=
"record"
>
<a-button
type=
"link"
size=
"small"
@
click=
"recordClick(record, 'edit')"
>
修改
</a-button>
<a-button
type=
"link"
size=
"small"
@
click=
"recordClick(record, 'edit')"
>
修改
</a-button>
...
...
src/views/talentAssign/index.vue
0 → 100644
View file @
b21a2cee
This diff is collapsed.
Click to expand it.
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