From 51793fcde3b2dd63bfae2c9aeb029a06e9c5cce7 Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Mon, 24 Mar 2025 15:45:52 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9A=A9=EC=96=B4=EC=A7=91=20=EC=97=90?= =?UTF-8?q?=EB=94=94=ED=84=B0=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20=EB=A7=A4?= =?UTF-8?q?=ED=95=91=20=EB=B0=8F=20=EC=82=AD=EC=A0=9C=20=EB=A1=9C=EC=A7=81?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/wordDict/DictCard.vue | 259 ++++++++++--------- src/components/wordDict/DictWrite.vue | 346 +++++++++++++------------- src/views/wordDict/wordDict.vue | 297 ++++++++++++---------- 3 files changed, 482 insertions(+), 420 deletions(-) diff --git a/src/components/wordDict/DictCard.vue b/src/components/wordDict/DictCard.vue index 4c3a3f4..ac04751 100644 --- a/src/components/wordDict/DictCard.vue +++ b/src/components/wordDict/DictCard.vue @@ -2,7 +2,7 @@
  • + @update:deleteImgIndexList="handleDeleteEditorImg" + @update:uploadedImgList="handleUpdateEditorImg" + />
    {{ item.category }} {{ item.WRDDICTTL }}
    - +

    - +
    - 최초 작성자 + 최초 작성자
    -

    {{ $common.dateFormatter(item.author.createdAt) }}

    +

    {{ $common.dateFormatter(item.author.createdAt) }}

    -
    +
    - 최근 작성자 + 최근 작성자
    -

    {{ $common.dateFormatter(item.lastEditor.updatedAt) }}

    +

    {{ $common.dateFormatter(item.lastEditor.updatedAt) }}

    @@ -67,115 +62,137 @@ diff --git a/src/components/wordDict/DictWrite.vue b/src/components/wordDict/DictWrite.vue index 5e290bf..e5c69f1 100644 --- a/src/components/wordDict/DictWrite.vue +++ b/src/components/wordDict/DictWrite.vue @@ -1,5 +1,5 @@
    @@ -29,195 +29,201 @@ class="justify-content-end" ref="categoryInputRef" title="새 카테고리" - :isLabel="dataList.length === 0 ?true : false" + :isLabel="dataList.length === 0 ? true : false" name="새 카테고리" @update:modelValue="addCategory = $event" :is-cate-alert="addCategoryAlert" @focusout="handleCategoryFocusout(addCategory)" - />
    - +
    + -
    - -
    - -
    +
    +
    +
    diff --git a/src/views/wordDict/wordDict.vue b/src/views/wordDict/wordDict.vue index a75ff61..2b54de9 100644 --- a/src/views/wordDict/wordDict.vue +++ b/src/views/wordDict/wordDict.vue @@ -1,55 +1,73 @@