Blame view

src/api/fee/feeDetailConfigApi.js 480 Bytes
f80ea09a   wuxw   加入费用详情
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  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
0b0e0aab   wuxw   费用详情页面开发完成
15
  
f80ea09a   wuxw   加入费用详情
16
          resolve(res)
0b0e0aab   wuxw   费用详情页面开发完成
17
  
f80ea09a   wuxw   加入费用详情
18
19
20
21
22
      }).catch(error => {
        reject(error)
      })
    })
  }