
--- client/views/component/SplitterLayout.vue
+++ client/views/component/SplitterLayout.vue
... | ... | @@ -109,4 +109,13 @@ |
109 | 109 |
} |
110 | 110 |
} |
111 | 111 |
}; |
112 |
-</script>(파일 끝에 줄바꿈 문자 없음) |
|
112 |
+</script> |
|
113 |
+<style scoped> |
|
114 |
+.active { |
|
115 |
+ border: 3px dotted red; |
|
116 |
+} |
|
117 |
+ |
|
118 |
+.padding-1 { |
|
119 |
+ padding: 1rem; |
|
120 |
+} |
|
121 |
+</style>(파일 끝에 줄바꿈 문자 없음) |
--- client/views/component/connection/modalContents/DataFilter.vue
+++ client/views/component/connection/modalContents/DataFilter.vue
... | ... | @@ -177,7 +177,7 @@ |
177 | 177 |
} |
178 | 178 |
}, |
179 | 179 |
|
180 |
- mounted() { }, |
|
180 |
+ mounted() {}, |
|
181 | 181 |
|
182 | 182 |
computed: {}, |
183 | 183 |
|
... | ... | @@ -219,14 +219,15 @@ |
219 | 219 |
} |
220 | 220 |
}) |
221 | 221 |
.then((response) => { |
222 |
- |
|
223 |
- vm.dataTable = response.data; |
|
224 |
- |
|
222 |
+ vm.dataTable = this.frontNode.dataTable; |
|
223 |
+ vm.dataTable.rowData = response.data.rowData; |
|
225 | 224 |
vm.rowKeys = []; // 초기화 |
226 | 225 |
for (let column of vm.frontNode.dataTable.columnDatas) { |
227 | 226 |
vm.rowKeys.push(column.orginlColumnNm); |
228 | 227 |
} |
229 | 228 |
vm.rowData = vm.dataTable.rowData; |
229 |
+ |
|
230 |
+ vm.jobItm.dataTable = vm.dataTable; |
|
230 | 231 |
vm.$emit("onDataSetChange", true); |
231 | 232 |
}) |
232 | 233 |
.catch((error) => { |
--- client/views/component/modal/CreateNodeModal.vue
+++ client/views/component/modal/CreateNodeModal.vue
... | ... | @@ -115,6 +115,13 @@ |
115 | 115 |
async fnSelectTypeList() { |
116 | 116 |
let typeList = await this.$getCommonCodeByTree(this.schdulType); |
117 | 117 |
if (this.page == "jobGroup") { |
118 |
+ let items = []; |
|
119 |
+ for (let type of typeList[0].childList) { |
|
120 |
+ if (type.id != "FILE_READ" && type.id != "EHOJO_READ") { |
|
121 |
+ items.push(type); |
|
122 |
+ } |
|
123 |
+ } |
|
124 |
+ typeList[0].childList = items; |
|
118 | 125 |
this.typeList = [typeList[0], typeList[1]]; |
119 | 126 |
} else { |
120 | 127 |
this.typeList = typeList; |
... | ... | @@ -127,8 +134,7 @@ |
127 | 134 |
// 등록 버튼 동작 |
128 | 135 |
fnAddNode() { |
129 | 136 |
let node = Object.assign({}, this.$getDefaultJobGroup().node); |
130 |
- node.id = |
|
131 |
- "NODE_" + new Date().getTime() + +Math.floor(Math.random() * 1000) + 1; |
|
137 |
+ node.id = "NODE_" + new Date().getTime() + +Math.floor(Math.random() * 1000) + 1; |
|
132 | 138 |
node.label = this.selectedNode.nm; |
133 | 139 |
node.position = { |
134 | 140 |
x: Math.floor(Math.random() * 500) + 1, |
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?