| | |
| | | public String detailOfCoupon(@PathVariable Integer id, Model model){ |
| | | model.addAttribute("id",id); |
| | | Coupon coupon = client.queryCouponById(id); |
| | | Integer auditStatus1 = coupon.getAuditStatus(); |
| | | model.addAttribute("state",auditStatus1); |
| | | String content = coupon.getContent(); |
| | | JSONObject jsonObject = JSONObject.parseObject(content); |
| | | String one =""; |
| | |
| | | model.addAttribute("state","未通过"); |
| | | break; |
| | | } |
| | | model.addAttribute("cover",coupon.getCover()); |
| | | model.addAttribute("productImages",coupon.getProductImages()); |
| | | return PREFIX + "TCouponExamineInfo.html"; |
| | | } |
| | | |