You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
207 B
JavaScript

import request from '@/utils/request.js'
// 取窗口号
export const takeTicket = (params = {}) => {
return request({
tag: 'pad.ticket',
path: '/take',
method: 'POST',
body: params
})
}