农经大屏
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.

пре 7 месеци
1234567891011121314151617181920
  1. import request from '@/utils/request'
  2. //审核
  3. export function approveAddBatch(data) {
  4. return request({
  5. url: '/system/approve/addBatch',
  6. method: 'post',
  7. data: data
  8. })
  9. }
  10. // 审核记录
  11. export function getApprovalRecords(query) {
  12. return request({
  13. url: '/system/approve/list',
  14. method: 'get',
  15. params: query
  16. })
  17. }