| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <a-row type="flex" :gutter="16" class="container">
- <a-col :md="5" :sm="24">
- <dictionary-info-left v-model="currentOrgCode"/>
- </a-col>
- <a-col :md="24-5" :sm="24">
- <dictionary-info-right v-model="currentOrgCode"/>
- </a-col>
- </a-row>
- </template>
- <script>
- import dictionaryInfoLeft from './modules/dictionaryInfoLeft'
- import dictionaryInfoRight from './modules/dictionaryInfoRight'
- export default {
- name: 'dictionaryInfo',
- components: { dictionaryInfoLeft, dictionaryInfoRight },
- data() {
- return {
- description: '字典管理',
- currentOrgCode: ''
- }
- },
- methods: {
- },
- destroyed: function () {
- // 离开页面生命周期函数
- console.log('离开字典管理');
- localStorage.removeItem("dictId")
- },
- }
- </script>
- <style scoped>
- @import '~@assets/less/common.less';
- .container{
- background-color: #f6f6f6;
- }
- </style>
|