Browse Source

Merge remote-tracking branch 'origin/master'

main
kami 1 year ago
parent
commit
26d925e11c
  1. 3
      src/views/sensitivePerception/Model.vue
  2. 5
      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;

5
src/views/sensitivePerception/ModelClue.vue

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

Loading…
Cancel
Save