ticketingCollection.js 350 B

123456789101112131415161718192021
  1. import request from '@/utils/request'
  2. // 分页查询
  3. export const pageList = (query) => {
  4. return request({
  5. url: '/order/orderInfo/getValidPageList',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 打印
  11. export const printApi = (data) => {
  12. return request({
  13. url: '/order/orderInfo/ticketout',
  14. method: 'post',
  15. data: data
  16. })
  17. }