zouyu
2023-11-10 65cd94b74a6dd5bae9bc2c3a98bc781d97099cb6
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">
          <bind-form @updateList="updateList"></bind-form>
        </el-col>
        <el-col :span="18">
          <bind-list ref="listPage"></bind-list>
        </el-col>
      </el-row>
    </basic-container>
  </div>
</template>
 
<script>
import BindForm from '@/views/huawei/code19bind/form'
import BindList from '@/views/huawei/code19bind/list'
export default {
  name: 'index',
  components: { BindList, BindForm },
  data() {
    return {}
  },
  methods: {
    updateList() {
      this.$refs.listPage.getData()
    }
  }
}
</script>
 
<style scoped></style>