39 lines
729 B
Vue
39 lines
729 B
Vue
<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>
|