Blame view

src/api/fee/feeDetailRoomApi.js 465 Bytes
f80ea09a   wuxw   加入费用详情
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  import request from '@/utils/request'
  import { getCommunityId } from '@/api/community/communityApi'
  
  export function queryRooms(params) {
    return new Promise((resolve, reject) => {
      request({
        url: '/room.queryRooms',
        method: 'get',
        params: {
          ...params,
          communityId: getCommunityId()
        }
      }).then(response => {
        const res = response.data
          resolve(res)
      }).catch(error => {
        reject(error)
      })
    })
  }