import { EditIconBtn } from 'components/common/IconBtns' import moment from 'moment-jalaali' import Link from 'next/link' const OrdersTable = props => { //? Props const { orders } = props //? Render(s) return (
ID | 收件人姓名 | 状态 | 电子邮件 | 下单时间 | 更改状态 |
---|---|---|---|---|---|
{order._id} | {order.user.name} | {order.delivered ? ( 完成 ) : ( 未确认 )} | {order.user.email} | {moment(order.createdAt).format('YYYY-MM-DD HH:mm:ss')} |
|