SpringBoot+Vue实现跨境电商借卖网站
@CrossOrigin
@DeleteMapping(value = "/prods/{id}")
@ResponseBody
public Object DeleteOne(@PathVariable("id") int id) throws Exception{
productService.deleteById(id);
return "OK";
}
@CrossOrigin
@GetMapping(value = "/prods/{id}")
@ResponseBody
public Object GetOne(@PathVariable("id") int id) throws Exception{
return productService.getOne(id);
}
@CrossOrigin
@PutMapping(value = "/prods/{id}")
public String UpdateOne(@RequestBody Product product) throws Exception{
productService.addOrUpdate(product);
return "OK";
}
前端部分代码:
手机:
地址:
备注:
总共应付:{ { costAll }}元
总共应付:{ { costAll }}元4.项目演示视频 链接:https://pan.baidu.com/s/1ys_w__qMlMzqzWSZhpPcHA 提取码:0d23
