information.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. import request from '@/utils/request'
  2. // 查询资产信息列表
  3. export function listInformation(query) {
  4. return request({
  5. url: '/asset/information/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询资产信息列表
  11. export function select(query) {
  12. return request({
  13. url: '/asset/information/select',
  14. method: 'get',
  15. params: query
  16. })
  17. }
  18. // 查询资产信息列表
  19. export function listInformation2() {
  20. return request({
  21. url: '/visitor/asset/list',
  22. method: 'get'
  23. })
  24. }
  25. // 查询资产信息详细
  26. export function getInformation(id) {
  27. return request({
  28. url: '/asset/information/' + id,
  29. method: 'get'
  30. })
  31. }
  32. // 新增资产信息
  33. export function addInformation(data) {
  34. return request({
  35. url: '/asset/information',
  36. method: 'post',
  37. data: data
  38. })
  39. }
  40. // 修改资产信息
  41. export function updateInformation(data) {
  42. return request({
  43. url: '/asset/information',
  44. method: 'put',
  45. data: data
  46. })
  47. }
  48. // 删除资产信息
  49. export function delInformation(id) {
  50. return request({
  51. url: '/asset/information/' + id,
  52. method: 'delete'
  53. })
  54. }
  55. // 标签打印
  56. export function printLabel(data) {
  57. return request({
  58. url: '/asset/information/print',
  59. method: 'post',
  60. data: data
  61. })
  62. }
  63. // 单个标签打印
  64. export function singlePrintLabel(data) {
  65. return request({
  66. url: '/asset/information/print/single',
  67. method: 'post',
  68. data: data
  69. })
  70. }
  71. //自定义字段
  72. export function getDiy() {
  73. return request({
  74. url: '/asset/information/getDiy',
  75. method: 'get'
  76. })
  77. }
  78. export function setDiy(data) {
  79. return request({
  80. url: '/asset/information/setDiy',
  81. method: 'post',
  82. data: data
  83. })
  84. }