|
@@ -262,13 +262,13 @@ export default {
|
|
|
requestUrl: "",
|
|
|
selectionType: "select",
|
|
|
comparison: "saleNumber",
|
|
|
- columnIndexs: [0,1,2,7,8,9, 10, 11, 12, 13, 14, 15, 16, 17]
|
|
|
+ columnIndexs: [0, 1, 2, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
|
|
|
},
|
|
|
option2: {
|
|
|
// 表格请求数据的地址
|
|
|
requestUrl: "",
|
|
|
comparison: "saleNumber",
|
|
|
- columnIndexs: [0,1,6,7,8, 9, 10, 11, 12, 13, 14, 15, 16]
|
|
|
+ columnIndexs: [0, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
|
|
|
},
|
|
|
option4: {
|
|
|
// 表格请求数据的地址
|
|
@@ -564,7 +564,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
if (e1.includes("车序号")) {
|
|
|
- if (isNumber(e[e1])) {
|
|
|
+ if (typeof e[e1] != "undefined" && isNumber(e[e1])) {
|
|
|
map.truckNo = e[e1];
|
|
|
} else {
|
|
|
throw new Error(
|