WMS系统功能添加

This commit is contained in:
赵正易
2024-03-11 11:26:56 +08:00
parent ef18db877d
commit f2d2192cd9
40 changed files with 714 additions and 266 deletions

View File

@@ -141,11 +141,16 @@ export default {
},
//todo 更改单元格格式
rowClassName(item) {
if (item.row.status > 0) {
if (item.row.status === 1) {
return {
backgroundColor: '#FFFF00',
}
}
if (item.row.status === 2) {
return {
backgroundColor: '#55ff00',
}
}
return null
},
},