/********************************** 控制台路由方法 **********************************/ func Index(c *gin.Context) { point := model.Point{} point.GetLast(db) obj := make(map[string]interface{}) obj["lp"] = point c.HTML(http.StatusOK, "index.html", obj) }
/*获得机要密码箱当前位置*/ func GetLocation(c *gin.Context) { point := model.Point{} point.GetLast(db) c.JSON(http.StatusOK, point) }