wareOptions.js 451 B

12345678910111213141516171819202122232425262728
  1. import { getWarehouse } from "@/api/system"
  2. export default {
  3. data() {
  4. return {
  5. wareOptions: []
  6. }
  7. },
  8. methods: {
  9. getWareOptions(storehouseId, orgId) {
  10. this.wareOptions = []
  11. return getWarehouse({
  12. storehouseId, orgId
  13. }).then(resp => {
  14. if (resp.data) {
  15. this.wareOptions = resp.data.map(d => {
  16. return {
  17. text: d.warehouseName,
  18. value: d.warehouseId,
  19. raw: d,
  20. }
  21. })
  22. }
  23. })
  24. },
  25. }
  26. }