|
|
@@ -314,7 +314,7 @@ const customizeColumns = async () => {
|
|
|
const handleCellDblclick = ({ row }: any) => {
|
|
|
router.push({
|
|
|
path: '/booking/detail',
|
|
|
- query: { a: row.__serial_no, _schemas: row._schemas }
|
|
|
+ query: { a: row.__serial_no, _schemas: row._schemas, status: row.Status }
|
|
|
})
|
|
|
}
|
|
|
// 点击link字段是时
|
|
|
@@ -322,7 +322,7 @@ const handleLinkClick = (row: any, column: any) => {
|
|
|
if (column.title === 'Booking No.') {
|
|
|
router.push({
|
|
|
path: '/booking/detail',
|
|
|
- query: { a: row.__serial_no, _schemas: row._schemas }
|
|
|
+ query: { a: row.__serial_no, _schemas: row._schemas, status: row.Status }
|
|
|
})
|
|
|
} else if (column.title === 'HBL No.') {
|
|
|
router.push({
|