Commit b9d40c5837d99c4477609b77ffe1e5e657b2c198
1 parent
e3b45c92
feat: update 售后审核
Showing
1 changed file
with
7 additions
and
0 deletions
src/pages/Order/components/HistoryModal.tsx
... | ... | @@ -91,6 +91,13 @@ export default ({ subOrders, isCancelledOrder, onClose }) => { |
91 | 91 | ) |
92 | 92 | : ''} |
93 | 93 | </span> |
94 | + {history.notes !== null ? ( | |
95 | + <span className="pl-1"> | |
96 | + {'备注:' + history.notes} | |
97 | + </span> | |
98 | + ) : ( | |
99 | + '' | |
100 | + )} | |
94 | 101 | </div> |
95 | 102 | ); |
96 | 103 | })} | ... | ... |