columns.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. export default [
  2. {
  3. type: "expand",
  4. _slot_: "expand",
  5. label: "",
  6. },
  7. {
  8. prop: "company_no",
  9. label: "仓库业务公司编码",
  10. width: "150",
  11. },
  12. {
  13. prop: "company_name",
  14. label: "仓库业务公司名称",
  15. 'min-width':"180"
  16. },
  17. {
  18. prop: "supplier_code",
  19. label: "仓库所在公司编码",
  20. width: "150",
  21. },
  22. {
  23. prop: "supplier_name",
  24. label: "仓库所在公司名称",
  25. 'min-width':"180"
  26. },
  27. {
  28. prop: "wsm_code",
  29. label: "仓库编码",
  30. width:'180'
  31. },
  32. {
  33. prop: "wsm_name",
  34. label: "仓库名称",
  35. 'min-width':"100"
  36. },
  37. {
  38. prop: "total_stock",
  39. label: "当前库存",
  40. },
  41. {
  42. prop: "wait_in_stock",
  43. label: "待入库",
  44. },
  45. {
  46. prop: "wait_out_stock",
  47. label: "待出库",
  48. width: "80px",
  49. },
  50. {
  51. prop: "usable_stock",
  52. label: "可用库存",
  53. // sortable: true,
  54. },
  55. {
  56. prop: "intra_stock",
  57. label: "在途库存",
  58. // sortable: true,
  59. },
  60. // {
  61. // prop: "warn_stock",
  62. // label: "预警库存",
  63. // },
  64. ]