diff --git a/src/views/pages/richedit/all.vue b/src/views/pages/richedit/all.vue index 6ce188f..262645c 100644 --- a/src/views/pages/richedit/all.vue +++ b/src/views/pages/richedit/all.vue @@ -360,6 +360,41 @@ {{ scope.row.score }} + + + + + + 风险性 + + + + + + 全部 + 无敏 + 低敏 + 中敏 + 高敏 + + + + + + + + {{ scope.row.politicalSensitivity >= 0 && scope.row.politicalSensitivity < 40 ? '无敏' : '' }} + + + {{ scope.row.politicalSensitivity >= 40 && scope.row.politicalSensitivity < 70 ? '低敏' : '' }} + + + {{ scope.row.politicalSensitivity >= 70 && scope.row.politicalSensitivity < 85 ? '中敏' : '' }} + + + {{ scope.row.politicalSensitivity >= 85 ? '高敏' : '' }} + + @@ -801,6 +836,12 @@ function handleCommand(val) { getData(); } +function handleCommand2(val) { + form.value.politicalSensitivity = val; + getData(); +} + + function handleCommandRating(val) { form.value.rating = val; getData();