@@ -11,7 +11,7 @@
import Detail from './components/Detail.vue'
export default {
- name: 'AppIntegralAudit',
+ name: 'AppPartyIntegralAudit',
label: '积分审核(三涧溪)',
components: {
@@ -56,7 +56,7 @@
diff --git a/project/sanjianxi/apps/AppPartyMemberScore/AppPartyScore.vue b/project/sanjianxi/apps/AppPartyMemberScore/AppPartyMemberScore.vue
similarity index 85%
rename from project/sanjianxi/apps/AppPartyMemberScore/AppPartyScore.vue
rename to project/sanjianxi/apps/AppPartyMemberScore/AppPartyMemberScore.vue
index 7949e685..2f8c8df1 100644
--- a/project/sanjianxi/apps/AppPartyMemberScore/AppPartyScore.vue
+++ b/project/sanjianxi/apps/AppPartyMemberScore/AppPartyMemberScore.vue
@@ -1,5 +1,5 @@
-
@@ -9,7 +9,7 @@ import PsList from "./psList";
import PsDetail from "./psDetail";
export default {
- name: "AppPartyScore",
+ name: "AppPartyMemberScore",
components: {PsDetail, PsList},
label: "党员积分(三涧溪)",
props: {
@@ -29,7 +29,7 @@ export default {
diff --git a/project/sanjianxi/apps/AppPartyScoreManage/AppScoreManage.vue b/project/sanjianxi/apps/AppPartyScoreManage/AppPartyScoreManage.vue
similarity index 94%
rename from project/sanjianxi/apps/AppPartyScoreManage/AppScoreManage.vue
rename to project/sanjianxi/apps/AppPartyScoreManage/AppPartyScoreManage.vue
index 8493b302..477655b5 100644
--- a/project/sanjianxi/apps/AppPartyScoreManage/AppScoreManage.vue
+++ b/project/sanjianxi/apps/AppPartyScoreManage/AppPartyScoreManage.vue
@@ -1,5 +1,5 @@
-
+
@@ -9,7 +9,6 @@
-
@@ -22,7 +21,7 @@ import { mapState } from 'vuex'
import scoreChange from "./scoreChange";
export default {
- name: 'AppScoreManage',
+ name: 'AppPartyScoreManage',
label: "积分维护(三涧溪)",
components: { pointsDetails, scoreChange},
props: {
@@ -72,4 +71,5 @@ export default {
diff --git a/project/sanjianxi/apps/AppPartyScoreRules/AppScoreRules.vue b/project/sanjianxi/apps/AppPartyScoreRules/AppPartyScoreRules.vue
similarity index 95%
rename from project/sanjianxi/apps/AppPartyScoreRules/AppScoreRules.vue
rename to project/sanjianxi/apps/AppPartyScoreRules/AppPartyScoreRules.vue
index c0f9799b..2bd29d80 100644
--- a/project/sanjianxi/apps/AppPartyScoreRules/AppScoreRules.vue
+++ b/project/sanjianxi/apps/AppPartyScoreRules/AppPartyScoreRules.vue
@@ -1,5 +1,5 @@
-
+
@@ -21,7 +21,7 @@ import automaticallyAddCent from "./components/automaticallyAddCent.vue";
import { mapState } from 'vuex'
export default {
- name: 'AppScoreRules',
+ name: 'AppPartyScoreRules',
label: "积分规则(三涧溪)",
components: { applyForIntegral, automaticallyAddCent},
props: {
@@ -71,5 +71,5 @@ export default {
From 6ecad306268e78bc897553797aa86da78fbe7081 Mon Sep 17 00:00:00 2001
From: shijingjing <1789544664@qq.com>
Date: Thu, 30 Jun 2022 10:14:10 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E7=BC=96=E8=BE=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../AppPartyScoreRules/components/automaticallyAddCent.vue | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/project/sanjianxi/apps/AppPartyScoreRules/components/automaticallyAddCent.vue b/project/sanjianxi/apps/AppPartyScoreRules/components/automaticallyAddCent.vue
index bf1c0312..25c7b9be 100644
--- a/project/sanjianxi/apps/AppPartyScoreRules/components/automaticallyAddCent.vue
+++ b/project/sanjianxi/apps/AppPartyScoreRules/components/automaticallyAddCent.vue
@@ -209,13 +209,12 @@ export default {
},
toEdit(row) {
this.form = this.$copy(row)
- let {event, type} = this.form,
- dict = 'partyIntegralRuleEvent' + event
- this.$dict.load(dict).then(() => {
+ let {event, type} = this.form
+ this.$dict.load('partyIntegralDetailType').then(() => {
this.form.eventType = [event, type]
this.cacheOps = this.$dict.getDict('partyIntegralRuleEvent').map(e => {
if (e.dictValue == event) {
- e.children = this.dict.getDict(dict).map(d => ({...d, leaf: true}))
+ e.children = this.$dict.getDict('integralRuleEvent4').map(d => ({...d, leaf: true}))
}
return e
})