|
|
|
@ -68,39 +68,35 @@ const JudgeDataNewForm = ({ scDatagb, contDocs, ingbs, handleModalSave, setOpen,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 필수항목 빈값 체크
|
|
|
|
|
if (scCarnum.length < 1) {
|
|
|
|
|
// Toast.fire({
|
|
|
|
|
// icon: 'warning',
|
|
|
|
|
// title: '차량번호는 필수입니다.'
|
|
|
|
|
// });
|
|
|
|
|
if (scCarnum.length < 4) {
|
|
|
|
|
alert.show('차량번호는 필수입니다.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (scName.length < 1) {
|
|
|
|
|
if (scName.length < 2) {
|
|
|
|
|
alert.show('성명은 필수입니다.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (scDong.length < 1) {
|
|
|
|
|
if (scDong.length < 2) {
|
|
|
|
|
alert.show('동명은(는) 필수입니다.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (scCdate.length < 1) {
|
|
|
|
|
if (scCdate.length < 8) {
|
|
|
|
|
alert.show('접수일자는 필수입니다.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (scWdate === null || scWdate === '') {
|
|
|
|
|
if (scWdate.length < 8) {
|
|
|
|
|
alert.show('위반일자는 필수입니다.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (scJbtime === null || scJbtime === '') {
|
|
|
|
|
if (scJbtime.length < 4) {
|
|
|
|
|
alert.show('위반시간은 필수입니다.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (scPos.length < 1) {
|
|
|
|
|
if (scPos.length < 2) {
|
|
|
|
|
alert.show('위반장소는 필수입니다.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (zipcode1 === null || zipcode1 === '') {
|
|
|
|
|
if (zipcode1.length < 5) {
|
|
|
|
|
alert.show('우편번호는 필수입니다.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|