
--- client/resources/scss/admin/content.scss
+++ client/resources/scss/admin/content.scss
... | ... | @@ -23,7 +23,7 @@ |
23 | 23 |
height: 100%; |
24 | 24 |
} |
25 | 25 |
&.sch-full{ |
26 |
- height: calc(100% - 70px); |
|
26 |
+ height: calc(100% - 60px); |
|
27 | 27 |
} |
28 | 28 |
&.detail{ |
29 | 29 |
height: calc(100% - 228px); |
... | ... | @@ -136,6 +136,7 @@ |
136 | 136 |
background-color: var(--tk-white); |
137 | 137 |
border-radius: 0 0 2rem 2rem; |
138 | 138 |
height: calc(100% - 45px); |
139 |
+ grid-auto-rows: min-content; |
|
139 | 140 |
// max-height: fit-content; |
140 | 141 |
|
141 | 142 |
.layout { |
... | ... | @@ -279,6 +280,10 @@ |
279 | 280 |
margin-bottom: 3rem |
280 | 281 |
} |
281 | 282 |
|
283 |
+ &.sch-full{ |
|
284 |
+ height: calc(100% - 70px); |
|
285 |
+ } |
|
286 |
+ |
|
282 | 287 |
|
283 | 288 |
} |
284 | 289 |
|
... | ... | @@ -309,10 +314,10 @@ |
309 | 314 |
width: calc(100% - 325px - 3rem); |
310 | 315 |
height: 100%; |
311 | 316 |
|
312 |
- .btn-wrap { |
|
313 |
- // justify-content: flex-end; |
|
314 |
- padding: 1rem 0; |
|
315 |
- } |
|
317 |
+ // .btn-wrap { |
|
318 |
+ // // justify-content: flex-end; |
|
319 |
+ // padding: 1rem 0; |
|
320 |
+ // } |
|
316 | 321 |
|
317 | 322 |
|
318 | 323 |
} |
--- client/views/pages/adm/preferences/commonCodeManagement/CommonCodeManagement.vue
+++ client/views/pages/adm/preferences/commonCodeManagement/CommonCodeManagement.vue
... | ... | @@ -1,5 +1,5 @@ |
1 | 1 |
<template> |
2 |
- <div class="content-zone sch-full"> |
|
2 |
+ <div class="content-zone full-page"> |
|
3 | 3 |
<div class="content"> |
4 | 4 |
<div class="setting-box h_100"> |
5 | 5 |
<div class="node-zone"> |
... | ... | @@ -27,7 +27,7 @@ |
27 | 27 |
</div> |
28 | 28 |
</div> |
29 | 29 |
<div class="setting-zone"> |
30 |
- <div class="form-box"> |
|
30 |
+ <div class="form-box sch-full"> |
|
31 | 31 |
<div class="form-box-title"> |
32 | 32 |
<p>공통코드정보</p> |
33 | 33 |
</div> |
... | ... | @@ -74,23 +74,23 @@ |
74 | 74 |
</div> |
75 | 75 |
</div> |
76 | 76 |
</div> |
77 |
+ <div class="btn-wrap"> |
|
78 |
+ <button class="btn sm main" :disabled="isFormDisabled" @click="fnSave" |
|
79 |
+ v-if="pageAuth.regAuthrt == 'Y'"> |
|
80 |
+ <span v-if="submitStts">등록</span> |
|
81 |
+ <span v-else>수정</span> |
|
82 |
+ </button> |
|
83 |
+ <button :class="{ |
|
84 |
+ 'btn sm': true, |
|
85 |
+ 'red': !isFormDisabled, |
|
86 |
+ }" :disabled="isFormDisabled" @click="fnDel" v-if="pageAuth.delAuthrt == 'Y'"> |
|
87 |
+ 삭제 |
|
88 |
+ </button> |
|
89 |
+ </div> |
|
77 | 90 |
</div> |
78 | 91 |
</div> |
79 | 92 |
</div> |
80 | 93 |
</div> |
81 |
- <div class="btn-wrap"> |
|
82 |
- <button class="btn sm main" :disabled="isFormDisabled" @click="fnSave" |
|
83 |
- v-if="pageAuth.regAuthrt == 'Y'"> |
|
84 |
- <span v-if="submitStts">등록</span> |
|
85 |
- <span v-else>수정</span> |
|
86 |
- </button> |
|
87 |
- <button :class="{ |
|
88 |
- 'btn sm': true, |
|
89 |
- 'red': !isFormDisabled, |
|
90 |
- }" :disabled="isFormDisabled" @click="fnDel" v-if="pageAuth.delAuthrt == 'Y'"> |
|
91 |
- 삭제 |
|
92 |
- </button> |
|
93 |
- </div> |
|
94 | 94 |
</template> |
95 | 95 |
|
96 | 96 |
<script> |
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?