| | |
| | | <el-table-column prop="phaseName" label="阶段" align="center" /> |
| | | <el-table-column prop="operatConditName" label="工况" align="center"/> |
| | | <el-table-column prop="productName" label="二项分布设备" align="center"/> |
| | | <el-table-column prop="successRate" label="成功率" align="right" width="100"> |
| | | <template slot-scope="scope"> |
| | | <el-table-column prop="successRate" label="成功率" width="100"> |
| | | <template slot-scope="scope" > |
| | | <span |
| | | v-if="editingCell && editingCell.row === scope.row && editingCell.column.property === scope.column.property"> |
| | | <el-input ref="editInput" |
| | | autosize v-model="scope.row.successRate" |
| | | placeholder="成功率"></el-input> |
| | | placeholder="成功率" ></el-input> |
| | | </span> |
| | | <span v-else>{{scope.row.successRate}}</span> |
| | | </template> |