Browse Source

[비행계획서] 조종사, 기체 data table css import

pull/2/head
노승철 2 years ago
parent
commit
68c6f8e2d6
  1. 1
      src/components/basis/flight/plan/FlightPlanArcrft.js
  2. 3
      src/components/basis/flight/plan/FlightPlanPilot.js

1
src/components/basis/flight/plan/FlightPlanArcrft.js

@ -3,6 +3,7 @@ import {Button, Card, CardBody, Col, CustomInput, Row, FormGroup, Input, Label}
import {Search} from 'react-feather'; import {Search} from 'react-feather';
import {GridDatabase} from '../../../crud/grid/GridDatatable'; import {GridDatabase} from '../../../crud/grid/GridDatatable';
import '../../../../assets/css/custom.css'; import '../../../../assets/css/custom.css';
import '@styles/react/libs/tables/react-dataTable-component.scss';
const FlightPlanArcrft = ({ arcrftList, handleSelectArcrft, onClickEvent, name, returnArcrft,onChange }) => { const FlightPlanArcrft = ({ arcrftList, handleSelectArcrft, onClickEvent, name, returnArcrft,onChange }) => {
const columns = [ const columns = [

3
src/components/basis/flight/plan/FlightPlanPilot.js

@ -4,6 +4,7 @@ import {Search} from 'react-feather';
import {GridDatabase} from '../../../crud/grid/GridDatatable'; import {GridDatabase} from '../../../crud/grid/GridDatatable';
import { AiOutlineSearch } from 'react-icons/ai'; import { AiOutlineSearch } from 'react-icons/ai';
import '../../../../assets/css/custom.css'; import '../../../../assets/css/custom.css';
import '@styles/react/libs/tables/react-dataTable-component.scss';
const FlightPlanPilot = ({ handleSelectPilot, returnPilot, onClickEvent, onChange,name}) => { const FlightPlanPilot = ({ handleSelectPilot, returnPilot, onClickEvent, onChange,name}) => {
@ -14,7 +15,7 @@ const FlightPlanPilot = ({ handleSelectPilot, returnPilot, onClickEvent, onChang
{id: 'email', name: '이메일', cell: row => (<div>{row.email}</div>)}, {id: 'email', name: '이메일', cell: row => (<div>{row.email}</div>)},
{ {
id: 'selectPilot', name: '선택', cell: row => { id: 'selectPilot', name: '선택', cell: row => {
return <Button.Ripple color='primary' size='sm' onClick={() => { return <Button.Ripple color='primary' size='sm' onClick={() => {
handleSelectPilot(row.cstmrSno) handleSelectPilot(row.cstmrSno)
} }
}>선택</Button.Ripple>; }>선택</Button.Ripple>;

Loading…
Cancel
Save