Commit c1e09975 authored by wangxl's avatar wangxl

444

parent a2015a77
...@@ -54,8 +54,7 @@ ...@@ -54,8 +54,7 @@
<p slot="expandedRowRender" slot-scope="record" style="margin: 0;"> <p slot="expandedRowRender" slot-scope="record" style="margin: 0;">
<a-table :dataSource="record.assignList" :columns="innerColumns" rowKey="id" :pagination="false"> <a-table :dataSource="record.assignList" :columns="innerColumns" rowKey="id" :pagination="false">
<template slot="personName" slot-scope="obj"> <template slot="personName" slot-scope="obj">
<a-tag :color="'#2db7f5'" v-if="obj.expertType==1">{{obj.personName}}</a-tag> <a-tag :color="obj.expertType==1?'#2db7f5':'#87d068'">{{obj.personName}}</a-tag>
<a-tag :color="'#87d068'" v-if="obj.expertType==2">{{obj.personName}}</a-tag>
</template> </template>
<template slot="evaluationType" slot-scope="obj"> <template slot="evaluationType" slot-scope="obj">
<a-tag :color="'#87d068'" v-if="obj.evaluationType==1">A类(通过)</a-tag> <a-tag :color="'#87d068'" v-if="obj.evaluationType==1">A类(通过)</a-tag>
...@@ -136,16 +135,12 @@ export default { ...@@ -136,16 +135,12 @@ export default {
columns: [ columns: [
{ title: "项目名称", scopedSlots: { customRender: 'projName' } }, { title: "项目名称", scopedSlots: { customRender: 'projName' } },
{ title: "项目编号", dataIndex: "projNo", align: 'center' }, { title: "项目编号", dataIndex: "projNo", align: 'center' },
{ title: "项目类别", dataIndex: 'projClassName' },
{ title: '申报单位', dataIndex: 'appUnitName', align: 'center' }, { title: '申报单位', dataIndex: 'appUnitName', align: 'center' },
{ title: '申报人', dataIndex: 'appPersonName', align: 'center' }, { title: '申报人', dataIndex: 'appPersonName', align: 'center' },
{ title: '技术专家评分', dataIndex: 'gradeScore1', align: 'center' }, { title: '技术专家评分', dataIndex: 'gradeScore1', align: 'center' },
{ title: '财务专家评分', dataIndex: 'gradeScore2', align: 'center' }, { title: '财务专家评分', dataIndex: 'gradeScore2', align: 'center' },
{ title: '最终得分', dataIndex: 'gradeScore', align: 'center' }, { title: '最终得分', dataIndex: 'gradeScore', align: 'center' },
// { title: "开始时间", dataIndex: "startDate", align: 'center' },
// { title: "结束时间", dataIndex: "endDate", align: 'center' },
// { title: "申报年度", dataIndex: "reportYear", align: 'center' },
//{ title: '是否选择接受立项不资助', dataIndex: 'isAccept', align: 'center' },
//{ title: '是否存在境外机构或人员参与', dataIndex: 'isOverseas', align: 'center' },
{ title: '审核状态', dataIndex: 'auditResultName', align: 'center' }, { title: '审核状态', dataIndex: 'auditResultName', align: 'center' },
{ title: '操作', scopedSlots: { customRender: 'option' }, align: 'center', width: 120, }, { title: '操作', scopedSlots: { customRender: 'option' }, align: 'center', width: 120, },
], ],
...@@ -161,16 +156,12 @@ export default { ...@@ -161,16 +156,12 @@ export default {
excelCol: [ excelCol: [
{ title: "项目名称", scopedSlots: { customRender: 'projName' } }, { title: "项目名称", scopedSlots: { customRender: 'projName' } },
{ title: "项目编号", dataIndex: "projNo", align: 'center' }, { title: "项目编号", dataIndex: "projNo", align: 'center' },
{ title: "一级学科", dataIndex: "knowledgeParentName", align: 'center' }, { title: "项目类别", dataIndex: 'projClassName' },
{ title: "二级学科", dataIndex: "knowledgeName", align: 'center' },
{ title: "开始时间", dataIndex: "startDate", align: 'center' },
{ title: "结束时间", dataIndex: "endDate", align: 'center' },
{ title: "申报年度", dataIndex: "reportYear", align: 'center' },
{ title: "总分", dataIndex: "totalScore", align: 'center' },
{ title: "平均分", dataIndex: "averageScore", align: 'center' },
{ title: '所属市(州)', dataIndex: 'upUnitName', align: 'center' },
{ title: '申报单位', dataIndex: 'appUnitName', align: 'center' }, { title: '申报单位', dataIndex: 'appUnitName', align: 'center' },
{ title: '申报人', dataIndex: 'appPersonName', align: 'center' }, { title: '申报人', dataIndex: 'appPersonName', align: 'center' },
{ title: '技术专家评分', dataIndex: 'gradeScore1', align: 'center' },
{ title: '财务专家评分', dataIndex: 'gradeScore2', align: 'center' },
{ title: '最终得分', dataIndex: 'gradeScore', align: 'center' },
{ title: '审核状态', dataIndex: 'auditResultName', align: 'center' }, { title: '审核状态', dataIndex: 'auditResultName', align: 'center' },
], ],
pagination: { pagination: {
......
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