Quellcode durchsuchen

Merge branch 'bzq1/execl-edit_cf' of eta_server/eta_api into debug

鲍自强 vor 8 Monaten
Ursprung
Commit
b61fe18f29
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      controllers/target.go

+ 1 - 1
controllers/target.go

@@ -3509,7 +3509,7 @@ func (this *TargetController) ExcelDataAdd() {
 				continue
 			}
 			// 存储数据
-			for j := 1; j < len(req.Data[i]); j++ {
+			for j := 1; j <= len(secNameList); j++ {
 				closeVal := req.Data[i][j].(map[string]interface{})
 				if item, ok := secNameToDateMap[secNameList[j-1]]; ok {
 					tmpVal, ok := closeVal["m"].(string)