박정하 박정하 04-09
250409 박정하 유효성 검사 수정
@3a129d584ec8f25e0b1350b07ad9b7d68a34fb8e
client/views/pages/bbsDcry/photo/PicHistoryInsert.vue
--- client/views/pages/bbsDcry/photo/PicHistoryInsert.vue
+++ client/views/pages/bbsDcry/photo/PicHistoryInsert.vue
@@ -323,7 +323,7 @@
     // 등록
     async submitForm() {
       // 유효성 검사
-      if (!this.requestDTO.sj) {
+      if (this.$isEmpty(this.requestDTO.sj)) {
         alert("제목을 입력해 주세요.");
         return;
       }
client/views/pages/bbsDcry/video/VideoHistoryInsert.vue
--- client/views/pages/bbsDcry/video/VideoHistoryInsert.vue
+++ client/views/pages/bbsDcry/video/VideoHistoryInsert.vue
@@ -274,7 +274,7 @@
     // 등록
     async submitForm() {
       // 유효성 검사
-      if (!this.$isEmpty(this.requestDTO.sj)) {
+      if (this.$isEmpty(this.requestDTO.sj)) {
         alert("제목을 입력해 주세요.");
         return;
       }
client/views/pages/bbsMediaVido/MediaVideoInsert.vue
--- client/views/pages/bbsMediaVido/MediaVideoInsert.vue
+++ client/views/pages/bbsMediaVido/MediaVideoInsert.vue
@@ -154,7 +154,7 @@
     // 등록
     async submitForm() {
       // 유효성 검사
-      if (!this.requestDTO.sj) {
+      if (this.$isEmpty(this.requestDTO.sj)) {
         alert("제목을 입력해 주세요.");
         return;
       }
client/views/pages/bbsNesDta/NewsReleaseInsert.vue
--- client/views/pages/bbsNesDta/NewsReleaseInsert.vue
+++ client/views/pages/bbsNesDta/NewsReleaseInsert.vue
@@ -272,7 +272,7 @@
     // 등록
     async submitForm() {
       // 유효성 검사
-      if (!this.requestDTO.sj) {
+      if (this.$isEmpty(this.requestDTO.sj)) {
         alert("제목을 입력해 주세요.");
         return;
       }
Add a comment
List