
--- client/views/component/CardViewList.vue
+++ client/views/component/CardViewList.vue
... | ... | @@ -85,9 +85,6 @@ |
85 | 85 |
}, |
86 | 86 |
}, |
87 | 87 |
|
88 |
- created() { }, |
|
89 |
- mounted() { }, |
|
90 |
- watch: {}, |
|
91 | 88 |
methods: { |
92 | 89 |
// 페이지 이동 |
93 | 90 |
fnMoveTo(page, id) { |
... | ... | @@ -99,10 +96,4 @@ |
99 | 96 |
} |
100 | 97 |
}, |
101 | 98 |
}; |
102 |
-</script> |
|
103 |
-<style scoped> |
|
104 |
-/* 임시로 추가 */ |
|
105 |
-.main-img img { |
|
106 |
- max-width: 320px; |
|
107 |
-} |
|
108 |
-</style>(파일 끝에 줄바꿈 문자 없음) |
|
99 |
+</script>(파일 끝에 줄바꿈 문자 없음) |
--- client/views/pages/user/PicHistoryInsert.vue
+++ client/views/pages/user/PicHistoryInsert.vue
... | ... | @@ -150,14 +150,9 @@ |
150 | 150 |
|
151 | 151 |
created() { |
152 | 152 |
this.pageId = this.$route.query.id; |
153 |
- if (this.pageId === null) { |
|
154 |
- alert("게시물 존재하지 않습니다."); |
|
155 |
- this.fnMoveTo('PicHistorySearch'); |
|
153 |
+ if (this.pageId !== null) { |
|
154 |
+ this.fnFindDcry(); // 상세 조회 |
|
156 | 155 |
} |
157 |
- }, |
|
158 |
- |
|
159 |
- mounted() { |
|
160 |
- this.fnFindDcry(); // 상세 조회 |
|
161 | 156 |
}, |
162 | 157 |
|
163 | 158 |
methods: { |
--- client/views/pages/user/PicHistorySearch.vue
+++ client/views/pages/user/PicHistorySearch.vue
... | ... | @@ -249,11 +249,7 @@ |
249 | 249 |
// 통합검색 |
250 | 250 |
async fnSearch() { |
251 | 251 |
try { |
252 |
- // 깊은 복사로 파라미터 생성 |
|
253 | 252 |
const params = JSON.parse(JSON.stringify(this.searchReqDTO)); |
254 |
- |
|
255 |
- // 디버깅용 로그 - 실제 전송되는 값 확인 |
|
256 |
- console.log("검색 파라미터:", params); |
|
257 | 253 |
|
258 | 254 |
// 카테고리 목록 처리 |
259 | 255 |
if (this.searchReqDTO.searchCtgries && this.searchReqDTO.searchCtgries.length > 0) { |
--- client/views/pages/user/TotalSearch.vue
+++ client/views/pages/user/TotalSearch.vue
... | ... | @@ -224,11 +224,7 @@ |
224 | 224 |
} |
225 | 225 |
|
226 | 226 |
try { |
227 |
- // 깊은 복사로 파라미터 생성 |
|
228 | 227 |
const params = JSON.parse(JSON.stringify(this.searchReqDTO)); |
229 |
- |
|
230 |
- // 디버깅용 로그 - 실제 전송되는 값 확인 |
|
231 |
- console.log("검색 파라미터:", params); |
|
232 | 228 |
|
233 | 229 |
// 카테고리 목록 처리 |
234 | 230 |
if (this.searchReqDTO.searchCtgries && this.searchReqDTO.searchCtgries.length > 0) { |
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?