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
730fd2e3
Commit
730fd2e3
authored
Aug 01, 2025
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
6abe54e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
3 deletions
+29
-3
Index.vue
src/views/audit/talent/Index.vue
+28
-2
talentView.vue
src/views/report/talent/components/talentView.vue
+1
-1
No files found.
src/views/audit/talent/Index.vue
View file @
730fd2e3
...
...
@@ -13,6 +13,9 @@
<a-form-item>
<a-input
placeholder=
"姓名"
v-model=
"searchForm.personName"
:maxLength=
"100"
style=
"width: 180px"
/>
</a-form-item>
<a-form-item>
<para-select
v-model=
"searchForm.talentCategory"
:typeId=
"21"
:width=
"150"
/>
</a-form-item>
<a-form-item>
<a-button
type=
"primary"
icon=
"search"
@
click=
"search"
>
搜索
</a-button>
<a-button
icon=
"reload"
style=
"margin-left: 10px"
@
click=
"reset"
class=
"bt-normal"
>
重置
</a-button>
...
...
@@ -57,11 +60,12 @@ import { isEmptyParams, filterExportExcelData, tableColumnsName } from "@/views/
import
talentView
from
"@/views/report/talent/components/talentView"
import
batchAudit
from
'@/views/audit/talent/batchAudit'
import
audit
from
'@/views/audit/talent/audit'
import
paraSelect
from
'@/views/components/common/paraSelect'
export
default
{
name
:
"talentAudit"
,
components
:
{
talentView
,
audit
,
batchAudit
talentView
,
audit
,
batchAudit
,
paraSelect
},
// dicts: ['PROJECT_STATUS', 'PARAMETER_TYPE', 'STATUS_TYPE'],
// mounted () {
...
...
@@ -84,6 +88,7 @@ export default {
certId
:
null
,
personName
:
null
,
reportYear
:
null
,
talentCategory
:
null
},
activekey
:
'1'
,
tabDate
:
[
...
...
@@ -124,6 +129,18 @@ export default {
description
:
''
,
id
:
null
,
objectId
:
null
,
excelCol
:
[
{
title
:
'申报年度'
,
dataIndex
:
'reportYear'
,
align
:
'center'
},
{
title
:
'申报单位'
,
dataIndex
:
'appUnitName'
,
align
:
'center'
},
{
title
:
"身份证号"
,
dataIndex
:
'certId'
,
align
:
'center'
},
{
title
:
"姓名"
,
dataIndex
:
'personName'
,
align
:
'center'
},
{
title
:
'性别'
,
dataIndex
:
'sex'
,
align
:
'center'
},
{
title
:
'专业'
,
dataIndex
:
'professionName'
,
align
:
'center'
},
{
title
:
'职称'
,
dataIndex
:
'titleName'
,
align
:
'center'
},
{
title
:
'人才类型'
,
dataIndex
:
'talentCategoryName'
,
align
:
'center'
},
{
title
:
'总经费'
,
dataIndex
:
'totalFunding'
,
align
:
'center'
},
{
title
:
'审核状态'
,
dataIndex
:
'auditResultName'
,
align
:
'center'
}
]
};
},
created
()
{
...
...
@@ -236,7 +253,16 @@ export default {
this
.
getListByPage
()
},
exportData
()
{
this
.
loading
=
true
;
let
pars
=
isEmptyParams
(
this
.
searchForm
);
let
par
=
{
...
pars
,
pageIndex
:
-
1
,
pageSize
:
-
1
,
}
this
.
$api
.
audit
.
getAuditListByPage
(
par
).
then
(({
data
=
{}
})
=>
{
if
(
data
)
{
const
{
dataList
=
[],
total
=
0
}
=
data
;
this
.
$ToDoExcel
(
`人才审核列表`
,
tableColumnsName
(
this
.
excelCol
),
filterExportExcelData
(
this
.
excelCol
,
dataList
))
this
.
loading
=
false
}
}).
catch
(()
=>
{
this
.
loading
=
false
})
},
}
};
...
...
src/views/report/talent/components/talentView.vue
View file @
730fd2e3
...
...
@@ -8,7 +8,7 @@
</a-tabs>
</div>
<div
class=
"page-footer"
>
<
a-button
type=
"primary"
@
click=
"onTalentExport"
>
导出
</a-button
>
<
!--
<a-button
type=
"primary"
@
click=
"onTalentExport"
>
导出
</a-button>
--
>
<talent-info
v-model=
"formData"
:tabsData
.
sync=
"tabsData"
/>
</div>
</a-spin>
...
...
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