From f05c9703c5688d5de8847ebfe504447586cb544d Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 8 Apr 2022 18:37:13 +0800 Subject: [PATCH] BUG 28972 --- .../creditScore/scoreRules/AppScoreRules.vue | 36 +++++++++---------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/project/xiushan/apps/creditScore/scoreRules/AppScoreRules.vue b/project/xiushan/apps/creditScore/scoreRules/AppScoreRules.vue index 90f8fd10..bb73a3f0 100644 --- a/project/xiushan/apps/creditScore/scoreRules/AppScoreRules.vue +++ b/project/xiushan/apps/creditScore/scoreRules/AppScoreRules.vue @@ -11,14 +11,14 @@ v-model="search.classification" @change="search.current = 1, getList()" placeholder="请选择分类" - :selectList="dict.getDict('atWillReportType')"> + :selectList="dict.getDict('classification')"> - - - - - - + + + + + + - - - - - + + + + + - @@ -189,13 +189,9 @@ export default { }, total: 10, colConfigs: [ - { - prop: "classification", label: "类型", width: 168, - formart: (classification) => - this.dict.getLabel("atWillReportType", classification), - }, + {prop: "classification", label: "类型", width: 168, dict: 'classification'}, {prop: "ruleDescription", label: "规则说明", width: 390}, - {prop: "upperLimit", label: "每天获取次数",align: 'center'}, + {prop: "upperLimit", label: "每天获取次数", align: 'center'}, {slot: "integral", label: "分值", width: 70}, { prop: "ruleStatus", @@ -267,7 +263,7 @@ export default { }, created() { - this.dict.load(["classification", "integralIntegralType", "integralRuleStatus", 'atWillReportType']).then(() => { + this.dict.load(["classification", "integralIntegralType", "integralRuleStatus"]).then(() => { this.getList(); }); },