index.ts 1.37 KB
import request from '../request'
import { deleteEmptyParam } from '@/utils/tool'

/**
 * @description 物业费列表
 * @function propertyFeeList
 */
export const propertyFeeList = async ( params: any ) => {
  let res: any = await request({
    method: 'get',
    url: '/notify/list',
    params: deleteEmptyParam(params)
  })
  return res
}

/**
 * @description 删除物业费
 * @function propertyFeeDelete
 */
export const propertyFeeDelete = async (params: any) => {
  let res: any = await request({
    method: 'get',
    url: '/notify/list',
    params: deleteEmptyParam(params)
  })
  return res
}

/**
 * @description 物业费现金缴费、撤回
 * @function propertyFeeShift
 */
 export const propertyFeeShift = async (params: any) => {
  let res: any = await request({
    method: 'get',
    url: '/notify/list',
    params: deleteEmptyParam(params)
  })
  return res
}

/**
 * @description 物业费编辑
 * @function propertyFeeSave
 */
 export const propertyFeeSave = async (params: any) => {
  let res: any = await request({
    method: 'get',
    url: '/notify/list',
    params: deleteEmptyParam(params)
  })
  return res
}

/**
 * @description 物业费确认
 * @function propertyFeeSure
 */
 export const propertyFeeSure = async (params: any) => {
  let res: any = await request({
    method: 'get',
    url: '/notify/list',
    params: deleteEmptyParam(params)
  })
  return res
}