Eyon
2021-04-07 18:43:27 +08:00
为了方便大家测试,我把 vue 文件放出来,免得你又去写。
`
<template>
<div id="app">
<el-table :data="tableData">
<el-table-column label="原价">
<template slot-scope="scope">
<el-input v-model="scope.row.price"></el-input>
</template>
</el-table-column>
<el-table-column label="折扣率">
<template slot-scope="scope">
<el-input v-model="scope.row.discountRate"></el-input>
</template>
</el-table-column>
<el-table-column label="折后价">
<template slot-scope="scope">
<el-input v-model="scope.row.discountPrice"></el-input>
</template>
</el-table-column>
</el-table>
</div>
</template>
<script>
export default {
data() {
return {
tableData:[{},{},{},{}]
}
},
};
</script>
`