Browse Source

Merge remote-tracking branch 'origin/master'

main
kami 1 year ago
parent
commit
26d925e11c
  1. 3
      src/views/sensitivePerception/Model.vue
  2. 7
      src/views/sensitivePerception/ModelClue.vue

3
src/views/sensitivePerception/Model.vue

@ -783,7 +783,10 @@ function goClue() {
background: #e1e5ff; background: #e1e5ff;
cursor: pointer; cursor: pointer;
} }
white-space: nowrap;
text-overflow: ellipsis;
} }
overflow: auto;
} }
.model-card { .model-card {
background: #f6f7ff; background: #f6f7ff;

7
src/views/sensitivePerception/ModelClue.vue

@ -229,8 +229,11 @@ watch(
); );
watch( watch(
() => query.value.modelIds, () => query.value.modelIds,
() => { (newVal, oldVal) => {
getList(); if (newVal !== oldVal) {
query.value.current = 1;
getList();
}
} }
); );

Loading…
Cancel
Save