Commit 454eb91b authored by wangxl's avatar wangxl

3333

parent 2d3f2022
......@@ -609,6 +609,9 @@ export default {
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) {
return fetch(`/v1/science-admin/com_project_audit/getConclusionAuditCount`, params)
},
......
......@@ -56,7 +56,7 @@ export default {
components: {
talentView, audit, batchAudit
},
data() {
data () {
return {
selectedRowKeys: [],
// 选项卡
......@@ -160,7 +160,7 @@ export default {
}).catch(() => { this.loading = false })
},
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 = {} }) => {
if (data) {
this.panes = data
......@@ -221,7 +221,7 @@ export default {
this.getListByPage()
},
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