|
@@ -402,6 +402,10 @@ func (item *LuckySheetData) GetTableDataByLuckySheetDataStr() (selfTableData Tab
|
|
for columnIndex := 0; columnIndex < lenColumn; columnIndex++ {
|
|
for columnIndex := 0; columnIndex < lenColumn; columnIndex++ {
|
|
isDelete := true
|
|
isDelete := true
|
|
for _, v := range tableDataList {
|
|
for _, v := range tableDataList {
|
|
|
|
+ //如果一列都没有,说明是上面几行是空行,没有数据
|
|
|
|
+ if len(v) <= 0 {
|
|
|
|
+ continue
|
|
|
|
+ }
|
|
if v[columnIndex].Monitor != `` {
|
|
if v[columnIndex].Monitor != `` {
|
|
isDelete = false
|
|
isDelete = false
|
|
flag = true
|
|
flag = true
|