71 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="AppSpecialDisabled">
 | |
|     <keep-alive :include="['List']">
 | |
|       <component ref="component" :is="component" @change="onChange" :params="params" :instance="instance" :dict="dict"></component>
 | |
|     </keep-alive>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
|   import List from './components/List.vue'
 | |
|   import Detail from './components/Detail.vue'
 | |
|   import Add from './components/Add.vue'
 | |
| 
 | |
|   export default {
 | |
|     name: 'AppSpecialMental',
 | |
|     label: '精神病人',
 | |
| 
 | |
|     components: {
 | |
|       Add,
 | |
|       List,
 | |
|       Detail
 | |
|     },
 | |
| 
 | |
|     props: {
 | |
|       instance: Function,
 | |
|       dict: Object,
 | |
|       permissions: Function
 | |
|     },
 | |
| 
 | |
|     data () {
 | |
|       return {
 | |
|         component: 'List',
 | |
|         params: {}
 | |
|       }
 | |
|     },
 | |
| 
 | |
|     methods: {
 | |
|       onChange (data) {
 | |
|         if (data.type === 'Detail') {
 | |
|           this.component = 'Detail'
 | |
|           this.isShowDetail = true
 | |
|           this.params = data.params
 | |
|         }
 | |
| 
 | |
|         if (data.type === 'Add') {
 | |
|           this.component = 'Add'
 | |
|           this.isShowDetail = true
 | |
|           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" scoped>
 | |
|   .AppSpecialDisabled {
 | |
|     height: 100%;
 | |
|   }
 | |
| </style>
 |