|
4 | 4 | :isOpen="isModalVisible" |
5 | 5 | :type="'successType'" |
6 | 6 | @close="handleCancel"> |
7 | | - <template #header> 정보가 수정되었습니다 </template> |
| 7 | + <template #header>정보가 수정되었습니다</template> |
8 | 8 | </ModalView> |
9 | 9 |
|
10 | 10 | <ModalView |
11 | 11 | :isOpen="isWarnningModalVisible" |
12 | 12 | :type="'warningType'" |
13 | 13 | @click="changePw" |
14 | 14 | @close="warningModalToggle"> |
15 | | - <template #header> 정보가 저장되지 않았습니다 </template> |
16 | | - <template #body> 수정 사항을 삭제하고 이동하시겠습니까? </template> |
| 15 | + <template #header>정보가 저장되지 않았습니다</template> |
| 16 | + <template #body>수정 사항을 삭제하고 이동하시겠습니까?</template> |
17 | 17 | </ModalView> |
18 | 18 |
|
19 | 19 | <div class="profile"> |
|
51 | 51 | <span class="absolute top-1 right-2 text-xs text-gray-500"> {{ name.length }} / 10 </span> |
52 | 52 | <input |
53 | 53 | :class="[ |
54 | | - 'block w-full px-4 py-4 border rounded focus:outline-none h-11 mt-2 text-black', |
| 54 | + 'block w-full px-4 py-4 border rounded focus:outline-none h-11 mt-2', |
55 | 55 | isInvalid || isFull ? 'border-red-1' : 'border-border-1' |
56 | 56 | ]" |
57 | 57 | placeholder="이름을 입력해주세요" |
|
74 | 74 | </div> |
75 | 75 | <div class="flex flex-col"> |
76 | 76 | <p class="text-body text-xs font-bold">아이디</p> |
77 | | - <p class="mt-2 text-black">{{ info.nickname }}</p> |
| 77 | + <p class="mt-2">{{ info.nickname }}</p> |
78 | 78 | </div> |
79 | 79 | <div class="flex flex-col"> |
80 | 80 | <p class="text-body text-xs font-bold">이메일</p> |
81 | | - <p class="mt-2 text-black">{{ info.email }}</p> |
| 81 | + <p class="mt-2">{{ info.email }}</p> |
82 | 82 | </div> |
83 | 83 | <div class="flex flex-col"> |
84 | 84 | <p class="text-body text-xs font-bold">부서</p> |
85 | | - <p class="mt-2 text-black">{{ info.departmentName }}</p> |
| 85 | + <p class="mt-2">{{ info.departmentName }}</p> |
86 | 86 | </div> |
87 | 87 | <div |
88 | 88 | v-if="info.departmentRole" |
89 | 89 | class="flex flex-col"> |
90 | 90 | <p class="text-body text-xs font-bold">직무</p> |
91 | | - <p class="mt-2 text-black">{{ info.departmentRole }}</p> |
| 91 | + <p class="mt-2">{{ info.departmentRole }}</p> |
92 | 92 | </div> |
93 | 93 | <div> |
94 | 94 | <p class="text-body text-xs font-bold">알림 수신 여부</p> |
|
0 commit comments