65 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="AppActivitiesManagement">
 | 
						|
    <keep-alive :include="['List']">
 | 
						|
      <component ref="component" :is="component" :permissions="permissions " @change="onChange" :params="params" :instance="instance" :dict="dict"></component>
 | 
						|
    </keep-alive>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
  import List from './components/List'
 | 
						|
  import Detail from './components/Detail'
 | 
						|
 | 
						|
  export default {
 | 
						|
    name: 'AppResidentIntegrating',
 | 
						|
    label: '居民积分',
 | 
						|
 | 
						|
    props: {
 | 
						|
      instance: Function,
 | 
						|
      dict: Object,
 | 
						|
      permissions: Function
 | 
						|
    },
 | 
						|
 | 
						|
    data () {
 | 
						|
      return {
 | 
						|
        component: 'List',
 | 
						|
        params: {},
 | 
						|
        include: []
 | 
						|
      }
 | 
						|
    },
 | 
						|
 | 
						|
    components: {
 | 
						|
      List,
 | 
						|
      Detail
 | 
						|
    },
 | 
						|
 | 
						|
    methods: {
 | 
						|
      onChange (data) {
 | 
						|
        if (data.type === 'Detail') {
 | 
						|
          this.component = 'Detail'
 | 
						|
          this.params = data.params
 | 
						|
        }
 | 
						|
 | 
						|
        if (data.type === 'List') {
 | 
						|
          this.component = 'List'
 | 
						|
          this.params = data.params
 | 
						|
 | 
						|
          this.$nextTick(() => {
 | 
						|
            if (data.isRefresh) {
 | 
						|
              this.$refs.component.getList()
 | 
						|
            }
 | 
						|
          })
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss">
 | 
						|
.AppActivitiesManagement {
 | 
						|
  height: 100%;
 | 
						|
  background: #F3F6F9;
 | 
						|
  overflow: auto;
 | 
						|
}
 | 
						|
</style>
 |