소스 검색

fix:管理规则判断

zqbao 7 달 전
부모
커밋
73603ab416
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      services/excel/luck_sheet_table.go

+ 1 - 1
services/excel/luck_sheet_table.go

@@ -54,7 +54,7 @@ func getCellValueByType(value string, valueType int, tableDataList [][]LuckyShee
 		}
 		if len(coordIntArr) == 2 {
 			x, y := coordIntArr[0]-1, coordIntArr[1]-1
-			conditionValue, err := strconv.ParseFloat(tableDataList[x][y].Monitor, 64)
+			conditionValue, err := strconv.ParseFloat(tableDataList[y][x].Monitor, 64)
 			if err != nil {
 				return 0, false
 			}