This commit is contained in:
Your Name
2026-04-11 18:06:02 +08:00
parent 4909ec6daa
commit abcecf66e7
325 changed files with 4199 additions and 633 deletions
+5 -2
View File
@@ -36,6 +36,7 @@
<el-option label="已支付" :value="2" />
<el-option label="已取消" :value="3" />
<el-option label="已退款" :value="4" />
<el-option label="待审核" :value="5" />
</el-select>
</el-form-item>
@@ -808,7 +809,8 @@ const getStatusText = (status: number) => {
1: '待支付',
2: '已支付',
3: '已取消',
4: '已退款'
4: '已退款',
5: '待审核'
}
return statusMap[status] || '未知'
}
@@ -819,7 +821,8 @@ const getStatusTag = (status: number): 'warning' | 'success' | 'info' | 'danger'
1: 'warning',
2: 'success',
3: 'info',
4: 'danger'
4: 'danger',
5: 'warning'
}
return tagMap[status] || 'info'
}