| | |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | } |
| | | // /enforce/company/log/list |
| | | export function listCompanyLog(data) { |
| | | return request({ |
| | | url: `/enforce/company/log/list`, |
| | | method: 'get', |
| | | params: data |
| | | }) |
| | | } |
| | | // /enforce/company/log/upd |
| | | export function updCompanyLog(data) { |
| | | return request({ |
| | | url: `/enforce/company/log/upd`, |
| | | method: 'post', |
| | | data: data |
| | | }) |
| | | } |
| | | // /enforce/company/log/{ids} |
| | | export function delCompanyLog(data) { |
| | | return request({ |
| | | url: `/enforce/company/log/${data.delId}`, |
| | | method: 'DELETE', |
| | | }) |
| | | } |
| | | |
| | | // // downloadQrcode |
| | | // export function downloadQrcode(data) { |
| | | // return request({ |
| | | // url: '/system/company/downloadQrcode', |
| | | // method: 'get' |
| | | // }) |
| | | // } |