@@ -949,7 +949,9 @@ function ext_getSplitProperty(dataKey, propKey, splitChar, index, dftValue) {
rst[idx] = splitArr[0]; // 把业务带进来了 !_!
}
} else {
- rst[idx] = dftValue;
+ if (index === 1) {
+ rst[idx] = splitArr[0]; // 把业务带进来了 !_!
+ } else rst[idx] = dftValue;