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

123456789101112131415161718192021
  1. import request from '@/utils/request'
  2. export const exportExcel = (params) => {
  3. return request({
  4. url: 'dk/record/exportNew',
  5. method: 'get',
  6. params: params,
  7. timeout: 6000 * 10,
  8. responseType: 'blob'
  9. })
  10. }
  11. export function queryList(query) {
  12. return request({
  13. url: '/dk/record/list',
  14. method: 'get',
  15. params: query
  16. })
  17. }