融资需求池 页面完成
This commit is contained in:
		| @@ -0,0 +1,38 @@ | ||||
| <template> | ||||
|   <section class="AppFinancingNeeds"> | ||||
|     <component :is="currentComponent" :instance="instance" :dict="dict" :permissions="permissions"/> | ||||
|   </section> | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
|  | ||||
| import NeedsDetail from "./needsDetail"; | ||||
| import NeedsList from "./needsList"; | ||||
|  | ||||
| export default { | ||||
|   name: "AppFinancingNeeds", | ||||
|   components: {NeedsList, NeedsDetail}, | ||||
|   label: "融资需求", | ||||
|   props: { | ||||
|     instance: Function, | ||||
|     dict: Object, | ||||
|     permissions: Function | ||||
|   }, | ||||
|   computed: { | ||||
|     currentComponent() { | ||||
|       return !!this.$route.query.id ? NeedsDetail : NeedsList | ||||
|     } | ||||
|   }, | ||||
|   data() { | ||||
|     return {} | ||||
|   }, | ||||
|   created() { | ||||
|     this.dict.load("enterpriseName") | ||||
|   } | ||||
| } | ||||
| </script> | ||||
|  | ||||
| <style lang="scss" scoped> | ||||
| .AppFinancingNeeds { | ||||
| } | ||||
| </style> | ||||
		Reference in New Issue
	
	Block a user