Blame view

src/api/cards/cards.js 463 Bytes
8b40a4fc   刘淇   会员卡
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  import request from '@/utils/request'
  
  
  //   查询用户已购买的会员卡
  export function queryVipCardsByCustId(params) {
    return request({
      url: 'parkvip/queryVipCardsByCustId',
      method: 'post',
      data: params
    })
  }
  
  
  //   根据组织id查询区域卡/时域卡规则信息
  export function queryVipAreaCardByOrgId(params) {
    return request({
      url: 'vipAreaCardRule/queryVipAreaCardByOrgId',
      method: 'post',
      data: params
    })
  }