Commit b1821d13 authored by 徐俊's avatar 徐俊

xujun

parent e2f248c8
...@@ -107,13 +107,14 @@ export default { ...@@ -107,13 +107,14 @@ export default {
// { title: '性别', dataIndex: 'sex', align: 'center' }, // { title: '性别', dataIndex: 'sex', align: 'center' },
// { title: '证件号', dataIndex: 'certId', align: 'center' }, // { title: '证件号', dataIndex: 'certId', align: 'center' },
{ title: '专家姓名', dataIndex: 'personName', align: 'center' }, { title: '专家姓名', dataIndex: 'personName', align: 'center' },
{ title: '评审专业', dataIndex: 'specNames', align: 'center', ellipsis: true },
{ title: "专家类型", scopedSlots: { customRender: 'expertInfo' }, align: 'center' }, { title: "专家类型", scopedSlots: { customRender: 'expertInfo' }, align: 'center' },
{ title: '专家单位', dataIndex: 'unitName', align: 'center', ellipsis: true }, { title: '专家单位', dataIndex: 'unitName', align: 'center', ellipsis: true },
{ title: '手机号', dataIndex: 'mobile', align: 'center' }, { title: '手机号', dataIndex: 'mobile', align: 'center' },
// { title: '邮箱', dataIndex: 'email', align: 'center' }, // { title: '邮箱', dataIndex: 'email', align: 'center' },
// { title: '职称', dataIndex: 'titleName', align: 'center' }, // { title: '职称', dataIndex: 'titleName', align: 'center' },
// { title: '评审专业', scopedSlots: { customRender: 'spec' }, align: 'center' }, // { title: '评审专业', scopedSlots: { customRender: 'spec' }, align: 'center' },
{ title: '评分', dataIndex: 'totalScore', align: 'center' }, { title: '评分', dataIndex: 'totalScore', align: 'center', width: 60 },
{ title: '评审状态', scopedSlots: { customRender: 'expertEvaluation', colName: 'gradeScore' }, align: 'center' }, { title: '评审状态', scopedSlots: { customRender: 'expertEvaluation', colName: 'gradeScore' }, align: 'center' },
// { title: '操作', scopedSlots: { customRender: 'option' }, align: 'center', fixed: 'right', width: 120, }, // { title: '操作', scopedSlots: { customRender: 'option' }, align: 'center', fixed: 'right', width: 120, },
], ],
...@@ -150,6 +151,7 @@ export default { ...@@ -150,6 +151,7 @@ export default {
...item, ...item,
expertTypeName: item.expertType === 1 ? "技术专家" : "财务专家", expertTypeName: item.expertType === 1 ? "技术专家" : "财务专家",
projClassName: item.projClass === 1 ? "一般项目" : "重点项目", projClassName: item.projClass === 1 ? "一般项目" : "重点项目",
specNames: item.specList ? item.specList.map(e => e.specName).join(',') : ''
} }
}) })
this.pagination.total = total this.pagination.total = total
...@@ -234,7 +236,8 @@ export default { ...@@ -234,7 +236,8 @@ export default {
{ title: "项目分组", dataIndex: 'groupName' }, { title: "项目分组", dataIndex: 'groupName' },
{ title: "项目类别", dataIndex: 'projClassName' }, { title: "项目类别", dataIndex: 'projClassName' },
{ title: '申报单位', dataIndex: 'appUnitName' }, { title: '申报单位', dataIndex: 'appUnitName' },
{ title: '专家姓名', dataIndex: 'personName'}, { title: '专家姓名', dataIndex: 'personName' },
{ title: '评审专业', dataIndex: 'specNames' },
{ title: "专家类型", dataIndex: 'expertTypeName' }, { title: "专家类型", dataIndex: 'expertTypeName' },
{ title: '专家单位', dataIndex: 'unitName' }, { title: '专家单位', dataIndex: 'unitName' },
{ title: '手机号', dataIndex: 'mobile' }, { title: '手机号', dataIndex: 'mobile' },
......
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