Commit ffec15a8 authored by 徐俊's avatar 徐俊

xujun

parent 91038157
......@@ -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 })
},
}
};
......
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