Blame view

ant-design-vue-jeecg/src/views/system/AddressList.vue 662 Bytes
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
<template>
  <a-row type="flex" :gutter="16">
    <a-col :md="5" :sm="24">
      <address-list-left v-model="currentOrgCode"/>
    </a-col>
    <a-col :md="24-5" :sm="24">
      <address-list-right v-model="currentOrgCode"/>
    </a-col>
  </a-row>
</template>

<script>
肖超群 authored
13
14
import AddressListLeft from './modules/AddressListLeft'
import AddressListRight from './modules/AddressListRight'
肖超群 authored
15
肖超群 authored
16
17
18
19
20
21
22
23
24
export default {
  name: 'AddressList',
  components: {AddressListLeft, AddressListRight},
  data() {
    return {
      description: '通讯录页面',
      currentOrgCode: ''
    }
  },
肖超群 authored
25
肖超群 authored
26
27
  methods: {}
}
肖超群 authored
28
29
</script>
<style scoped>
肖超群 authored
30
@import '~@assets/less/common.less';
肖超群 authored
31
</style>