
--- client/views/pages/dbConnection/InsertDBConnection.vue
+++ client/views/pages/dbConnection/InsertDBConnection.vue
... | ... | @@ -8,118 +8,59 @@ |
8 | 8 |
<div class="right-content flex100"> |
9 | 9 |
<div class="flex-column justify-between"> |
10 | 10 |
<div class="table-zone"> |
11 |
- <p style="font-size: 2rem; font-weight: 800; margin-bottom: 10px"> |
|
12 |
- 연계정보 등록 |
|
13 |
- </p> |
|
11 |
+ <p style="font-size: 2rem; font-weight: 800; margin-bottom: 10px"> 연계정보 등록 </p> |
|
14 | 12 |
<table class="form-table"> |
15 | 13 |
<tbody> |
16 | 14 |
<tr> |
17 | 15 |
<th>연계 명</th> |
18 | 16 |
<td colspan="3"> |
19 |
- <input |
|
20 |
- id="conectNm" |
|
21 |
- type="text" |
|
22 |
- placeholder="연계 이름을 입력해 주세요" |
|
23 |
- class="half-input" |
|
24 |
- v-model="connectionDB.conectNm" |
|
25 |
- /> |
|
17 |
+ <input id="conectNm" type="text" placeholder="연계 이름을 입력해 주세요" class="half-input" v-model="connectionDB.conectNm" /> |
|
26 | 18 |
</td> |
27 | 19 |
</tr> |
28 | 20 |
<tr> |
29 | 21 |
<th>DMBS</th> |
30 | 22 |
<td colspan="3"> |
31 |
- <select |
|
32 |
- id="databaseType" |
|
33 |
- @change="successAt = false" |
|
34 |
- class="square-select half-input" |
|
35 |
- v-model="connectionDB.databaseType" |
|
36 |
- > |
|
37 |
- <option |
|
38 |
- v-for="(itm, index) in databaseTypeList" |
|
39 |
- :key="index" |
|
40 |
- :value="itm.key" |
|
41 |
- > |
|
42 |
- {{ itm.value }} |
|
43 |
- </option> |
|
23 |
+ <select id="databaseType" @change="successAt = false" class="square-select half-input" v-model="connectionDB.databaseType"> |
|
24 |
+ <option v-for="(itm, index) in databaseTypeList" :key="index" :value="itm.key"> {{ itm.value }} </option> |
|
44 | 25 |
</select> |
45 | 26 |
</td> |
46 | 27 |
</tr> |
47 | 28 |
<tr> |
48 | 29 |
<th>IP</th> |
49 | 30 |
<td colspan="3"> |
50 |
- <input |
|
51 |
- id="conectIp" |
|
52 |
- type="text" |
|
53 |
- @input="successAt = false" |
|
54 |
- class="half-input" |
|
55 |
- v-model="connectionDB.conectIp" |
|
56 |
- placeholder="127.0.0.1" |
|
57 |
- /> |
|
31 |
+ <input id="conectIp" type="text" @input="successAt = false" class="half-input" v-model="connectionDB.conectIp" placeholder="127.0.0.1" /> |
|
58 | 32 |
</td> |
59 | 33 |
</tr> |
60 | 34 |
<tr> |
61 | 35 |
<th>PORT</th> |
62 | 36 |
<td colspan="3"> |
63 |
- <input |
|
64 |
- id="conectPort" |
|
65 |
- type="text" |
|
66 |
- @input="successAt = false" |
|
67 |
- class="half-input" |
|
68 |
- v-model="connectionDB.conectPort" |
|
69 |
- /> |
|
37 |
+ <input id="conectPort" type="text" @input="successAt = false" class="half-input" v-model="connectionDB.conectPort" /> |
|
70 | 38 |
</td> |
71 | 39 |
</tr> |
72 | 40 |
<tr> |
73 | 41 |
<th>DB 명</th> |
74 | 42 |
<td colspan="3"> |
75 |
- <input |
|
76 |
- id="databaseNm" |
|
77 |
- type="text" |
|
78 |
- @input="successAt = false" |
|
79 |
- class="half-input" |
|
80 |
- v-model="connectionDB.databaseNm" |
|
81 |
- placeholder="데이터베이스명 OR 스키마명" |
|
82 |
- /> |
|
43 |
+ <input id="databaseNm" type="text" @input="successAt = false" class="half-input" v-model="connectionDB.databaseNm" placeholder="데이터베이스명 OR 스키마명" /> |
|
83 | 44 |
</td> |
84 | 45 |
</tr> |
85 | 46 |
<tr> |
86 | 47 |
<th>접속ID</th> |
87 | 48 |
<td colspan="3"> |
88 |
- <input |
|
89 |
- type="text" |
|
90 |
- class="half-input" |
|
91 |
- @input="successAt = false" |
|
92 |
- v-model="connectionDB.userId" |
|
93 |
- placeholder="접속 ID" |
|
94 |
- /> |
|
49 |
+ <input type="text" class="half-input" @input="successAt = false" v-model="connectionDB.userId" placeholder="접속 ID" /> |
|
95 | 50 |
</td> |
96 | 51 |
</tr> |
97 | 52 |
<tr> |
98 | 53 |
<th>접속PW</th> |
99 | 54 |
<td colspan="3"> |
100 |
- <input |
|
101 |
- type="password" |
|
102 |
- class="half-input" |
|
103 |
- @input="successAt = false" |
|
104 |
- v-model="connectionDB.userPassword" |
|
105 |
- placeholder="접속 PW" |
|
106 |
- autocomplete="new-password" |
|
107 |
- /> |
|
55 |
+ <input type="password" class="half-input" @input="successAt = false" v-model="connectionDB.userPassword" placeholder="접속 PW" autocomplete="new-password" /> |
|
108 | 56 |
</td> |
109 | 57 |
</tr> |
110 | 58 |
</tbody> |
111 | 59 |
</table> |
112 | 60 |
<br /> |
113 |
- <p style="font-size: 2rem; font-weight: 800; margin-bottom: 10px"> |
|
114 |
- 접속결과 확인 |
|
115 |
- </p> |
|
61 |
+ <p style="font-size: 2rem; font-weight: 800; margin-bottom: 10px"> 접속결과 확인 </p> |
|
116 | 62 |
<div class="flex justify-end"> |
117 |
- <button |
|
118 |
- class="blue-btn small-btn" |
|
119 |
- @click="dataBaseConnectionCheck()" |
|
120 |
- > |
|
121 |
- 접속 테스트 |
|
122 |
- </button> |
|
63 |
+ <button class="blue-btn small-btn" @click="dataBaseConnectionCheck()"> 접속 테스트 </button> |
|
123 | 64 |
</div> |
124 | 65 |
<div class="table-zone"> |
125 | 66 |
<table class="list-table"> |
... | ... | @@ -147,12 +88,8 @@ |
147 | 88 |
</div> |
148 | 89 |
<div class="flex5"> |
149 | 90 |
<div class="flex justify-end"> |
150 |
- <button class="darkg-btn small-btn" @click="insertDbConnection()"> |
|
151 |
- 등록 |
|
152 |
- </button> |
|
153 |
- <button class="darkg-border-btn small-btn" @click="goBack()"> |
|
154 |
- 목록 |
|
155 |
- </button> |
|
91 |
+ <button class="darkg-btn small-btn" @click="insertDbConnection()"> 등록 </button> |
|
92 |
+ <button class="darkg-border-btn small-btn" @click="goBack()"> 목록 </button> |
|
156 | 93 |
</div> |
157 | 94 |
</div> |
158 | 95 |
</div> |
... | ... | @@ -160,7 +97,6 @@ |
160 | 97 |
</div> |
161 | 98 |
</div> |
162 | 99 |
</template> |
163 |
- |
|
164 | 100 |
<script> |
165 | 101 |
import axios from "axios"; |
166 | 102 |
|
--- client/views/pages/openapi/OpenApiInsert.vue
+++ client/views/pages/openapi/OpenApiInsert.vue
... | ... | @@ -310,7 +310,7 @@ |
310 | 310 |
choicePostData: function (jobItem) { // async 추가 |
311 | 311 |
|
312 | 312 |
let itm = {}; |
313 |
- itm.dataset_post_id = jobItem.itmId; |
|
313 |
+ itm.dataset_post_id = jobItem.itm_id; |
|
314 | 314 |
// await로 selectPost 완료 대기 |
315 | 315 |
this.selectPost(itm); |
316 | 316 |
}, |
--- client/views/pages/openapi/OpenApiList.vue
+++ client/views/pages/openapi/OpenApiList.vue
... | ... | @@ -186,7 +186,7 @@ |
186 | 186 |
// 날짜 |
187 | 187 |
search_date: this.$getDefaultSerchItem("export_creat_dt", "dates"), |
188 | 188 |
// 공개여부 |
189 |
- search_data1: this.$getDefaultSerchItem("public_at", "bool"), |
|
189 |
+ search_data1: this.$getDefaultSerchItem("public_potal_is_use", "bool"), |
|
190 | 190 |
// 카테고리 |
191 | 191 |
search_data2: this.$getDefaultSerchItem("category_id", "string"), |
192 | 192 |
// 검색조건 |
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?