소스 검색

修改签到BUG

zhou.xiaoning 3 년 전
부모
커밋
c28fcc3d1c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      controllers/ferroalloy/score.go

+ 2 - 1
controllers/ferroalloy/score.go

@@ -6,6 +6,7 @@ import (
 	"mtp2_if/logger"
 	"mtp2_if/models"
 	"net/http"
+	"strconv"
 
 	"github.com/gin-gonic/gin"
 )
@@ -26,7 +27,7 @@ func Signin(c *gin.Context) {
 
 	// 判断Token与UserID是否对应
 	userID, exists := c.Get("requserid")
-	if !exists || userID != m.USERID {
+	if !exists || userID != strconv.Itoa(int(m.USERID)) {
 		a.Response(http.StatusBadRequest, e.ERROR_OPERATION_FAILED, nil)
 		return
 	}