闫增涛
2024-05-30 c74a9956a74475199b23bf37385135cae1076f85
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
<template>
  <div class="chapter" num="14">
    <div class="page-box" page="286">
      <div v-if="showPageList.indexOf(286) > -1">
        <div class="padding-96">
          <p class="center" id="a019">
            <img
              class="img-a"
              alt=""
              src="../../../assets/images/chapterThirteen/fl.jpg"
            />
          </p>
          <p class="center">
            <el-image :src="tableOne" :preview-src-list="[tableOne]" />
          </p>
        </div>
      </div>
    </div>
  </div>
</template>
 
<script>
export default {
  name: "chapterThirteen",
  components: {},
  props: {
    showPageList: {
      type: Array,
    },
  },
  data() {
    return {
      tableOne: require("../../../assets/images/chapterThirteen/0291-1.jpg"),
    };
  },
};
</script>
 
<style lang="less" scoped></style>