|
@@ -110,11 +110,11 @@
|
|
|
<el-table-column
|
|
|
label="打分人"
|
|
|
align="center"
|
|
|
- prop="investCommissioner"
|
|
|
+ prop="createBy"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <div :title="scope.row.investCommissioner">
|
|
|
- {{ scope.row.investCommissioner }}
|
|
|
+ <div :title="scope.row.createBy">
|
|
|
+ {{ scope.row.createBy }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -655,7 +655,7 @@
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
- <table v-if="formType === 2" border="1" cellpadding="0" cellspacing="0">
|
|
|
+ <table v-if="formType === 2" border="1" cellpadding="0" cellspacing="0" class="allScoring">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th colspan="10" class="bg-blue">项目立项评估评审汇总表</th>
|
|
@@ -829,8 +829,8 @@
|
|
|
<input
|
|
|
autocomplete="off"
|
|
|
type="text"
|
|
|
- v-model="collectForm.teamExperienceAvg"
|
|
|
- name="teamExperienceAvg"
|
|
|
+ v-model="collectForm.teamBackgroundAvg"
|
|
|
+ name="teamBackgroundAvg"
|
|
|
class="table-input"
|
|
|
disabled
|
|
|
/>
|
|
@@ -1634,7 +1634,7 @@
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
- <table v-if="formType === 4" border="1" cellpadding="0" cellspacing="0">
|
|
|
+ <table v-if="formType === 4" border="1" cellpadding="0" cellspacing="0" class="allScoring">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th colspan="10" class="bg-blue">项目投决会评估评审汇总表</th>
|
|
@@ -1808,8 +1808,8 @@
|
|
|
<input
|
|
|
autocomplete="off"
|
|
|
type="text"
|
|
|
- v-model="collectForm.teamExperienceAvg"
|
|
|
- name="teamExperienceAvg"
|
|
|
+ v-model="collectForm.teamBackgroundAvg"
|
|
|
+ name="teamBackgroundAvg"
|
|
|
class="table-input"
|
|
|
disabled
|
|
|
/>
|
|
@@ -2486,7 +2486,7 @@ export default {
|
|
|
font-size: 20px;
|
|
|
font-weight: bold;
|
|
|
text-align: center;
|
|
|
- // margin-top: 20px;
|
|
|
+ margin-top: 20px;
|
|
|
}
|
|
|
.bg-blue,
|
|
|
.specificTr > th:nth-child(2n-1) {
|
|
@@ -2517,4 +2517,9 @@ export default {
|
|
|
.tableWrapper {
|
|
|
margin: 20px 0;
|
|
|
}
|
|
|
+.allScoring{
|
|
|
+ .table-input{
|
|
|
+ margin-top:0px !important;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|