shangfutong-ui/jeepay-ui-uapp-merchant/pages/order/components/stateList.js

13 lines
483 B
JavaScript

import { reactive, ref } from "vue"
export const stateList = reactive([
{ text: "支付成功", color: "#09BB07" },
{ text: "支付失败", color: "#CB2972" },
{ text: "订单生成", color: "#2980FD" },
{ text: "支付中", color: "#FFAA33" },
{ text: "部分退款", color: "#FF5B4C" },
{ text: "全额退款", color: "#FF5B4C" },
{ text: "全额退款", color: "#FF5B4C" },
{ text: "已撤销", color: "#808080" },
{ text: "订单关闭", color: "#D9D9D9" },
])