36 lines
638 B
Vue
36 lines
638 B
Vue
<script>
|
|
import add from "./add.vue";
|
|
import list from "./list.vue";
|
|
|
|
export default {
|
|
name: "AppWeightManage",
|
|
label: "体重管理",
|
|
props: {
|
|
instance: Function,
|
|
dict: Object,
|
|
permissions: Function
|
|
},
|
|
computed: {
|
|
currentPage() {
|
|
let {hash} = this.$route
|
|
return hash == "#add" ? add : list
|
|
}
|
|
},
|
|
created() {
|
|
this.dict.load( "yesOrNo", "category", "variety", "dataSources")
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<section class="AppWeightManage">
|
|
<component :is="currentPage" v-bind="$props"/>
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.AppWeightManage {
|
|
height: 100%;
|
|
}
|
|
</style>
|