fileSupplement.js 344 B

1234567891011121314151617181920
  1. import request from '@/router/axios';
  2. export const getList = (params) => {
  3. return request({
  4. url: '/api/kd-scientific/archive/fjbczl',
  5. method: 'get',
  6. params: {
  7. ...params,
  8. }
  9. })
  10. }
  11. export const update = (row) => {
  12. return request({
  13. url: '/api/kd-scientific/archive/fjbczl',
  14. method: 'post',
  15. data: row
  16. })
  17. }