This commit is contained in:
yanran200730
2022-02-25 14:21:45 +08:00
parent 5086a196f8
commit 916129957e

View File

@@ -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,