8f01514e by lihua

交付添加失败状态

1 parent 82a24e9f
...@@ -106,6 +106,8 @@ const tableFields = ref([ ...@@ -106,6 +106,8 @@ const tableFields = ref([
106 return '已交付'; 106 return '已交付';
107 case 3: 107 case 3:
108 return '交付中'; 108 return '交付中';
109 case 4:
110 return '交付失败';
109 default: 111 default:
110 return '--'; 112 return '--';
111 } 113 }
...@@ -118,6 +120,8 @@ const tableFields = ref([ ...@@ -118,6 +120,8 @@ const tableFields = ref([
118 return 'success'; 120 return 'success';
119 case 1: 121 case 1:
120 return 'info'; 122 return 'info';
123 case 4:
124 return 'danger';
121 default: 125 default:
122 return 'info'; 126 return 'info';
123 } 127 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!