修改订单状态提示颜色

This commit is contained in:
BOOL\25024
2023-09-16 09:12:03 +08:00
parent 3aa4481484
commit 64195e9b6f

View File

@@ -272,13 +272,13 @@ export default {
color(e) { color(e) {
let arr = [ let arr = [
"", "",
"success", "primary",
"info", "info",
"warning", "warning",
"danger", "danger",
"warning", "warning",
"success", "success",
"success", "warning",
]; ];
return e ? arr[e] : arr[0]; return e ? arr[e] : arr[0];
}, },