MrShi
4 天以前 4fabfe4dbd2eb28d07a4350597d314958cc1c281
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import request from '../../utils/request'
 
// 查询
export function fetchList (data) {
  return request.post('/business/wxBill/page', data, {
    trim: true
  })
}
 
// 手动同步
export function syncWxBill (data) {
  return request.post('/business/wxBill/syncWxBill', data, {
    trim: true
  })
}