Commit 454eb91b authored by wangxl's avatar wangxl

3333

parent 2d3f2022
...@@ -609,6 +609,9 @@ export default { ...@@ -609,6 +609,9 @@ export default {
getCount (params) { getCount (params) {
return fetch(`/v1/science-admin/com_project_audit/getCount`, params) return fetch(`/v1/science-admin/com_project_audit/getCount`, params)
}, },
getTalentAuditCount (params) {
return fetch(`/v1/science-admin/com_project_audit/getCount`, params)
},
getConclusionAuditCount (params) { getConclusionAuditCount (params) {
return fetch(`/v1/science-admin/com_project_audit/getConclusionAuditCount`, params) return fetch(`/v1/science-admin/com_project_audit/getConclusionAuditCount`, params)
}, },
......
...@@ -56,7 +56,7 @@ export default { ...@@ -56,7 +56,7 @@ export default {
components: { components: {
talentView, audit, batchAudit talentView, audit, batchAudit
}, },
data() { data () {
return { return {
selectedRowKeys: [], selectedRowKeys: [],
// 选项卡 // 选项卡
...@@ -160,7 +160,7 @@ export default { ...@@ -160,7 +160,7 @@ export default {
}).catch(() => { this.loading = false }) }).catch(() => { this.loading = false })
}, },
getCount () { getCount () {
let pars = isEmptyParams({ auditType: 6, reportYear: this.searchForm.reportYear }); let pars = isEmptyParams({ auditType: 6, completed: 1, auditMethod: 5, reportYear: this.searchForm.reportYear });
this.$api.audit.getTalentAuditCount(pars).then(({ data = {} }) => { this.$api.audit.getTalentAuditCount(pars).then(({ data = {} }) => {
if (data) { if (data) {
this.panes = data this.panes = data
...@@ -221,7 +221,7 @@ export default { ...@@ -221,7 +221,7 @@ export default {
this.getListByPage() this.getListByPage()
}, },
exportData () { exportData () {
}, },
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment