|
@@ -1127,7 +1127,8 @@ public class PaymentController extends BaseController {
|
|
|
* @String
|
|
|
*/
|
|
|
@RequestMapping("/service")
|
|
|
- public String service(Model model){
|
|
|
+ public String service(Model model,String know){
|
|
|
+ model.addAttribute("know", know!=null?know:"");
|
|
|
return "weixin/vip/service";
|
|
|
}
|
|
|
|
|
@@ -1142,7 +1143,7 @@ public class PaymentController extends BaseController {
|
|
|
* @String
|
|
|
*/
|
|
|
@RequestMapping("/serviceVipBuy_{libId}")
|
|
|
- public String serviceVipBuy(Model model,@PathVariable String libId){
|
|
|
+ public String serviceVipBuy(Model model,@PathVariable String libId,String know){
|
|
|
|
|
|
//通用的收费标准,150/月
|
|
|
List<LibSalesPrice> specieList=libSalesPriceService.findByLibIdAndSpeciesAndType("S008");
|
|
@@ -1158,6 +1159,7 @@ public class PaymentController extends BaseController {
|
|
|
model.addAttribute("user", user);
|
|
|
model.addAttribute("tbLibJoin", tbLibJoin);
|
|
|
model.addAttribute("specieList", specieList);
|
|
|
+ model.addAttribute("know", know!=null?know:"");
|
|
|
return "weixin/vip/serviceVipBuy";
|
|
|
}
|
|
|
|