Stormen123
01-23
240123 console.log 제거
@5ee3fa36bde007cc4a2d92c64de0c2ed7696bf26
--- client/views/components/LineChart.vue
+++ client/views/components/LineChart.vue
... | ... | @@ -122,7 +122,6 @@ |
122 | 122 |
|
123 | 123 |
// Add series |
124 | 124 |
Object.keys(data[0]).forEach((key, index) => { |
125 |
- console.log('key', key) |
|
126 | 125 |
if (key !== xField) { |
127 | 126 |
let series = chart.series.push(am5xy.LineSeries.new(root, { |
128 | 127 |
name: key, |
--- client/views/components/VerticalBarChart.vue
+++ client/views/components/VerticalBarChart.vue
... | ... | @@ -33,7 +33,6 @@ |
33 | 33 |
}, |
34 | 34 |
methods: { |
35 | 35 |
createChart(data, xField, yField, color) { |
36 |
- console.log(color) |
|
37 | 36 |
let chartWarp = this.$refs["chartdiv"]; // 차트 상위 div ref 매칭 |
38 | 37 |
chartWarp.innerHTML = ""; // 차트 상위 div 내용 초기화 (기존 차트 삭제) |
39 | 38 |
let div = document.createElement("div"); // 차트를 담을 빈 div 생성 (차트 하위 div) |
--- client/views/pages/transit/Transit.vue
+++ client/views/pages/transit/Transit.vue
... | ... | @@ -126,7 +126,6 @@ |
126 | 126 |
data: {distanceMonth : vm.distanceMonth} |
127 | 127 |
}).then(function(response) { |
128 | 128 |
vm.distanceList = response.data; |
129 |
- console.log('distanceList', vm.distanceList.length) |
|
130 | 129 |
}).catch(function() { |
131 | 130 |
alert("각 시도별 평균, 최소, 최대 이동거리 조회 오류, 관리자에게 문의 바랍니다.") |
132 | 131 |
}) |
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?