lixuliang
2024-04-18 419ce8d31a69c59d5796567173c1f8dc438652fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
  <div class="wgglleft">
    <el-row>
      <el-col :span="24">
        <czll />
      </el-col>
    </el-row>
  </div>
</template>
 
<script>
import czll from "./czll.vue";
 
export default {
  components: {
    czll
  },
};
</script>
 
<style scoped>
</style>