design.ts 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import { RadioGroupProps } from "ant-design-vue";
  2. import { CollocationModule } from "../..";
  3. export const designStore = CollocationModule.store({
  4. state: () => ({
  5. designDetail: {
  6. matMatchs: [],
  7. prodMatchs: [],
  8. } as any,
  9. }),
  10. getters: {
  11. menuOptions(state) {
  12. const options: RadioGroupProps["options"] = [
  13. { label: "换料", value: "mat" },
  14. { label: "换单品", value: "product" },
  15. ];
  16. const sourceData: any = {
  17. mat: state.designDetail.matMatchs,
  18. product: [],
  19. };
  20. state.designDetail.prodMatchs?.forEach((element: ProductMatching) => {
  21. console.log("element: ", element);
  22. const key = element.category || "product";
  23. if (!sourceData[key]) {
  24. sourceData[key] = [];
  25. options.push({ label: key, value: key });
  26. }
  27. sourceData[key].push(element);
  28. });
  29. return {
  30. options: options.concat({ label: "+", value: "add" }),
  31. sourceData,
  32. };
  33. },
  34. },
  35. actions: {
  36. setDesignDetail(data: IStyle) {
  37. this.store.designDetail = data;
  38. },
  39. addMatchCategory(data) {
  40. if (!this.store.designDetail.prodMatchs)
  41. this.store.designDetail.prodMatchs = [];
  42. this.store.designDetail.prodMatchs?.push(data);
  43. },
  44. },
  45. });