Browse Source

学生端--领取记录页--已领取列表页,需要显示已付款和已退款的订单信息

liushengqiang 1 year ago
parent
commit
b5e38d766d
1 changed files with 4 additions and 2 deletions
  1. 4 2
      src/views/collection-record/component/list.tsx

+ 4 - 2
src/views/collection-record/component/list.tsx

@@ -58,7 +58,8 @@ export default defineComponent({
       WAIT_PAY: '待领取',
       PAYING: '待领取',
       PAID: '领取成功',
-      CLOSED: '已关闭'
+      CLOSED: '已关闭',
+      REFUNDED: '退回成功',
     };
     const statusColors: { [_: string]: string } = {
       WAIT_PAY: 'rgba(64, 196, 203, 1)',
@@ -67,7 +68,8 @@ export default defineComponent({
       CLOSED: 'rgba(170, 170, 170, 1)',
       ING: 'rgba(153, 153, 153, 1)',
       REJECT: 'rgba(255, 90, 86, 1)',
-      PASS: 'rgba(255, 162, 68, 1)'
+      PASS: 'rgba(255, 162, 68, 1)',
+      REFUNDED: 'rgba(255, 162, 68, 1)'
     };
     const refundTypes: { [_: string]: string } = {
       ING: '退回申请中',