Authored by qinchao

fix: 修改地址时候,如果地址信息没有变化,返回的提示为空串,如果有变化,返回修改成功4

... ... @@ -143,7 +143,7 @@ public class BuyerOrderController {
if(changed){
info = "修改成功";
}
ApiResponse rtn = new ApiResponse(200,info,null);
ApiResponse rtn = new ApiResponse(200,info,"修改地址成功");
rtn.setMessage(info);
return rtn;
}
... ...