heyujie
2022-07-11 fd3acb28d3907caec733cbf270e687859902727c
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
<template>
  <div class="product">
    <!-- 页头 -->
    <IndexHeader :opacity="false"></IndexHeader>
    <!-- 面包屑 -->
    <div class="heart">
      <el-breadcrumb separator=">">
        <el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
        <el-breadcrumb-item>全部产品</el-breadcrumb-item>
      </el-breadcrumb>
    </div>
 
    <!-- 主要内容 -->
    <ProductContent></ProductContent>
 
    <!-- 页尾 -->
    <Footer :isBlack="true"></Footer>
  </div>
</template>
 
<script>
import IndexHeader from "@/components/IndexHeader";
import ProductContent from "@/views/product/components/ProductContent";
import Footer from "@/components/Footer";
export default {
  components: {
    IndexHeader,
    ProductContent,
    Footer,
  },
};
</script>
 
<style lang="scss" scoped>
.product {
  background-color: rgb(243, 245, 248);
 
  .el-breadcrumb {
    margin-top: 48px;
    margin-bottom: 24px;
 
    ::v-deep span {
      color: #666;
    }
  }
}
</style>