diff --git a/src/views/assign/components/assignGroupExpertView.vue b/src/views/assign/components/assignGroupExpertView.vue index 1cadcf2d3919cc9c76c98e623931af97bb22d3f8..a5aa99a70414765b6402544d7e971d590d6d9543 100644 --- a/src/views/assign/components/assignGroupExpertView.vue +++ b/src/views/assign/components/assignGroupExpertView.vue @@ -71,6 +71,9 @@ <a-tag v-if="!!record.auditState && record.auditState == 2" :color="'green'">{{record.totalScore}}</a-tag> <a-tag v-else :color="'red'">未评审</a-tag> </template> + <template slot="projClassInfo" slot-scope="record"> + {{ record.projClass == 1 ? "一般项目" : "重点项目" }} + </template> </a-table> </a-col> </a-row> @@ -102,10 +105,11 @@ export default { loading: true, tableData: [], columns: [ - { dataIndex: 'projNo', title: '项目编号', ellipsis: true, width: 150 }, + { dataIndex: 'appNo', title: '申请编号', ellipsis: true, width: 150 }, { dataIndex: 'projName', title: '项目名称', ellipsis: true }, - { title: '评分', scopedSlots: { customRender: 'evaluationInfo' }, width: 100 }, - { dataIndex: 'remark', title: '内容', ellipsis: true }, + { title: "项目类别", scopedSlots: { customRender: 'projClassInfo' }, align: 'center', width: 80 }, + { title: '评分', scopedSlots: { customRender: 'evaluationInfo' }, align: 'center', width: 100 }, + { dataIndex: 'remark', title: '内容', align: 'center', ellipsis: true }, ] }; }, diff --git a/src/views/peAssign/projKeyAssign.vue b/src/views/peAssign/projKeyAssign.vue index f3e60da628a211920f4b7ba0af690fcfc18d71fd..fa9a49273cc7f43e158950d5dd3d184300da5641 100644 --- a/src/views/peAssign/projKeyAssign.vue +++ b/src/views/peAssign/projKeyAssign.vue @@ -73,7 +73,7 @@ </template> <group-edit v-model="groupId" @close="closeWindow" ref="childEdit"></group-edit> </a-modal> - <a-modal v-model="evaluationVisible" title="专家查看" width="900px" :dialog-style="{ top: '15%' }" :footer="null" destroyOnClose> + <a-modal v-model="evaluationVisible" title="专家查看" width="1000px" :dialog-style="{ top: '15%' }" :footer="null" destroyOnClose> <assign-group-expert-view v-model="evaluationId" @close="closeAssignExpertView" /> </a-modal> <a-modal v-model="assignDetailVisible" title="专家查看" width="90%" :dialog-style="{ top: '5%' }" :footer="null" destroyOnClose>