♻️ refactor: 核销状态3改为已过期

This commit is contained in:
wangsongsole 2023-07-28 10:53:09 +08:00
parent 90708c0ff9
commit 7c869aaeaa
2 changed files with 4 additions and 4 deletions

View File

@ -50,11 +50,11 @@ const menu = {
case 2: case 2:
return "#43A65D" return "#43A65D"
case 3: case 3:
return "#DC4F40" return "#ff0000"
case 5: case 5:
return "#DC4F40" return "#ca6b61"
case 6: case 6:
return "#DC4F40" return "#ca6b61"
case 333: case 333:
return "transparent" return "transparent"
} }

View File

@ -477,7 +477,7 @@ export default class orderList extends React.Component {
case 2: case 2:
return "已核销" return "已核销"
case 3: case 3:
return "未核销" /*已过期展示未核销 */ return "已过期"
case 4: case 4:
return "已退款" return "已退款"
case 5: case 5: