1234567891011121314151617181920212223242526 |
- import {
- request
- } from '@/request/request.js';
- /*
- * 分页获取发票列表
- *
- *
- */
- export function getInvoiceListByPage(data) {
- return request({
- url: `/api/payment/invoice/${data.currPage}/${data.pageSize}`,
- method: 'post',
- data: data
- })
- }
- /*
- * 通过id获取发票详情
- *
- *
- */
- export function getInvoiceDetailById(id) {
- return request({
- url: `/api/payment/invoice/${id}/`,
- method: 'get',
- })
- }
|