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(); }); },