Browse Source

修改灵敏感知-问题线索,将个人风险移到风险问题中

main
sjh 1 year ago
parent
commit
dcc0f9542e
  1. 7
      src/components/model-risk-tree.vue
  2. 5
      src/views/sensitivePerception/Model.vue

7
src/components/model-risk-tree.vue

@ -78,6 +78,13 @@ function renderContent(
title: node.label + '('+node.ruleDesc+')', title: node.label + '('+node.ruleDesc+')',
}, },
node.label node.label
),
h(
"span",
{
class: 'ml-8 text-primary'
},
node.data.size ? `(${node.data.size })` : ''
) )
); );
} }

5
src/views/sensitivePerception/Model.vue

@ -668,10 +668,6 @@ onMounted(() => {
listModelClass().then((data) => { listModelClass().then((data) => {
classes.value = data; classes.value = data;
}); });
listRiskScoreRuleTree().then((data) => {
treeOptions.value = data;
});
}); });
function handleChangeClass(id) { function handleChangeClass(id) {
@ -786,7 +782,6 @@ function goClue() {
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
overflow: auto;
} }
.model-card { .model-card {
background: #f6f7ff; background: #f6f7ff;

Loading…
Cancel
Save