| 123456789101112131415161718 |
- import request from '@/api'
- const openid = uni.getStorageSync('openid')
- const billService = {
- // 获取我的账单列表
- getBillList: params => request.postForm('/bill/list', {
- ...params,
- openid
- }),
- // 获取我的账单列表
- getBillDetail: id => request.postForm('/bill/info', {
- id,
- openid
- })
- }
- export default billService
|