Showing
1 changed file
with
2 additions
and
2 deletions
@@ -136,7 +136,7 @@ export default { | @@ -136,7 +136,7 @@ export default { | ||
136 | } | 136 | } |
137 | 137 | ||
138 | if (param) { | 138 | if (param) { |
139 | - console.log('push', param); | 139 | + console.log(`${reportData.template_name} push`); |
140 | _.isArray(param) ? (this.waiting = this.waiting.concat(param)) : this.waiting.push(param); | 140 | _.isArray(param) ? (this.waiting = this.waiting.concat(param)) : this.waiting.push(param); |
141 | } | 141 | } |
142 | } | 142 | } |
@@ -156,7 +156,7 @@ export default { | @@ -156,7 +156,7 @@ export default { | ||
156 | }, | 156 | }, |
157 | focusComponentDataRecord(index, param) { | 157 | focusComponentDataRecord(index, param) { |
158 | if (this.componentStatus[index]) { | 158 | if (this.componentStatus[index]) { |
159 | - console.log('focus push', param) | 159 | + console.log('focus push') |
160 | this.waiting.push(param); | 160 | this.waiting.push(param); |
161 | } | 161 | } |
162 | } | 162 | } |
-
Please register or login to post a comment