✨ feat: 订单列表新增已退回状态
This commit is contained in:
parent
86f18f1f23
commit
5c6edcefa4
|
@ -58,7 +58,9 @@ const menu = {
|
||||||
case 6:
|
case 6:
|
||||||
return "#ca6b61"
|
return "#ca6b61"
|
||||||
case 7:
|
case 7:
|
||||||
return "#3047c9"
|
return "#9655b4"
|
||||||
|
case 8:
|
||||||
|
return "#9f19dd"
|
||||||
case 333:
|
case 333:
|
||||||
return "transparent"
|
return "transparent"
|
||||||
}
|
}
|
||||||
|
|
|
@ -485,7 +485,9 @@ export default class orderList extends React.Component {
|
||||||
case 6:
|
case 6:
|
||||||
return "未核销"
|
return "未核销"
|
||||||
case 7:
|
case 7:
|
||||||
return "部分退款"
|
return "部分退回"
|
||||||
|
case 8:
|
||||||
|
return "已退回"
|
||||||
default:
|
default:
|
||||||
return "-"
|
return "-"
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,7 +129,7 @@ export const Column = [
|
||||||
title: "核销状态",
|
title: "核销状态",
|
||||||
name: "usage_status",
|
name: "usage_status",
|
||||||
prop: "usage_status",
|
prop: "usage_status",
|
||||||
width: "50px",
|
width: "60px",
|
||||||
type: "slot"
|
type: "slot"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -258,7 +258,8 @@ export const filterList = [
|
||||||
{ id: 2, name: "已核销" },
|
{ id: 2, name: "已核销" },
|
||||||
{ id: 3, name: "已过期" },
|
{ id: 3, name: "已过期" },
|
||||||
{ id: 4, name: "已退款" },
|
{ id: 4, name: "已退款" },
|
||||||
{ id: 7, name: "部分退款" }
|
{ id: 7, name: "部分退回" },
|
||||||
|
{ id: 8, name: "已退回" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue