图书馆综合管理系统
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.

27 lines
506 B

7 months ago
  1. import request from '@/utils/request'
  2. export function add(data) {
  3. return request({
  4. url: 'api/bookBasice/editCollectionLocation',
  5. method: 'post',
  6. data
  7. })
  8. }
  9. export function edit(data) {
  10. return request({
  11. url: 'api/bookBasice/editCollectionLocation',
  12. method: 'post',
  13. data
  14. })
  15. }
  16. export function del(ids) {
  17. return request({
  18. url: 'api/bookBasice/delCollectionLocation',
  19. method: 'post',
  20. data: ids
  21. })
  22. }
  23. export default { add, edit, del }