1.0
zss
2023-11-15 a96e9c262ebadc2e7e731b28aa5035b0dd2a7aad
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
<template>
  <div class="mod-config">
    <basic-container>
      <el-row>
        <el-col :span="6">
          <gen-form @updateList="updateList"></gen-form>
        </el-col>
        <el-col :span="18">
          <gen-list ref="listPage"></gen-list>
        </el-col>
      </el-row>
    </basic-container>
  </div>
</template>
 
<script>
import GenForm from '@/views/huawei/code19gen/form'
import GenList from '@/views/huawei/code19gen/list'
export default {
  name: 'index',
  components: { GenList, GenForm },
  data() {
    return {}
  },
  methods: {
    updateList() {
      this.$refs.listPage.getData()
    }
  }
}
</script>
 
<style scoped></style>