数字平昌

This commit is contained in:
yanran200730
2023-05-17 15:12:17 +08:00
parent 57120ca85f
commit c90cdf7678
44 changed files with 9092 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<template>
<div class="AppHelp">
<keep-alive :include="['List']">
<component ref="component" :is="component" :params="params" :instance="instance" :dict="dict"></component>
</keep-alive>
</div>
</template>
<script>
import List from './components/List'
export default {
name: 'AppIntegratingRules',
label: '积分规则',
props: {
instance: Function,
dict: Object
},
data () {
return {
component: 'List',
params: {},
include: []
}
},
components: {
List
},
methods: {
}
}
</script>
<style lang="scss">
.AppHelp {
height: 100%;
background: #F3F6F9;
overflow: auto;
}
</style>