Commit e0388f36d50ea59ffd524f8b93814df4ff50afb5

Authored by 曾国涛
1 parent 8b12357b

feat(OrderList): 添加生产日期字段并优化订单列表展示

- 在订单列表中添加生产日期字段- 优化单价、数量和合计等信息的展示样式
-调整支付方式和支付渠道的显示格式
src/pages/Order/OrderList/OrderList.tsx
@@ -1026,6 +1026,16 @@ const OrderList = ({ paramsNew, searchShow, toolbarShow }) => { @@ -1026,6 +1026,16 @@ const OrderList = ({ paramsNew, searchShow, toolbarShow }) => {
1026 ) : ( 1026 ) : (
1027 '' 1027 ''
1028 )} 1028 )}
  1029 +
  1030 + {optRecord.deliveryDate && (
  1031 + <div
  1032 + className="overflow-hidden whitespace-no-wrap overflow-ellipsis"
  1033 + title={optRecord.deliveryDate}
  1034 + >
  1035 + <span className="text-[#8C8C8C]">生产日期:</span>
  1036 + <span className="text-slate-700">{optRecord.deliveryDate}</span>
  1037 + </div>
  1038 + )}
1029 </Flex> 1039 </Flex>
1030 1040
1031 <Flex className="w-[10%]" vertical gap="small"> 1041 <Flex className="w-[10%]" vertical gap="small">