Blame view

src/api/fee/feeDetailContractApi.js 590 Bytes
f80ea09a   wuxw   加入费用详情
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  import request from '@/utils/request'
  import { getCommunityId } from '@/api/community/communityApi'
  
  export function queryContract(params) {
    return new Promise((resolve, reject) => {
      request({
        url: '/contract/queryContract',
        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 query contract'))
        }
      }).catch(error => {
        reject(error)
      })
    })
  }