Blame view

store-pc/src/api/lqXmzl.js 276 Bytes
b5df6609   “wangming”   ```
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  import request from '@/utils/request'
  
  export function getXmzlList(data) {
    return request({
      url: '/api/Extend/LqXmzl',
      method: 'get',
      data
    })
  }
  
  export function getXmzlInfo(id) {
    return request({
      url: `/api/Extend/LqXmzl/${id}`,
      method: 'get'
    })
  }