File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed
components/task-management Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 44 :is-open =" isModalVisible.add"
55 type =" successType"
66 @close =" handleAddModal" >
7- <template #header >카테고리가 등록되었습니다 </template >
7+ <template #header >카테고리가 {{ route.params.id ? '수정' : '등록' }}되었습니다 </template >
88 </ModalView >
99 <ModalView
1010 :is-open =" isModalVisible.cancel"
1111 type =" warningType"
1212 @close =" handleCancelModal"
1313 @click =" handleGoBack" >
14- <template #header >생성을 취소 하시겠습니까?</template >
14+ <template #header >{{ route.params.id ? '수정' : '생성' }}을 취소 하시겠습니까?</template >
1515 <template #body >작성하신 내용은 사라집니다</template >
1616 </ModalView >
1717 <ModalView
4242 :handle-cancel =" handleCancel"
4343 :handle-submit =" handleSubmit"
4444 cancel-text =" 취소"
45- submit-text =" 생성 " />
45+ : submit-text =" route.params.id ? '수정' : '등록' " />
4646 </div >
4747</template >
4848
Original file line number Diff line number Diff line change 11<template >
22 <div class =" form-view-container" >
3- <TitleBar title =" 1차 카테고리 생성 " />
3+ <TitleBar : title =" ` 1차 카테고리 ${$route.params.id ? '수정' : '등록'}` " />
44 <CategoryAdd categoryStep =" 1" />
55 </div >
66</template >
99import TitleBar from ' @/components/TitleBar.vue'
1010import CategoryAdd from ' ../components/task-management/CategoryAdd.vue'
1111 </script >
12-
13- <style scoped></style >
Original file line number Diff line number Diff line change 11<template >
22 <div class =" form-view-container" >
3- <TitleBar title =" 2차 카테고리 생성 " />
3+ <TitleBar : title =" ` 2차 카테고리 ${$route.params.id ? '수정' : '등록'}` " />
44 <CategoryAdd categoryStep =" 2" />
55 </div >
66 <div class =" w-full bg-body" ></div >
1010import TitleBar from ' @/components/TitleBar.vue'
1111import CategoryAdd from ' ../components/task-management/CategoryAdd.vue'
1212 </script >
13-
14- <style scoped></style >
You can’t perform that action at this time.
0 commit comments