<el-table v-if="tableData_contribution" :data="tableData_contribution.tableData" :span-method="arraySpanMethod">
<el-table-column prop="col1" label="" width="160"></el-table-column>
<el-table-column prop="quarterStr" label="季度"></el-table-column>
<template v-for="(col, index) in tableData_contribution.tableHead">
<el-table-column v-if="!['col1', 'quarterStr', 'total'].includes(col.prop)" :prop="col.prop" :label="col.label" :key="'col_' + index">
<template slot-scope="scope">
<el-input v-if="scope.row.col1 == '项目总分额外加减百分比(KCMS用)'" size="mini" type="number"
v-model="scope.row[col.prop].extMark" :min="0" :disabled="!isLastPhase" @change="calculationExtMark(scope.row, col.prop)">
<template slot="append">%</template>
</el-input>
<span v-else>{{ scope.row[col.prop] + '%' }}</span>
</template>
</el-table-column>
</template>
<el-table-column prop="total" label="合计">
<template slot-scope="scope">
{{ scope.row.total + '%' }}
</template>
</el-table-column>
</el-table>