This commit is contained in:
liushuai
2020-02-24 10:09:36 +08:00
parent 74eab855dc
commit 556987ba33
12 changed files with 437 additions and 244 deletions

View File

@@ -23,7 +23,7 @@
<el-button :loading="loading" type="success" size="small" icon="el-icon-upload" style="margin-left: 300px" plain @click="currency">通用件保存</el-button>
</el-card>
<el-card>
<el-table ref="multipleTable" :data="tableData" style="width: 1000px;" size="mini" height="750" highlight-current-row border @selection-change="handleSelectionChange" @row-click="rowClick">
<el-table ref="multipleTable" :data="tableData" :row-class-name="tableRowClassName1" style="width: 1000px;" size="mini" height="750" highlight-current-row border @selection-change="handleSelectionChange" @row-click="rowClick">
<el-table-column align="center" type="selection"/>
<el-table-column align="center" label="零件号" prop="零件号">
<template slot-scope="scope">
@@ -308,6 +308,12 @@ export default {
}
}
},
tableRowClassName1({ row }) {
console.log(row)
if (row.是否加急 === '1') {
return 'isUrgentItem'
}
},
// 分页
handleSizeChange(val) {
this.PageCurrent = 1
@@ -327,3 +333,8 @@ export default {
margin-right: 10px;
}
</style>
<style>
.el-table .isUrgentItem{
background: #FF9797;
}
</style>