Commit f1939cac authored by 高天阳's avatar 高天阳

eslint问题修复

parent 61bad672
...@@ -145,11 +145,11 @@ ...@@ -145,11 +145,11 @@
self.showColumns.push(tmp) self.showColumns.push(tmp)
}) })
} else { } else {
self.showColumns = []; self.showColumns = []
// 将字符串对象进行替换处理 // 将字符串对象进行替换处理
_.each(self.schema['columns'], function(column) { _.each(self.schema['columns'], function(column) {
_.each(self.columns,function(item){ _.each(self.columns, function(item) {
if(column.codeCamel===item){ if (column.codeCamel === item) {
const tmp = JSON.parse(JSON.stringify(column)) const tmp = JSON.parse(JSON.stringify(column))
self.showColumns.push(tmp) self.showColumns.push(tmp)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment