- 移除了 PaymentInfo 组件中冗余的状态判断条件 - 使用 else 语句替代了最后一个具体的条件判断,提高了代码的可读性和维护性 Signed-off-by: tangshizhe <48740614+tangshizhe@users.noreply.github.com>
@@ -200,7 +200,7 @@ export default {
return '审核通过'
} else if(row.state == 2) {
return '审核未通过'
- } else if(row.state == 3) {
+ } else {
return '待审核'
}