63 lines
1.2 KiB
Vue
63 lines
1.2 KiB
Vue
<template>
|
|
<div class="AppHealthReport">
|
|
<keep-alive :include="['List']">
|
|
<component ref="component" :is="component" @change="onChange" :params="params" :instance="instance" :dict="dict"></component>
|
|
</keep-alive>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import List from './components/List.vue'
|
|
import Detail from './components/Detail.vue'
|
|
|
|
export default {
|
|
name: 'AppIntegralAudit',
|
|
label: '积分审核(三涧溪)',
|
|
|
|
components: {
|
|
List,
|
|
Detail
|
|
},
|
|
|
|
props: {
|
|
instance: Function,
|
|
dict: Object,
|
|
permissions: Function
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
component: 'List',
|
|
params: {}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onChange (data) {
|
|
if (data.type === 'Detail') {
|
|
this.component = 'Detail'
|
|
this.isShowDetail = true
|
|
this.params = data.params
|
|
}
|
|
|
|
if (data.type === 'list') {
|
|
this.component = 'List'
|
|
this.params = data.params
|
|
|
|
this.$nextTick(() => {
|
|
if (data.isRefresh) {
|
|
this.$refs.component.getList()
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.AppHealthReport {
|
|
height: 100%;
|
|
}
|
|
</style>
|