Merge branch 'sxy' into dev

This commit is contained in:
孙肖扬 2025-03-05 17:14:03 +08:00
commit 8dbbe69e74

View File

@ -6,7 +6,6 @@ import (
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"net/url"
"time" "time"
"github.com/360EntSecGroup-Skylar/excelize" "github.com/360EntSecGroup-Skylar/excelize"
@ -201,7 +200,7 @@ func ExportRegister(c *gin.Context) {
httpType = model.HttpType httpType = model.HttpType
} }
var exportUrl string var exportUrl string
exportUrl = fmt.Sprintf("%s%s/api/static/%s", httpType, c.Request.Host, url.PathEscape(exportFileName)) exportUrl = fmt.Sprintf("%s%s/static/%s", httpType, c.Request.Host, exportFileName)
response.ResponseQuickMsg(c, msg.Ok, resp.Msg, map[string]string{ response.ResponseQuickMsg(c, msg.Ok, resp.Msg, map[string]string{
"exportUrl": exportUrl, "exportUrl": exportUrl,
}) })