Browse Source

.

pull/2/head
김지은 2 years ago
parent
commit
1c4c5a07b1
  1. 4
      src/assets/css/custom.css
  2. 30
      src/components/basis/dron/BasisIdntform.js

4
src/assets/css/custom.css

@ -817,3 +817,7 @@ background-size: 75% auto;
/*그리드 로딩*/ /*그리드 로딩*/
.grid-loading{width:100%;height:100%;position: absolute;background:rgba(35, 41, 58, 0.7);z-index:999;display:flex;align-items:center;justify-content: center;text-align:center;} .grid-loading{width:100%;height:100%;position: absolute;background:rgba(35, 41, 58, 0.7);z-index:999;display:flex;align-items:center;justify-content: center;text-align:center;}
.grid-loading span{display:block;font-weight:500;margin-top:4px;} .grid-loading span{display:block;font-weight:500;margin-top:4px;}
.pa-input-box{display:flex;}
.pa-input-box input + input {margin-left:8px;}
.pa-input{width:48px;}

30
src/components/basis/dron/BasisIdntform.js

@ -34,27 +34,27 @@ export const BasisIdntfForm = props => {
<div className='search-info-box count-box'> <div className='search-info-box count-box'>
<CardBody className='pd-0'> <CardBody className='pd-0'>
<Row> <Row>
<Col xs={3} md={3} xl={2}> <Col xs={2} md={2}>
<span className='sm-ti'> <span className='sm-ti'>
<span className='necessary'>*</span> <span className='necessary'>*</span>
</span> </span>
</Col> </Col>
<Col xs={3} md={3} xl={2}> <Col xs={2} md={2}>
<span className='sm-ti'> <span className='sm-ti'>
<span className='necessary'>*</span> <span className='necessary'>*</span>
</span> </span>
</Col> </Col>
<Col xs={3} md={3} xl={2}> <Col xs={2} md={2}>
<span className='sm-ti'> <span className='sm-ti'>
<span className='necessary'>*</span> <span className='necessary'>*</span>
</span> </span>
</Col> </Col>
<Col xs={3} md={3} xl={2}> <Col xs={2} md={2}>
<span className='sm-ti'> <span className='sm-ti'>
<span className='necessary'>*</span> <span className='necessary'>*</span>
</span> </span>
</Col> </Col>
<Col xs={3} md={3} xl={2}> <Col xs={2} md={2}>
<span className='sm-ti'> <span className='sm-ti'>
<span className='necessary'>*</span> <span className='necessary'>*</span>
</span> </span>
@ -64,10 +64,11 @@ export const BasisIdntfForm = props => {
{i => ( {i => (
<Form key={i}> <Form key={i}>
<Row className='justify-content-between align-items-center'> <Row className='justify-content-between align-items-center'>
<Col xs={3} md={2} xl={1}> <Col xs={2} md={2}>
<FormGroup className='form-label-group'> <FormGroup className='form-label-group pa-input-box'>
<Label for={`idntfNum.${i}`}>식별번호</Label> <Label for={`idntfNum.${i}`}>식별번호</Label>
<Input <Input
className='pa-input'
type='text' type='text'
value='PA' value='PA'
readOnly readOnly
@ -85,7 +86,7 @@ export const BasisIdntfForm = props => {
></Input> ></Input>
</FormGroup> </FormGroup>
</Col> </Col>
<Col xs={3} md={3} xl={2}> <Col xs={2} md={2}>
<FormGroup className='form-label-group'> <FormGroup className='form-label-group'>
<Label for={'idntfTypeCd'}>장비타입</Label> <Label for={'idntfTypeCd'}>장비타입</Label>
<Input <Input
@ -99,7 +100,7 @@ export const BasisIdntfForm = props => {
></Input> ></Input>
</FormGroup> </FormGroup>
</Col> </Col>
<Col xs={3} md={3} xl={2}> <Col xs={2} md={2}>
<FormGroup className='form-label-group'> <FormGroup className='form-label-group'>
<Label for={'updateDt'}>수정일자</Label> <Label for={'updateDt'}>수정일자</Label>
<Input <Input
@ -112,7 +113,7 @@ export const BasisIdntfForm = props => {
></Input> ></Input>
</FormGroup> </FormGroup>
</Col> </Col>
<Col xs={3} md={3} xl={2}> <Col xs={2} md={2}>
<FormGroup className='form-label-group'> <FormGroup className='form-label-group'>
<Label for={`userName`}>소유자명</Label> <Label for={`userName`}>소유자명</Label>
<Input <Input
@ -128,7 +129,7 @@ export const BasisIdntfForm = props => {
></Input> ></Input>
</FormGroup> </FormGroup>
</Col> </Col>
<Col xs={3} md={3} xl={2}> <Col xs={2} md={2}>
<FormGroup className='form-label-group'> <FormGroup className='form-label-group'>
<Label for={`phoneNumber`}>연락처</Label> <Label for={`phoneNumber`}>연락처</Label>
<Input <Input
@ -144,12 +145,7 @@ export const BasisIdntfForm = props => {
></Input> ></Input>
</FormGroup> </FormGroup>
</Col> </Col>
<Col <Col xs={2} md={2} className='count-del-btn'>
xs={12}
md={2}
xl={2}
className='count-del-btn'
>
<Button.Ripple <Button.Ripple
color='danger' color='danger'
className='text-nowrap px-1' className='text-nowrap px-1'

Loading…
Cancel
Save