surprise
2024-04-17 f560ccccd3878497339daeee3241a81c263898f7
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>