Commit 966addb2 by lizefeng

优化批量修改

parent 559b739f
......@@ -563,11 +563,11 @@ namespace AutoTurnOver.Controllers
try
{
new Services.ConfigServices().BatchStockUp(data);
return new JsonResult("");
return new JsonResult(new { success = true});
}
catch (Exception ex)
{
return new JsonResult(ex.Message);
return new JsonResult(new { success = false ,message = ex.Message });
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment