xiangpei
2025-05-13 4c4995771ce83925a2d69dedc11c4404d9b77875
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<template>
  <div class="mix-model">
    <!-- 左侧 -->
    <div class="left-card">
      <left :data="data" />
    </div>
    <!-- 右侧 -->
    <div class="right-card">
      <right :data="data" />
    </div>
  </div>
</template>
 
<script>
import left from './mixs/mix-goods'
import right from './mixs/mix-brand'
export default {
  name: "mixModel",
  data() {
    return {}
  },
  props: {
    data: {
      type: Object,
      default: {}
    }
  },
  components: {
    left,
    right
  },
  mounted() {
 
  },
  methods: {}
}
</script>
 
<style scoped lang="scss">
.mix-model{
  display: flex;
  justify-content:space-between;
}
.left-card,.right-card{
  width: 584px;
  height: 344px;
  border-radius: 10px;
  opacity: 1;
  background: #FFFFFF;
  box-shadow: 0px 1px 13px 0px #E5E5E5;
  position: relative;
}
</style>