Commit a87b84d44d3df9586433be9f28d98237d8c49009
1 parent
dfec1137
fix: 订单列表字段名修改
Showing
1 changed file
with
4 additions
and
2 deletions
src/pages/Order/OrderList/OrderList.tsx
... | ... | @@ -2627,9 +2627,11 @@ const OrderList = ({ paramsNew, searchShow, toolbarShow }) => { |
2627 | 2627 | </span> |
2628 | 2628 | </div> |
2629 | 2629 | <span> |
2630 | - <span className="text-[#8C8C8C]">联系人:</span> | |
2630 | + <span className="text-[#8C8C8C]">课题组:</span> | |
2631 | 2631 | <span className="text-slate-700"> |
2632 | - {record.institutionContactName + ' '} | |
2632 | + {record.institutionContactName | |
2633 | + ? record.institutionContactName + ' ' | |
2634 | + : '空'} | |
2633 | 2635 | </span> |
2634 | 2636 | </span> |
2635 | 2637 | </> | ... | ... |