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
ffec15a8
Commit
ffec15a8
authored
Aug 01, 2025
by
徐俊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xujun
parent
91038157
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
final.vue
src/views/audit/talent/final.vue
+16
-2
No files found.
src/views/audit/talent/final.vue
View file @
ffec15a8
...
...
@@ -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
label=
"评分刷选"
>
<a-input-number
v-model=
"searchForm.scoreStart"
:min=
"0"
:step=
"0.01"
style=
"width: 60px"
/>
~
...
...
@@ -68,11 +71,12 @@ import talentView from "@/views/report/talent/components/talentView"
import
batchAudit
from
'@/views/audit/talent/batchAudit'
import
audit
from
'@/views/audit/talent/audit'
import
assignDetail
from
'@/views/evaluation/talent/components/assignDetail'
import
paraSelect
from
'@/views/components/common/paraSelect'
export
default
{
name
:
"talentAuditFinal"
,
components
:
{
talentView
,
audit
,
batchAudit
,
assignDetail
talentView
,
audit
,
batchAudit
,
assignDetail
,
paraSelect
},
data
()
{
return
{
...
...
@@ -86,6 +90,7 @@ export default {
certId
:
null
,
personName
:
null
,
reportYear
:
null
,
talentCategory
:
null
},
activekey
:
'1'
,
tabDate
:
[
...
...
@@ -247,7 +252,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
})
},
}
};
...
...
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