rule.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <div class="product-specifications">
  3. <view class="">{{all}}</view>
  4. </div>
  5. </template>
  6. <script>
  7. import { nextTick } from 'vue';
  8. export default {
  9. data() {
  10. return {
  11. arr: [
  12. ['黑色', '白色', '蓝色'],
  13. ['8GB', '16GB', '32GB'],
  14. ['大', '中', '小']
  15. ],
  16. all: [],
  17. allArray: [{
  18. name: '颜色',
  19. size: ['白色', '红色', '黑色'],
  20. }, {
  21. name: '尺寸',
  22. size: ['X', 'XL', 'XXL']
  23. }],
  24. rule:[]
  25. };
  26. },
  27. mounted() {
  28. let colorArray = ['白色', '红色', '黑色'] //选择的颜色
  29. let sizeArray = ['X', 'XL', 'XXL'] //选择的尺寸
  30. //组合数组 格式为:[[],[]]
  31. this.fun()
  32. },
  33. methods: {
  34. // fun() {
  35. // var obj = {}
  36. // this.allArray.forEach((item) => {
  37. // item.size.forEach((a) => {
  38. // obj = {[item.name]: a}
  39. // obj[item.name]
  40. // console.log(this.allArray);
  41. // })
  42. // })
  43. // },
  44. fun(){
  45. this.all = this.allArray.map(item => {
  46. // 将每个size数组中的元素转换为对象形式
  47. const transformedSize = item.size.map(size => ({ [item.name]: size }));
  48. // 返回更新后的对象
  49. return {
  50. size: transformedSize
  51. };
  52. });
  53. this.$nextTick(()=>{
  54. const rule = this.cartesianProductOf(this.all); //调用笛卡尔积方法
  55. })
  56. // console.log(this.all);
  57. },
  58. cartesianProductOf: function() { //笛卡尔积
  59. return Array.prototype.reduce.call(arguments, function(a, b) {
  60. var ret = [];
  61. console.log(a);
  62. a.forEach(function(a) {
  63. b.forEach(function(b) {
  64. ret.push(a.concat([b]));
  65. });
  66. });
  67. return ret;
  68. }, [
  69. []
  70. ]);
  71. },
  72. }
  73. }
  74. </script>
  75. <style scoped>
  76. .spec-item {
  77. margin: 10px;
  78. }
  79. .combinations-list {
  80. margin-top: 20px;
  81. }
  82. .combination-item {
  83. margin: 5px 0;
  84. }
  85. </style>