铜仁打卡修改完成
This commit is contained in:
34
project/tongren/AppSignInfo/AppSignInfo.vue
Normal file
34
project/tongren/AppSignInfo/AppSignInfo.vue
Normal file
@@ -0,0 +1,34 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user