45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script>
 | |
| import authAdd from "./authAdd.vue";
 | |
| import authList from "./authList.vue";
 | |
| const certificates = [
 | |
|   {label: "身份证(正面)", prop: "frontCard"},
 | |
|   {label: "身份证(反面)", prop: "reverseCard"},
 | |
|   {label: "营业执照", prop: "businessPic", permit: ["breed"]},
 | |
|   {label: "畜禽经营许可证", prop: "breedPic", permit: ["breed"]},
 | |
|   {label: "动物防疫条件许可证", prop: "prevention", permit: ["breed"]},
 | |
|   {label: "组织机构证明", prop: "orgPic", permit: ["bank", "insurance"]},
 | |
| ]
 | |
| export default {
 | |
|   name: "AppAuthManage",
 | |
|   label: "认证审核",
 | |
|   props: {
 | |
|     instance: Function,
 | |
|     dict: Object,
 | |
|     permissions: Function
 | |
|   },
 | |
|   computed: {
 | |
|     currentPage() {
 | |
|       let {hash} = this.$route
 | |
|       return hash == "#add" ? authAdd : authList
 | |
|     }
 | |
|   },
 | |
|   data(){
 | |
|     return {
 | |
|       certificates
 | |
|     }
 | |
|   }
 | |
| }
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <section class="AppAuthManage">
 | |
|     <component :is="currentPage" v-bind="$props"/>
 | |
|   </section>
 | |
| </template>
 | |
| 
 | |
| <style scoped lang="scss">
 | |
| .AppAuthManage {
 | |
|   height: 100%;
 | |
| }
 | |
| </style>
 |