
--- client/resources/css/common.css
+++ client/resources/css/common.css
... | ... | @@ -29,13 +29,14 @@ |
29 | 29 |
} |
30 | 30 |
.s-btn{width: 15rem;} |
31 | 31 |
input[type="text"]{height: 3rem; width: 90%; padding: 0.5rem; |
32 |
- border-radius: 5px; border: 1px solid #333333;} |
|
32 |
+ border-radius: 5px; border: 1px solid #c8c8c8} |
|
33 | 33 |
.text-input{width: 13rem !important;} |
34 | 34 |
select { |
35 | 35 |
padding: 0.5rem; |
36 | 36 |
border-radius: 5px; |
37 | 37 |
width: 90%; |
38 | 38 |
height: 3rem; |
39 |
+ border: 1px solid #c8c8c8 |
|
39 | 40 |
} |
40 | 41 |
.border-none{border-top: none !important; border-bottom: none !important;} |
41 | 42 |
|
... | ... | @@ -52,6 +53,11 @@ |
52 | 53 |
grid-template-columns: 20% 80%; |
53 | 54 |
height: 100%; |
54 | 55 |
} |
56 |
+.grid3_7 { |
|
57 |
+ display: grid; |
|
58 |
+ grid-template-columns: 30% 70%; |
|
59 |
+ height: 100%; |
|
60 |
+} |
|
55 | 61 |
.flex { |
56 | 62 |
display: flex; |
57 | 63 |
align-items: center; |
--- client/resources/css/main.css
+++ client/resources/css/main.css
... | ... | @@ -67,4 +67,65 @@ |
67 | 67 |
.wrap{width: -webkit-fill-available !important; margin: 20px auto !important;} |
68 | 68 |
.mobile{display: block !important;} |
69 | 69 |
.pc{display: none;} |
70 |
+ } |
|
71 |
+ |
|
72 |
+ |
|
73 |
+ .modal { |
|
74 |
+ width: 100rem; |
|
75 |
+ } |
|
76 |
+ .modal input{padding: 0.5rem; height: 3rem; border: 1px solid #c8c8c8; border-radius: 5px;} |
|
77 |
+ .modalmain { |
|
78 |
+ padding: 2rem; |
|
79 |
+ max-height: 70rem; |
|
80 |
+ overflow: scroll; |
|
81 |
+ overflow-x: hidden; |
|
82 |
+ } |
|
83 |
+ .modalmain select { |
|
84 |
+ width: max-content; |
|
85 |
+ } |
|
86 |
+ .modalmain input[type="text"] { |
|
87 |
+ width: inherit; |
|
88 |
+ } |
|
89 |
+ .modalmain table thead { |
|
90 |
+ background: #f7f6f6; |
|
91 |
+ } |
|
92 |
+ .modalmain table td { |
|
93 |
+ border: 1px solid #eee; |
|
94 |
+ } |
|
95 |
+ .modal h2 { |
|
96 |
+ background: #018b4d; |
|
97 |
+ font-size: 3rem; |
|
98 |
+ padding: 1.5rem; |
|
99 |
+ color: #ffffff; |
|
100 |
+ } |
|
101 |
+ .modal-bg h2 { |
|
102 |
+ background: #e5e5dd; |
|
103 |
+ font-size: 2rem; |
|
104 |
+ padding: 1rem; |
|
105 |
+ } |
|
106 |
+ .modal h3 { |
|
107 |
+ font-size: 1.8rem; |
|
108 |
+ border-bottom: 1px solid #eee; |
|
109 |
+ padding: 1rem 0 0.2rem 0; |
|
110 |
+ } |
|
111 |
+ .modal h4 { |
|
112 |
+ font-size: 1.6rem; |
|
113 |
+ font-weight: 100; |
|
114 |
+ padding: 0.2rem 0 1rem 0; |
|
115 |
+ } |
|
116 |
+ .modal h2 button { |
|
117 |
+ border: 0; |
|
118 |
+ background: none; |
|
119 |
+ height: 30px; |
|
120 |
+ cursor: pointer; |
|
121 |
+ width: fit-content; |
|
122 |
+ } |
|
123 |
+ .modal-bg button { |
|
124 |
+ border: 0; |
|
125 |
+ background: none; |
|
126 |
+ height: 30px; |
|
127 |
+ cursor: pointer; |
|
128 |
+ } |
|
129 |
+ .modal button img { |
|
130 |
+ width: 25px; |
|
70 | 131 |
}(No newline at end of file) |
--- client/views/component/chart/ChartMain.vue
+++ client/views/component/chart/ChartMain.vue
... | ... | @@ -55,7 +55,7 @@ |
55 | 55 |
</div> --> |
56 | 56 |
<!-- 차트 selectbox (끝)--> |
57 | 57 |
</div> |
58 |
- <div class="chart" id="chartdiv" ref="chartdiv" style="width: 100%; height: 700px;"></div> |
|
58 |
+ <div class="chart" id="chartdiv" ref="chartdiv" style="width: 100%; height: 100%;"></div> |
|
59 | 59 |
</template> |
60 | 60 |
|
61 | 61 |
<script> |
... | ... | @@ -1604,8 +1604,4 @@ |
1604 | 1604 |
} |
1605 | 1605 |
</script> |
1606 | 1606 |
|
1607 |
-<style scoped> |
|
1608 |
-#chartdiv { |
|
1609 |
- height: 50rem; |
|
1610 |
- padding-top: 2rem; |
|
1611 |
-}</style>(No newline at end of file) |
|
1607 |
+<style scoped></style>(No newline at end of file) |
--- client/views/component/dongSelectList.vue
+++ client/views/component/dongSelectList.vue
... | ... | @@ -1,5 +1,5 @@ |
1 | 1 |
<template> |
2 |
- <div class="flex-between gap" id="siDoHiddenCk"> |
|
2 |
+ <div class="grid3_7 gap" id="siDoHiddenCk"> |
|
3 | 3 |
<label for="">시/도</label> |
4 | 4 |
<select name="siDoSelectList" id="siDoSelectList" v-model="address['siDo_dong_cd']" |
5 | 5 |
@change="siDoGunGuSelectF($event)"> |
... | ... | @@ -9,7 +9,7 @@ |
9 | 9 |
</option> |
10 | 10 |
</select> |
11 | 11 |
</div> |
12 |
- <div class="flex-between gap" id="gunGuHiddenCk"> |
|
12 |
+ <div class="grid3_7 gap" id="gunGuHiddenCk"> |
|
13 | 13 |
<label for="">시/군/구</label> |
14 | 14 |
<select class="bg-white" name="gunGuSelectList" id="gunGuSelectList" v-model="address['guGun_dong_cd']" |
15 | 15 |
@change="siDoGunGuSelectF($event)"> |
... | ... | @@ -19,7 +19,7 @@ |
19 | 19 |
</option> |
20 | 20 |
</select> |
21 | 21 |
</div> |
22 |
- <div class="flex-between gap" id="dongHiddenCk"> |
|
22 |
+ <div class="grid3_7 gap" id="dongHiddenCk"> |
|
23 | 23 |
<label for="">행정동</label> |
24 | 24 |
<select name="dongSelectList" id="dongSelectList" v-model="address['dong_dong_cd']" @change="dongSelectF($event)"> |
25 | 25 |
<option :value=null disabled> 행정동 </option> |
... | ... | @@ -29,7 +29,7 @@ |
29 | 29 |
</option> |
30 | 30 |
</select> |
31 | 31 |
</div> |
32 |
- <div class="flex-between gap" id="nodeHiddenCk"> |
|
32 |
+ <div class="grid3_7 gap" id="nodeHiddenCk"> |
|
33 | 33 |
<label for="">교차로</label> |
34 | 34 |
<select name="nodeSelectList" id="nodeSelectList" v-model="address['node_id']" @change="nodeSelectF($event)"> |
35 | 35 |
<option :value=null disabled> 교차로 </option> |
... | ... | @@ -38,7 +38,7 @@ |
38 | 38 |
</option> |
39 | 39 |
</select> |
40 | 40 |
</div> |
41 |
- <div class="flex-between " id="crslk_azHiddenCk"> |
|
41 |
+ <div class="grid3_7 " id="crslk_azHiddenCk"> |
|
42 | 42 |
<label for="">방위각</label> |
43 | 43 |
<select name="crslk_azSelectList" id="crslk_azSelectList" v-model="address['crslk_az']"> |
44 | 44 |
<option :value="0" disabled> 방위각 </option> |
... | ... | @@ -289,5 +289,9 @@ |
289 | 289 |
|
290 | 290 |
|
291 | 291 |
<style scoped> |
292 |
+ label { |
|
293 |
+ width: max-content; |
|
294 |
+ line-height: 3rem; |
|
295 |
+} |
|
292 | 296 |
</style> |
293 | 297 |
(No newline at end of file) |
--- client/views/pages/RealtimeStatus/RealtimeStatus.vue
+++ client/views/pages/RealtimeStatus/RealtimeStatus.vue
... | ... | @@ -194,7 +194,7 @@ |
194 | 194 |
</ul> |
195 | 195 |
</div> |
196 | 196 |
<OpenLayers ref="open_layers" /> |
197 |
- <button @click="showPopup" class="popup-btn s-btn">Open Popup</button> |
|
197 |
+ <button @click="showPopup" class="popup-btn s-btn gr-btn">발생정보</button> |
|
198 | 198 |
|
199 | 199 |
<!-- Popup container --> |
200 | 200 |
<div |
... | ... | @@ -205,9 +205,14 @@ |
205 | 205 |
<!-- Popup content --> |
206 | 206 |
<div class="popup-content"> |
207 | 207 |
<!-- Add your popup content here --> |
208 |
- <h2>Popup Content</h2> |
|
209 |
- <p>This is the content of the popup.</p> |
|
210 |
- <button @click="hidePopup">Close</button> |
|
208 |
+ <h2>무단횡단 발생</h2> |
|
209 |
+ <ul> |
|
210 |
+ <li> |
|
211 |
+ <p class="m-b">발생일시: 2023-05-04 14:27</p> |
|
212 |
+ <p class="">발생장소: 영재어린이집(서측) 동쪽횡단보도</p> |
|
213 |
+ </li> |
|
214 |
+ </ul> |
|
215 |
+ <button @click="hidePopup" class="s-btn gr-btn">닫기</button> |
|
211 | 216 |
</div> |
212 | 217 |
</div> |
213 | 218 |
</div> |
... | ... | @@ -656,19 +661,26 @@ |
656 | 661 |
display: flex; |
657 | 662 |
justify-content: center; |
658 | 663 |
align-items: center; |
659 |
- background-color: rgba(0, 0, 0, 0.7); |
|
664 |
+ /* background-color: rgba(0, 0, 0, 0.7); */ |
|
660 | 665 |
z-index: 9999; |
661 | 666 |
} |
662 | 667 |
|
663 | 668 |
.popup-content { |
664 |
- background-color: #fff; |
|
665 |
- padding: 20px; |
|
666 |
- border-radius: 5px; |
|
667 |
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); |
|
669 |
+ background-color: #000000a3; |
|
670 |
+ width: 17%; |
|
671 |
+ text-align: center; |
|
672 |
+ color: #ffffff; |
|
673 |
+ /* height: 20%; */ |
|
674 |
+ padding: 20px; |
|
675 |
+ border-radius: 5px; |
|
676 |
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); |
|
668 | 677 |
} |
669 |
- |
|
678 |
+.popup-content ul{padding: 2rem 0;} |
|
679 |
+.popup-content ul li{font-size: 16px;} |
|
670 | 680 |
.popup-content h2 { |
671 | 681 |
margin-top: 0; |
682 |
+ font-size: 2.5rem; |
|
683 |
+ color: #bf1a21; |
|
672 | 684 |
} |
673 | 685 |
.toggle { |
674 | 686 |
display: none; |
... | ... | @@ -724,7 +736,7 @@ |
724 | 736 |
background-color: #fff; |
725 | 737 |
} |
726 | 738 |
|
727 |
-h2 { |
|
739 |
+.left h2, .chart h2 { |
|
728 | 740 |
background: #50ba8a; |
729 | 741 |
text-align: center; |
730 | 742 |
color: #fff; |
--- client/views/pages/RealtimeStatus/SituationSearch.vue
+++ client/views/pages/RealtimeStatus/SituationSearch.vue
... | ... | @@ -33,7 +33,7 @@ |
33 | 33 |
</tr> |
34 | 34 |
<tr> |
35 | 35 |
<th>검색</th> |
36 |
- <td colspan="7" > |
|
36 |
+ <td colspan="7" class="flex gap"> |
|
37 | 37 |
<select name="" id=""> |
38 | 38 |
<option value="">전체</option> |
39 | 39 |
<option value="">무단횡단</option> |
--- client/views/pages/SystemManagement/AccessRecord.vue
+++ client/views/pages/SystemManagement/AccessRecord.vue
... | ... | @@ -64,7 +64,7 @@ |
64 | 64 |
</tr> |
65 | 65 |
<tr> |
66 | 66 |
<th>검색</th> |
67 |
- <td colspan="7" > |
|
67 |
+ <td colspan="7" class="flex gap"> |
|
68 | 68 |
<select v-model="userAccessListSearch.searchType"> |
69 | 69 |
<option value="null" disabled>검색조건</option> |
70 | 70 |
<option value="user_id">ID</option> |
--- client/views/pages/SystemManagement/UserManagement.vue
+++ client/views/pages/SystemManagement/UserManagement.vue
... | ... | @@ -67,7 +67,7 @@ |
67 | 67 |
</tr> |
68 | 68 |
<tr> |
69 | 69 |
<th>검색</th> |
70 |
- <td colspan="7" > |
|
70 |
+ <td colspan="7" class="flex gap"> |
|
71 | 71 |
<select v-model="userListSearch.searchType"> |
72 | 72 |
<option value="null" disabled>검색조건</option> |
73 | 73 |
<option value="user_id">ID</option> |
... | ... | @@ -204,69 +204,76 @@ |
204 | 204 |
</button> |
205 | 205 |
</h2> |
206 | 206 |
<div class="form-wrap"> |
207 |
- <div class="flex m-b"> |
|
207 |
+ <div class="grid2_8 m-b"> |
|
208 | 208 |
<span>아이디 : </span> |
209 |
- <input type="text" placeholder="ID" v-model="user.user_id"> |
|
210 |
- <button type="button" class="idchk green-btn" @click="idChcek">중복확인</button> |
|
209 |
+ <div class="flex-start gap"> |
|
210 |
+ <input type="text" placeholder="ID" v-model="user.user_id"> |
|
211 |
+ <button type="button" class="idchk green-btn s-btn" @click="idChcek">중복확인</button> |
|
212 |
+ </div> |
|
211 | 213 |
</div> |
212 |
- <div class="flex m-b"> |
|
214 |
+ <div class="grid2_8 m-b"> |
|
213 | 215 |
<span>비밀번호 : </span> |
214 |
- <input type="password" placeholder="Password" v-model="user.user_pw"> |
|
216 |
+ <div class="flex-start gap"><input type="password" placeholder="Password" v-model="user.user_pw"></div> |
|
215 | 217 |
</div> |
216 |
- <div class="flex m-b"> |
|
218 |
+ <div class="grid2_8 m-b"> |
|
217 | 219 |
<span>비밀번호 확인 : </span> |
218 |
- <input type="password" placeholder="Confirm Password" v-model="passwordCheck"> |
|
220 |
+ <div class="flex-start gap"><input type="password" placeholder="Confirm Password" v-model="passwordCheck"></div> |
|
219 | 221 |
</div> |
220 |
- <div class="flex m-b"> |
|
222 |
+ <div class="grid2_8 m-b"> |
|
221 | 223 |
<span>이름 : </span> |
222 |
- <input type="text" placeholder="Name" v-model="user.user_nm"> |
|
224 |
+ <div class="flex-start gap"><input type="text" placeholder="Name" v-model="user.user_nm"></div> |
|
223 | 225 |
</div> |
224 |
- <div class="flex m-b"> |
|
226 |
+ <div class="grid2_8 m-b"> |
|
225 | 227 |
<span>전화번호 : </span> |
226 |
- <input type="text" style="width: 7rem" maxlength="3" v-model="tel_first"> |
|
227 |
- <div> - </div> |
|
228 |
- <input type="text" style="width: 7rem" maxlength="4" v-model="tel_second"> |
|
229 |
- <div> - </div> |
|
230 |
- <input type="text" style="width: 7rem" maxlength="4" v-model="tel_third"> |
|
228 |
+ <div class="flex-start gap"> |
|
229 |
+ <input type="text" style="width: 7rem" maxlength="3" v-model="tel_first"> |
|
230 |
+ <div> - </div> |
|
231 |
+ <input type="text" style="width: 7rem" maxlength="4" v-model="tel_second"> |
|
232 |
+ <div> - </div> |
|
233 |
+ <input type="text" style="width: 7rem" maxlength="4" v-model="tel_third"> |
|
234 |
+ </div> |
|
231 | 235 |
</div> |
232 |
- <div class="flex m-b"> |
|
236 |
+ <div class="grid2_8 m-b"> |
|
233 | 237 |
<span>이메일 : </span> |
234 |
- <input type="text" style="width: 10rem" v-model="email_id"> |
|
235 |
- <div> @ </div> |
|
236 |
- <input class="m-r" type="text" style="width: 10rem" v-model="email_domain" :disabled="email_disabled === true"> |
|
237 |
- <select @change="emailValue($event.target.value)"> |
|
238 |
- <option selected disabled>선택하세요</option> |
|
239 |
- <option value="naver.com">naver.com</option> |
|
240 |
- <option value="gmail.com">gmail.com</option> |
|
241 |
- <option value="hanmail.net">hanmail.net</option> |
|
242 |
- <option value="daum.net">daum.net</option> |
|
243 |
- <option value="nate.com">nate.com</option> |
|
244 |
- <option value="null">직접입력</option> |
|
245 |
- </select> |
|
238 |
+ <div class="flex-start gap"> |
|
239 |
+ <input type="text" style="width: 10rem" v-model="email_id"> |
|
240 |
+ <div> @ </div> |
|
241 |
+ <input class="m-r" type="text" style="width: 10rem" v-model="email_domain" :disabled="email_disabled === true"> |
|
242 |
+ <select @change="emailValue($event.target.value)"> |
|
243 |
+ <option selected disabled>선택하세요</option> |
|
244 |
+ <option value="naver.com">naver.com</option> |
|
245 |
+ <option value="gmail.com">gmail.com</option> |
|
246 |
+ <option value="hanmail.net">hanmail.net</option> |
|
247 |
+ <option value="daum.net">daum.net</option> |
|
248 |
+ <option value="nate.com">nate.com</option> |
|
249 |
+ <option value="null">직접입력</option> |
|
250 |
+ </select> |
|
251 |
+ </div> |
|
246 | 252 |
</div> |
247 |
- <div class="flex m-b"> |
|
248 |
- <span>관리구역 : </span> |
|
249 |
- <div class="flex gap"><dongSelectList @setDongCd="setDongCd" :nodeHiddenCk="true" :crslk_azHiddenCk="true"></dongSelectList></div> |
|
253 |
+ <div class="grid2_8 m-b"> |
|
254 |
+ <span>관리구역 : </span><div class="flex-start gap"><dongSelectList @setDongCd="setDongCd" :nodeHiddenCk="true" :crslk_azHiddenCk="true"></dongSelectList></div> |
|
250 | 255 |
</div> |
251 |
- <div class="flex m-b"> |
|
256 |
+ <div class="grid2_8 m-b"> |
|
252 | 257 |
<span>비고 : </span> |
253 |
- <input type="text" placeholder="참고사항을 입력해주세요." v-model="user.rm"> |
|
258 |
+ <div class="flex-start gap"><input type="text" placeholder="참고사항을 입력해주세요." v-model="user.rm"></div> |
|
254 | 259 |
</div> |
255 |
- <div class="flex m-b"> |
|
260 |
+ <div class="grid2_8 m-b"> |
|
256 | 261 |
<span>권한 : </span> |
257 |
- <label for="radio_1"> |
|
258 |
- <input type="radio" name="radio" id="radio_1" value="시청관리자" v-model="user.user_author"> |
|
259 |
- 시청관리자 |
|
260 |
- </label> |
|
261 |
- <label for="radio_2"> |
|
262 |
- <input type="radio" name="radio" id="radio_2" value="지자체관리자" v-model="user.user_author"> |
|
263 |
- 지자체관리자 |
|
264 |
- </label> |
|
262 |
+ <div class="flex-start gap"> |
|
263 |
+ <label for="radio_1" class="flex gap"> |
|
264 |
+ <input type="radio" name="radio" id="radio_1" value="시청관리자" v-model="user.user_author"> |
|
265 |
+ 시청관리자 |
|
266 |
+ </label> |
|
267 |
+ <label for="radio_2" class="flex gap"> |
|
268 |
+ <input type="radio" name="radio" id="radio_2" value="지자체관리자" v-model="user.user_author"> |
|
269 |
+ 지자체관리자 |
|
270 |
+ </label> |
|
271 |
+ </div> |
|
265 | 272 |
</div> |
266 | 273 |
|
267 |
- <div class="btn-wrap"> |
|
268 |
- <button type="button" class="green-btn" @click="userInsertCheck">등록</button> |
|
269 |
- <button type="button" class="btn-2 gray-btn" @click="modal_insert= false">취소</button> |
|
274 |
+ <div class="btn-wrap flex-center gap"> |
|
275 |
+ <button type="button" class="green-btn s-btn" @click="userInsertCheck">등록</button> |
|
276 |
+ <button type="button" class="btn-2 gray-btn s-btn" @click="modal_insert= false">취소</button> |
|
270 | 277 |
</div> |
271 | 278 |
</div> |
272 | 279 |
</div> |
... | ... | @@ -714,6 +721,8 @@ |
714 | 721 |
.modal { |
715 | 722 |
width: 100rem; |
716 | 723 |
} |
724 |
+.modal .form-wrap {padding: 2rem;} |
|
725 |
+.modal .form-wrap span{width: 10rem; text-align: left;} |
|
717 | 726 |
.modalmain { |
718 | 727 |
padding: 1rem; |
719 | 728 |
max-height: 70rem; |
... | ... | @@ -728,11 +737,6 @@ |
728 | 737 |
} |
729 | 738 |
.modalmain table td { |
730 | 739 |
border: 1px solid #eee; |
731 |
-} |
|
732 |
-.modal h2 { |
|
733 |
- background: #e5e5dd; |
|
734 |
- font-size: 2rem; |
|
735 |
- padding: 1rem; |
|
736 | 740 |
} |
737 | 741 |
.modal-bg h2 { |
738 | 742 |
background: #e5e5dd; |
--- client/views/pages/SystemManagement/UserModifyForm.vue
+++ client/views/pages/SystemManagement/UserModifyForm.vue
... | ... | @@ -15,66 +15,74 @@ |
15 | 15 |
<h2 class="page-title">사용자 정보</h2> |
16 | 16 |
</div> |
17 | 17 |
<hr class="margin"> |
18 |
- <div class="form-wrap"> |
|
19 |
- <div class="flex m-b"> |
|
18 |
+ <div class="form-wrap grid gap"> |
|
19 |
+ <div class="grid2_8 "> |
|
20 | 20 |
<span>아이디 : </span> |
21 | 21 |
<span>{{ user.user_id }} </span> |
22 | 22 |
</div> |
23 |
- <div class="flex m-b"> |
|
23 |
+ <div class="grid2_8 "> |
|
24 | 24 |
<span>이름 : </span> |
25 | 25 |
<input type="text" placeholder="Name" v-model="user.user_nm"> |
26 | 26 |
</div> |
27 |
- <div class="flex m-b"> |
|
27 |
+ <div class="grid2_8 "> |
|
28 | 28 |
<span>전화번호 : </span> |
29 |
- <input type="text" style="width: 7rem" maxlength="3" v-model="tel_first"> |
|
30 |
- <div> - </div> |
|
31 |
- <input type="text" style="width: 7rem" maxlength="4" v-model="tel_second"> |
|
32 |
- <div> - </div> |
|
33 |
- <input type="text" style="width: 7rem" maxlength="4" v-model="tel_third"> |
|
29 |
+ <div class="flex gap"> |
|
30 |
+ <input type="text" style="width: 7rem" maxlength="3" v-model="tel_first"> |
|
31 |
+ <div> - </div> |
|
32 |
+ <input type="text" style="width: 7rem" maxlength="4" v-model="tel_second"> |
|
33 |
+ <div> - </div> |
|
34 |
+ <input type="text" style="width: 7rem" maxlength="4" v-model="tel_third"> |
|
35 |
+ </div> |
|
34 | 36 |
</div> |
35 |
- <div class="flex m-b gap"> |
|
37 |
+ <div class="grid2_8 "> |
|
36 | 38 |
<span>이메일 : </span> |
37 |
- <input type="text" style="width: 10rem" v-model="email_id"> |
|
38 |
- <div> @ </div> |
|
39 |
- <input type="text" style="width: 10rem" v-model="email_domain" :disabled="email_disabled === true"> |
|
40 |
- <select @change="emailValue($event.target.value)"> |
|
41 |
- <option selected disabled>선택하세요</option> |
|
42 |
- <option value="naver.com">naver.com</option> |
|
43 |
- <option value="gmail.com">gmail.com</option> |
|
44 |
- <option value="hanmail.net">hanmail.net</option> |
|
45 |
- <option value="daum.net">daum.net</option> |
|
46 |
- <option value="nate.com">nate.com</option> |
|
47 |
- <option value="null">직접입력</option> |
|
48 |
- </select> |
|
39 |
+ <div class="flex gap"> |
|
40 |
+ <input type="text" style="width: 10rem" v-model="email_id"> |
|
41 |
+ <div style="height: 3rem; line-height: 1rem;"> @ </div> |
|
42 |
+ <input type="text" style="width: 10rem" v-model="email_domain" :disabled="email_disabled === true"> |
|
43 |
+ <select @change="emailValue($event.target.value)"> |
|
44 |
+ <option selected disabled>선택하세요</option> |
|
45 |
+ <option value="naver.com">naver.com</option> |
|
46 |
+ <option value="gmail.com">gmail.com</option> |
|
47 |
+ <option value="hanmail.net">hanmail.net</option> |
|
48 |
+ <option value="daum.net">daum.net</option> |
|
49 |
+ <option value="nate.com">nate.com</option> |
|
50 |
+ <option value="null">직접입력</option> |
|
51 |
+ </select> |
|
52 |
+ </div> |
|
49 | 53 |
</div> |
50 |
- <div class="flex m-b"> |
|
54 |
+ <div class="grid2_8 "> |
|
51 | 55 |
<span>관리구역 : </span> |
52 |
- <dongSelectList @setDongCd="setDongCd" :nodeHiddenCk="true" :crslk_azHiddenCk="true" |
|
53 |
- :user_sido_cd="user.user_sido_cd" :user_sigungu_cd="user.user_sigungu_cd" :user_dong_cd="user.user_dong_cd"></dongSelectList> |
|
56 |
+ <div class="flex-between gap dongselect"> |
|
57 |
+ <dongSelectList @setDongCd="setDongCd" :nodeHiddenCk="true" :crslk_azHiddenCk="true" |
|
58 |
+ :user_sido_cd="user.user_sido_cd" :user_sigungu_cd="user.user_sigungu_cd" :user_dong_cd="user.user_dong_cd"></dongSelectList> |
|
59 |
+ </div> |
|
54 | 60 |
</div> |
55 |
- <div class="flex m-b"> |
|
61 |
+ <div class="grid2_8 "> |
|
56 | 62 |
<span>비고 : </span> |
57 | 63 |
<input type="text" placeholder="참고사항을 입력해주세요." v-model="user.rm"> |
58 | 64 |
</div> |
59 |
- <div class="flex m-b"> |
|
65 |
+ <div class="grid2_8 "> |
|
60 | 66 |
<span>권한 : </span> |
61 |
- <label for="radio_1"> |
|
62 |
- <input type="radio" name="radio" id="radio_1" value="시청관리자" v-model="user.user_author"> |
|
63 |
- 시청관리자 |
|
64 |
- </label> |
|
65 |
- <label for="radio_2"> |
|
66 |
- <input type="radio" name="radio" id="radio_2" value="지자체관리자" v-model="user.user_author"> |
|
67 |
- 지자체관리자 |
|
68 |
- </label> |
|
67 |
+ <div class="flex gap"> |
|
68 |
+ <label for="radio_1"> |
|
69 |
+ <input type="radio" name="radio" id="radio_1" value="시청관리자" v-model="user.user_author"> |
|
70 |
+ 시청관리자 |
|
71 |
+ </label> |
|
72 |
+ <label for="radio_2"> |
|
73 |
+ <input type="radio" name="radio" id="radio_2" value="지자체관리자" v-model="user.user_author"> |
|
74 |
+ 지자체관리자 |
|
75 |
+ </label> |
|
76 |
+ </div> |
|
69 | 77 |
</div> |
70 | 78 |
|
71 |
- <div class="btn-wrap"> |
|
72 |
- <button type="button" class="green-btn" @click="userUpdateCheck">수정</button> |
|
73 |
- <button type="button" class="green-btn" @click="modal_delete = true">삭제</button> |
|
74 |
- <button type="button" class="btn-2 gray-btn" @click="userSelectListPage()">취소</button> |
|
79 |
+ <div class="btn-wrap flex-between"> |
|
80 |
+ <button type="button" class="green-btn s-btn" @click="userUpdateCheck">수정</button> |
|
81 |
+ <button type="button" class="green-btn s-btn" @click="modal_delete = true">삭제</button> |
|
82 |
+ <button type="button" class="btn-2 gray-btn s-btn" @click="userSelectListPage()">취소</button> |
|
75 | 83 |
</div> |
76 | 84 |
<div class="btn-wrap"> |
77 |
- <button type="button" class="green-btn" @click="pwReset">비밀번호 초기화</button> |
|
85 |
+ <button type="button" class="green-btn s-btn" @click="pwReset">비밀번호 초기화</button> |
|
78 | 86 |
</div> |
79 | 87 |
</div> |
80 | 88 |
</div> |
... | ... | @@ -392,7 +400,9 @@ |
392 | 400 |
width: 52rem; |
393 | 401 |
margin: 0 auto; |
394 | 402 |
} |
395 |
- |
|
403 |
+.form-wrap > div{height: 3rem;} |
|
404 |
+.form-wrap span{text-align: left; line-height: 3rem;} |
|
405 |
+select{width: -webkit-fill-available;} |
|
396 | 406 |
.idchk { |
397 | 407 |
margin-left: 1rem; |
398 | 408 |
} |
... | ... | @@ -423,9 +433,9 @@ |
423 | 433 |
width: 24.7rem; |
424 | 434 |
} |
425 | 435 |
|
426 |
-.form-wrap select { |
|
436 |
+/* .form-wrap select { |
|
427 | 437 |
min-width: 9rem; |
428 |
-} |
|
438 |
+} */ |
|
429 | 439 |
|
430 | 440 |
.form-wrap select:not(:last-child) { |
431 | 441 |
margin-right: 1.5rem; |
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?