mengshukeji
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/global/api.js
|
|
|
@ -1850,8 +1850,8 @@ export function getRangeHtml(options = {}) { |
|
|
|
let cpdata = ""; |
|
|
|
let colgroup = ""; |
|
|
|
|
|
|
|
rowIndexArr = rowIndexArr.sort(); |
|
|
|
colIndexArr = colIndexArr.sort(); |
|
|
|
rowIndexArr = rowIndexArr.sort((a, b) => a - b); |
|
|
|
colIndexArr = colIndexArr.sort((a, b) => a - b); |
|
|
|
|
|
|
|
for (let i = 0; i < rowIndexArr.length; i++) { |
|
|
|
let r = rowIndexArr[i]; |
|
|
|
|