feeDetailConfigApi.js 595 Bytes
import request from '@/utils/request'
import { getCommunityId } from '@/api/community/communityApi'

export function listFeeConfigs(params) {
  return new Promise((resolve, reject) => {
    request({
      url: '/feeConfig.listFeeConfigs',
      method: 'get',
      params: {
        ...params,
        communityId: getCommunityId()
      }
    }).then(response => {
      const res = response.data
      if (res.code == 0) {
        resolve(res)
      } else {
        reject(new Error(res.msg || 'Failed to list fee configs'))
      }
    }).catch(error => {
      reject(error)
    })
  })
}