Zlpt_Portal/src/http/api/rent-termination/index.ts

14 lines
276 B
TypeScript

import { post, get, put } from 'http/index'
/**
* 退租管理页面接口
*/
/**
*
* @param data 查询参数 获取退租列表
* @returns
*/
export const getRentTerminationListApi = (data: any = {}) => {
return get(`/material-mall/lease-repair/list`, data)
}