Commit c2ad5de6 by 陈超

T

parent 2841c39b
...@@ -221,17 +221,22 @@ ...@@ -221,17 +221,22 @@
}, },
onAreaChange: function(picker, values) { onAreaChange: function(picker, values) {
console.log("Values = ")
console.log(values)
console.log("Selected = ")
console.log(that.selected)
console
let that = this let that = this
let found = that.columns.filter( r => { return r.text == values[0] }) let found = that.columns.filter( r => { return r.text == values[0] })
let p = undefined let p = undefined
if(found.length > 0) { if(found.length > 0) {
p = found[0] p = found[0]
if(p.text != that.selected[0]) { if(p.text != that.selected[0]) {
that.onProvinceChange(p) that.onProvinceChange(picker, p)
return return
} }
} else { } else {
that.onProvinceChange(that.columns[0]) that.onProvinceChange(picker, that.columns[0])
return return
} }
let c = undefined let c = undefined
...@@ -239,11 +244,11 @@ ...@@ -239,11 +244,11 @@
if(found.length > 0) { if(found.length > 0) {
c = found[0] c = found[0]
if(c.text != that.selected[1]) { if(c.text != that.selected[1]) {
that.onCityChange(c) that.onCityChange(picker, c)
return return
} }
} else { } else {
that.onCityChange(p.children[0]) that.onCityChange(picker, p.children[0])
return return
} }
that.selected[2] = values[2] that.selected[2] = values[2]
......
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