diff --git a/public/css/custom.css b/public/css/custom.css index a105678..d9c6ca3 100644 --- a/public/css/custom.css +++ b/public/css/custom.css @@ -80,4 +80,10 @@ .grayscaleImg { filter: grayscale(100%); } + + + /* scrollbar 안보이게 */ + .scrollbar-none { + scrollbar-width: none; + } \ No newline at end of file diff --git a/src/components/board/BoardComment.vue b/src/components/board/BoardComment.vue index 7ebe4a5..07e2327 100644 --- a/src/components/board/BoardComment.vue +++ b/src/components/board/BoardComment.vue @@ -1,60 +1,105 @@ - - diff --git a/src/components/board/BoardComentArea.vue b/src/components/board/BoardCommentArea.vue similarity index 100% rename from src/components/board/BoardComentArea.vue rename to src/components/board/BoardCommentArea.vue diff --git a/src/components/board/BoardCommentList.vue b/src/components/board/BoardCommentList.vue index 319345c..f287e93 100644 --- a/src/components/board/BoardCommentList.vue +++ b/src/components/board/BoardCommentList.vue @@ -2,47 +2,66 @@ diff --git a/src/components/board/BoardProfile.vue b/src/components/board/BoardProfile.vue index 5f77e63..10a52b2 100644 --- a/src/components/board/BoardProfile.vue +++ b/src/components/board/BoardProfile.vue @@ -1,7 +1,7 @@ -
- - + {{ props.passwordAlert }} +
diff --git a/src/components/category/CategoryBtn.vue b/src/components/category/CategoryBtn.vue index 7c0df23..6536b88 100644 --- a/src/components/category/CategoryBtn.vue +++ b/src/components/category/CategoryBtn.vue @@ -1,6 +1,6 @@ - diff --git a/src/views/voteboard/voteboardWrite.vue b/src/views/voteboard/voteboardWrite.vue index bb6f3d5..7dad489 100644 --- a/src/views/voteboard/voteboardWrite.vue +++ b/src/views/voteboard/voteboardWrite.vue @@ -1,39 +1,194 @@ + + diff --git a/src/views/wordDict/wordDict.vue b/src/views/wordDict/wordDict.vue index f030567..9e083fe 100644 --- a/src/views/wordDict/wordDict.vue +++ b/src/views/wordDict/wordDict.vue @@ -48,6 +48,7 @@ v-for="item in wordList" :key="item.WRDDICSEQ" :item="item" + :cateList="cateList" /> @@ -91,6 +92,7 @@ const { cateList } = commonApi({ loadCateList: true }); + const selectedCategory = ref(''); const selectCategory = ref(''); @@ -167,14 +169,13 @@ if(res.data.data == '1'){ toastStore.onToast('카테고리가 추가 등록 되었습니다.', 's'); const newCategory = { label: data, value: newValue }; - cateList.value.unshift(newCategory); - selectCategory.value = newCategory.CMNCODVAL; + cateList.value = [newCategory, ...cateList.value]; + selectedCategory.value = newCategory.value; } }) } //용어 등록 const addWord = (wordData) => { - axios.post('worddict/insertWord',{ WRDDICCAT : wordData.category, WRDDICTTL : wordData.title,