diff --git a/project/shandong10086/apps/shandong/AppIntegralAudit/components/Detail.vue b/project/shandong10086/apps/shandong/AppIntegralAudit/components/Detail.vue index 8fa6e754..e7338e60 100644 --- a/project/shandong10086/apps/shandong/AppIntegralAudit/components/Detail.vue +++ b/project/shandong10086/apps/shandong/AppIntegralAudit/components/Detail.vue @@ -175,7 +175,7 @@ this.form.auditRuleId = '' this.instance.post(`/app/appvillagerintegralrule/list?size=1000&classification=${e}`).then(res => { if (res?.code == 0) { - this.ruleList = res.data.records.map(v => { + this.ruleList = res.data.records.filter(v => v.ruleStatus === '1').map(v => { return { dictName: v.ruleName, dictValue: v.id,