fix:修改订单核销状态名次

This commit is contained in:
Apple 2022-12-26 16:06:01 +08:00
parent 7adf694859
commit 8f921eaed9
1 changed files with 2 additions and 2 deletions

View File

@ -551,9 +551,9 @@ export default class orderlist extends React.Component {
usageFunction(status) { usageFunction(status) {
switch (status) { switch (status) {
case 1: case 1:
return "可用"; return "未核销";
case 2: case 2:
return "已实扣"; return "已核销";
case 3: case 3:
return "已过期"; return "已过期";
case 4: case 4: