Files
dvcp_v2_webapp/project/qianxinan/AppSignInfo/AppSignInfo.vue
2023-02-05 06:09:30 +00:00

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>