|
@@ -945,6 +945,9 @@ function ext_getSplitProperty(dataKey, propKey, splitChar, index, dftValue) {
|
|
const splitArr = rst[idx].split(splitChar);
|
|
const splitArr = rst[idx].split(splitChar);
|
|
if (splitArr.length > index) {
|
|
if (splitArr.length > index) {
|
|
rst[idx] = splitArr[index];
|
|
rst[idx] = splitArr[index];
|
|
|
|
+ if (rst[idx].trim() === '' && index === 1) {
|
|
|
|
+ rst[idx] = splitArr[0]; // 把业务带进来了 !_!
|
|
|
|
+ }
|
|
} else {
|
|
} else {
|
|
rst[idx] = dftValue;
|
|
rst[idx] = dftValue;
|
|
}
|
|
}
|