diff --git a/src/views/sensitivePerception/Model.vue b/src/views/sensitivePerception/Model.vue index 2fce083..7bc0c98 100644 --- a/src/views/sensitivePerception/Model.vue +++ b/src/views/sensitivePerception/Model.vue @@ -783,7 +783,10 @@ function goClue() { background: #e1e5ff; cursor: pointer; } + white-space: nowrap; + text-overflow: ellipsis; } + overflow: auto; } .model-card { background: #f6f7ff; diff --git a/src/views/sensitivePerception/ModelClue.vue b/src/views/sensitivePerception/ModelClue.vue index 782e7ba..048b921 100644 --- a/src/views/sensitivePerception/ModelClue.vue +++ b/src/views/sensitivePerception/ModelClue.vue @@ -229,8 +229,11 @@ watch( ); watch( () => query.value.modelIds, - () => { - getList(); + (newVal, oldVal) => { + if (newVal !== oldVal) { + query.value.current = 1; + getList(); + } } );