44 lines
		
	
	
		
			713 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			713 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="AppHelp">
 | 
						|
    <keep-alive :include="['List']">
 | 
						|
      <component ref="component" :is="component" :params="params" :instance="instance" :dict="dict"></component>
 | 
						|
    </keep-alive>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
  import List from './components/List'
 | 
						|
  export default {
 | 
						|
    name: 'AppIntegratingRules',
 | 
						|
    label: '积分规则',
 | 
						|
 | 
						|
    props: {
 | 
						|
      instance: Function,
 | 
						|
      dict: Object
 | 
						|
    },
 | 
						|
 | 
						|
    data () {
 | 
						|
      return {
 | 
						|
        component: 'List',
 | 
						|
        params: {},
 | 
						|
        include: []
 | 
						|
      }
 | 
						|
    },
 | 
						|
 | 
						|
    components: {
 | 
						|
      List
 | 
						|
    },
 | 
						|
 | 
						|
    methods: {
 | 
						|
    }
 | 
						|
  }
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss">
 | 
						|
  .AppHelp {
 | 
						|
    height: 100%;
 | 
						|
    background: #F3F6F9;
 | 
						|
    overflow: auto;
 | 
						|
  }
 | 
						|
</style>
 |