index.js 982 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import mutations from "./mutations.js";
  2. import actions from "./actions.js";
  3. import getters from "./getters.js";
  4. export default {
  5. namespaced: true,
  6. state() {
  7. return {
  8. benchMap: {},
  9. benchList: [],
  10. filterBenchList: [],
  11. benchImgList:[],
  12. statusOptions:[{
  13. value: 'Status',
  14. label: ''
  15. }],
  16. projectOptions:[{
  17. value: 'Project',
  18. label: ''
  19. }],
  20. carlineOptions:[{
  21. value: 'Carline',
  22. label: ''
  23. }],
  24. variantOptions:[{
  25. value: 'Variant',
  26. label: ''
  27. }],
  28. clusterOptions:[{
  29. value: 'Cluster',
  30. label: ''
  31. }],
  32. marketOptions:[{
  33. value: 'Market',
  34. label: ''
  35. }],
  36. resultOptions: [{
  37. value: 'Result',
  38. label: ''
  39. }],
  40. TBTypeOptions: [{
  41. value: 'TBType',
  42. label: ''
  43. }],
  44. isOpenSquare: false,
  45. isOpen3d: false
  46. };
  47. },
  48. mutations,
  49. actions,
  50. getters,
  51. };