《尚庭公寓》162集确认租约按钮没反应

时间:2024-7-24    作者:老大夫    分类: 尚庭公寓


原因

有些接口没有实现,前端拿不到数据,控制台已经报错了,所以按下去没有反应。

检查方法

F12 ---> consle控制台 ;按下按钮后会报错红字显示前端页面哪个数据没有拿到,然后检查相应的接口有没有写

我的是这个接口没有写,“根据房间id获取可选支付方式列表”,在“package com.atguigu.lease.web.app.controller.payment;”包下

取可选支付方式
  • 编写Controller层逻辑

    PaymentTypeController中增加如下内容

    @Operation(summary = "根据房间id获取可选支付方式列表")
    @GetMapping("listByRoomId")
    public Result<List<PaymentType>> list(@RequestParam Long id) {
      List<PaymentType> list = service.listByRoomId(id);
      return Result.ok(list);
    }
  • 编写Service层逻辑

    PaymentTypeService中增加如下内容

    List<PaymentType> listByRoomId(Long id);

    PaymentTypeServiceImpl中增加如下内容

    @Override
    public List<PaymentType> listByRoomId(Long id) {
      return paymentTypeMapper.selectListByRoomId(id);
    }
6.根据房间ID获取可选租期


扫描二维码,在手机上阅读

推荐阅读: