|  |  | 
 |  |  | import BaseTable from '@/components/base/BaseTable' | 
 |  |  | import TableLayout from '@/layouts/TableLayout' | 
 |  |  | import Pagination from '@/components/common/Pagination' | 
 |  |  | import { formatDateTime } from '@/utils/util' | 
 |  |  | import dayjs from 'dayjs' | 
 |  |  | export default { | 
 |  |  |   name: 'MemberRides', | 
 |  |  |   extends: BaseTable, | 
 |  |  | 
 |  |  |       'field.id': 'id', | 
 |  |  |       'field.main': 'id' | 
 |  |  |     }) | 
 |  |  |     this.searchForm.startDate = formatDateTime(new Date(), 'yyyy-MM-dd') + ' 00:00:00' | 
 |  |  |     this.searchForm.endDate = formatDateTime(new Date(), 'yyyy-MM-dd') + ' 23:59:59' | 
 |  |  |     this.searchForm.startDate = dayjs().format('YYYY-MM-DD') + ' 00:00:00' | 
 |  |  |     this.searchForm.endDate = dayjs().format('YYYY-MM-DD') + ' 23:59:59' | 
 |  |  |     // this.searchForm.startDate = formatDateTime(new Date(), 'yyyy-MM-dd') + ' 00:00:00' | 
 |  |  |     // this.searchForm.endDate = formatDateTime(new Date(), 'yyyy-MM-dd') + ' 23:59:59' | 
 |  |  |     this.search() | 
 |  |  |   }, | 
 |  |  |   methods: { |