Commit 4909a607 authored by 徐俊's avatar 徐俊

xujun

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