[bugfix] 修复Area组件边界条件时报错

This commit is contained in:
rex 2018-09-19 17:19:55 +08:00 committed by neverland
parent 19a89d38d2
commit 81e6e93bdd

View File

@ -60,6 +60,11 @@ create({
const { value } = event.detail;
const { pickerValue, displayColumns } = this.data;
const index = pickerValue.findIndex((item, index) => item !== value[index]);
// 没有变更 或 选中项序号小于0 不处理
if (index < 0 || value[index] < 0) {
return;
}
const values = displayColumns[index];
this.code = values[value[index]].code;