35 lines
526 B
Vue
35 lines
526 B
Vue
<template>
|
|
<section class="AppSignInfo">
|
|
<component :is="currentPage" v-bind="$props"/>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import List from "./list";
|
|
|
|
export default {
|
|
name: "AppSignInfo",
|
|
components: {List},
|
|
label: "签到管理",
|
|
props: {
|
|
instance: Function,
|
|
dict: Object,
|
|
permissions: Function
|
|
},
|
|
computed: {
|
|
currentPage() {
|
|
return List
|
|
}
|
|
},
|
|
created() {
|
|
this.dict.load('wxSignStatus')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.AppSignInfo {
|
|
height: 100%;
|
|
}
|
|
</style>
|