
--- client/views/pages/bbsDcry/photo/PicHistoryInsert.vue
+++ client/views/pages/bbsDcry/photo/PicHistoryInsert.vue
... | ... | @@ -323,7 +323,7 @@ |
323 | 323 |
// 등록 |
324 | 324 |
async submitForm() { |
325 | 325 |
// 유효성 검사 |
326 |
- if (!this.requestDTO.sj) { |
|
326 |
+ if (this.$isEmpty(this.requestDTO.sj)) { |
|
327 | 327 |
alert("제목을 입력해 주세요."); |
328 | 328 |
return; |
329 | 329 |
} |
--- client/views/pages/bbsDcry/video/VideoHistoryInsert.vue
+++ client/views/pages/bbsDcry/video/VideoHistoryInsert.vue
... | ... | @@ -274,7 +274,7 @@ |
274 | 274 |
// 등록 |
275 | 275 |
async submitForm() { |
276 | 276 |
// 유효성 검사 |
277 |
- if (!this.$isEmpty(this.requestDTO.sj)) { |
|
277 |
+ if (this.$isEmpty(this.requestDTO.sj)) { |
|
278 | 278 |
alert("제목을 입력해 주세요."); |
279 | 279 |
return; |
280 | 280 |
} |
--- client/views/pages/bbsMediaVido/MediaVideoInsert.vue
+++ client/views/pages/bbsMediaVido/MediaVideoInsert.vue
... | ... | @@ -154,7 +154,7 @@ |
154 | 154 |
// 등록 |
155 | 155 |
async submitForm() { |
156 | 156 |
// 유효성 검사 |
157 |
- if (!this.requestDTO.sj) { |
|
157 |
+ if (this.$isEmpty(this.requestDTO.sj)) { |
|
158 | 158 |
alert("제목을 입력해 주세요."); |
159 | 159 |
return; |
160 | 160 |
} |
--- client/views/pages/bbsNesDta/NewsReleaseInsert.vue
+++ client/views/pages/bbsNesDta/NewsReleaseInsert.vue
... | ... | @@ -272,7 +272,7 @@ |
272 | 272 |
// 등록 |
273 | 273 |
async submitForm() { |
274 | 274 |
// 유효성 검사 |
275 |
- if (!this.requestDTO.sj) { |
|
275 |
+ if (this.$isEmpty(this.requestDTO.sj)) { |
|
276 | 276 |
alert("제목을 입력해 주세요."); |
277 | 277 |
return; |
278 | 278 |
} |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?