This commit is contained in:
shijingjing
2022-06-30 10:05:00 +08:00
parent 584eec0e78
commit 6de41e883a
4 changed files with 12 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
<template> <template>
<div class="AppHealthReport"> <div class="AppPartyIntegralAudit">
<keep-alive :include="['List']"> <keep-alive :include="['List']">
<component ref="component" :is="component" @change="onChange" :params="params" :instance="instance" :dict="dict"></component> <component ref="component" :is="component" @change="onChange" :params="params" :instance="instance" :dict="dict"></component>
</keep-alive> </keep-alive>
@@ -11,7 +11,7 @@
import Detail from './components/Detail.vue' import Detail from './components/Detail.vue'
export default { export default {
name: 'AppIntegralAudit', name: 'AppPartyIntegralAudit',
label: '积分审核(三涧溪)', label: '积分审核(三涧溪)',
components: { components: {
@@ -56,7 +56,7 @@
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.AppHealthReport { .AppPartyIntegralAudit {
height: 100%; height: 100%;
} }
</style> </style>

View File

@@ -1,5 +1,5 @@
<template> <template>
<section class="AppPartyScore"> <section class="AppPartyMemberScore">
<component :is="currentPage" v-bind="$props"/> <component :is="currentPage" v-bind="$props"/>
</section> </section>
</template> </template>
@@ -9,7 +9,7 @@ import PsList from "./psList";
import PsDetail from "./psDetail"; import PsDetail from "./psDetail";
export default { export default {
name: "AppPartyScore", name: "AppPartyMemberScore",
components: {PsDetail, PsList}, components: {PsDetail, PsList},
label: "党员积分(三涧溪)", label: "党员积分(三涧溪)",
props: { props: {
@@ -29,7 +29,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.AppPartyScore { .AppPartyMemberScore {
height: 100%; height: 100%;
} }
</style> </style>

View File

@@ -1,5 +1,5 @@
<template> <template>
<ai-list> <ai-list class="AppPartyScoreManage">
<template slot="title"> <template slot="title">
<ai-title title="积分维护" :isShowBottomBorder="false" :instance="instance" :isShowArea="false" v-model="areaId" <ai-title title="积分维护" :isShowBottomBorder="false" :instance="instance" :isShowArea="false" v-model="areaId"
@change="changeArea"></ai-title> @change="changeArea"></ai-title>
@@ -9,7 +9,6 @@
<el-tab-pane v-for="(tab,i) in tabs" :key="i" :label="tab.label"> <el-tab-pane v-for="(tab,i) in tabs" :key="i" :label="tab.label">
<component :is="tab.comp" v-if="currIndex === String(i)" :ref="tab.name" <component :is="tab.comp" v-if="currIndex === String(i)" :ref="tab.name"
:areaId="areaId" :instance="instance" :dict="dict" :permissions="permissions"/> :areaId="areaId" :instance="instance" :dict="dict" :permissions="permissions"/>
<!-- -->
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</template> </template>
@@ -22,7 +21,7 @@ import { mapState } from 'vuex'
import scoreChange from "./scoreChange"; import scoreChange from "./scoreChange";
export default { export default {
name: 'AppScoreManage', name: 'AppPartyScoreManage',
label: "积分维护(三涧溪)", label: "积分维护(三涧溪)",
components: { pointsDetails, scoreChange}, components: { pointsDetails, scoreChange},
props: { props: {
@@ -72,4 +71,5 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.AppPartyScoreManage {}
</style> </style>

View File

@@ -1,5 +1,5 @@
<template> <template>
<ai-list class="AppScoreRules"> <ai-list class="AppPartyScoreRules">
<template slot="title"> <template slot="title">
<ai-title title="积分规则" :isShowBottomBorder="false" :instance="instance" :isShowArea="false" v-model="areaId" <ai-title title="积分规则" :isShowBottomBorder="false" :instance="instance" :isShowArea="false" v-model="areaId"
@change="changeArea"></ai-title> @change="changeArea"></ai-title>
@@ -21,7 +21,7 @@ import automaticallyAddCent from "./components/automaticallyAddCent.vue";
import { mapState } from 'vuex' import { mapState } from 'vuex'
export default { export default {
name: 'AppScoreRules', name: 'AppPartyScoreRules',
label: "积分规则(三涧溪)", label: "积分规则(三涧溪)",
components: { applyForIntegral, automaticallyAddCent}, components: { applyForIntegral, automaticallyAddCent},
props: { props: {
@@ -71,5 +71,5 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.AppScoreRules {} .AppPartyScoreRules {}
</style> </style>