
+++ client/views/pages/dbManagement/DbSchema.vue
... | ... | @@ -0,0 +1,98 @@ |
1 | +<!-- | |
2 | + | |
3 | + 작성자 : 정다정 | |
4 | + 작성일 : 2024.01.16 | |
5 | + 내용 : 진단대상 DB 관리 스키마 조회 및 테이블 수정 | |
6 | + | |
7 | + --> | |
8 | + | |
9 | +<template> | |
10 | + <div> | |
11 | + <div class="content-titleZone"> | |
12 | + <p class="box-title">DBMS 스키마 정보</p> | |
13 | + </div> | |
14 | + <div class="table-zone"> | |
15 | + <div class="flex justify-between align-center"> | |
16 | + <div class="cunt-selectZone"> | |
17 | + <select name="" id=""> | |
18 | + <option value="">10개 보기</option> | |
19 | + <option value="">20개 보기</option> | |
20 | + </select> | |
21 | + </div> | |
22 | + </div> | |
23 | + <table class="list-table" style="text-align: center"> | |
24 | + <colgroup> | |
25 | + <col width="5%" /> | |
26 | + <col width="10%" /> | |
27 | + <col width="20%" /> | |
28 | + <col width="20%" /> | |
29 | + <col width="40%" /> | |
30 | + </colgroup> | |
31 | + <thead> | |
32 | + <tr> | |
33 | + <th>No.</th> | |
34 | + <th>수집 제외</th> | |
35 | + <th>DB 접속 대상</th> | |
36 | + <th>스키마명</th> | |
37 | + <th>설명</th> | |
38 | + </tr> | |
39 | + </thead> | |
40 | + <tbody> | |
41 | + <tr> | |
42 | + <td>1</td> | |
43 | + <td><input type="checkbox" /></td> | |
44 | + <td>DB 이름(DBMS_ID)</td> | |
45 | + <td>스키마명(SCHEMA_NAME)</td> | |
46 | + <td><input type="text" placeholder="설명(SCHEMA_EXPLANE)" /></td> | |
47 | + </tr> | |
48 | + <tr> | |
49 | + <td>1</td> | |
50 | + <td><input type="checkbox" /></td> | |
51 | + <td>DB 이름(DBMS_ID)</td> | |
52 | + <td>스키마명(SCHEMA_NAME)</td> | |
53 | + <td><input type="text" placeholder="설명(SCHEMA_EXPLANE)" /></td> | |
54 | + </tr> | |
55 | + <tr> | |
56 | + <td>1</td> | |
57 | + <td><input type="checkbox" /></td> | |
58 | + <td>DB 이름(DBMS_ID)</td> | |
59 | + <td>스키마명(SCHEMA_NAME)</td> | |
60 | + <td><input type="text" placeholder="설명(SCHEMA_EXPLANE)" /></td> | |
61 | + </tr> | |
62 | + </tbody> | |
63 | + </table> | |
64 | + <div class="flex justify-end"> | |
65 | + <button class="red-border-btn small-btn">수집제외 여부, 설명 저장</button> | |
66 | + </div> | |
67 | + </div> | |
68 | + <PaginationButton /> | |
69 | + </div> | |
70 | +</template> | |
71 | +<script> | |
72 | +import axios from 'axios'; | |
73 | +import PaginationButton from '../../component/PaginationButton.vue'; | |
74 | + | |
75 | +export default { | |
76 | + data() { | |
77 | + schemaList: []; | |
78 | + }, | |
79 | + methods: { | |
80 | + //스키마 정보 수집 | |
81 | + getSchema() { | |
82 | + const vm = this; | |
83 | + axios({ | |
84 | + url: '/selectSchemaList.json', | |
85 | + method: 'post', | |
86 | + headers: { | |
87 | + 'Content-Type': 'application/json; charset=UTF-8', | |
88 | + }, | |
89 | + data: {}, | |
90 | + }); | |
91 | + }, | |
92 | + }, | |
93 | + components: { | |
94 | + PaginationButton: PaginationButton, | |
95 | + }, | |
96 | +}; | |
97 | +</script> | |
98 | +<style></style> |
--- client/views/pages/dqiList/DqiList.vue
+++ client/views/pages/dbManagement/DqiList.vue
No changes |
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?