Rap 原分销系统代码Web
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bbd6c58f2d7147db65c02c0992bec98071b2b051.svn-base 334B

5 달 전
123456789101112131415161718192021
  1. import request from '@/utils/request'
  2. export function del(ids) {
  3. return request({
  4. url: 'api/deployHistory',
  5. method: 'delete',
  6. data: ids
  7. })
  8. }
  9. /**
  10. * 版本回退
  11. * @param data 选中行
  12. */
  13. export function reducte(data) {
  14. return request({
  15. url: 'api/deploy/serverReduction',
  16. method: 'post',
  17. data
  18. })
  19. }