农经大屏
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
346 B

  1. import request from '@/utils/request'
  2. //下载模板
  3. export function DownloadTemplate(url) {
  4. return request({
  5. url: url,
  6. method: 'get'
  7. })
  8. }
  9. // 通用后台Excel导出
  10. export function exportExcelUrl(data) {
  11. return request({
  12. url: '/common/exportExcelUrl',
  13. method: 'post',
  14. data: data,
  15. })
  16. }