This commit is contained in:
lwl0608 2024-06-19 21:56:57 +08:00
parent ff0c463020
commit b83aab01a7
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@ func ZoneCreateOrder(ctx *gin.Context) {
ReplyErrorMsg(ctx, "商品错误")
return
}
if len(req.Model) >= 28 {
req.Model = req.Model[:28]
}
data, ec, err := service.DefaultService.ZoneCreateOrder(ctx, req)
if ec != errcode.ErrCodeVasSrvOk {