From 30cf71affd5149a1310d84f658b028d267beee8b Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期三, 11 六月 2025 17:30:22 +0800 Subject: [PATCH] 动态溯源(编写中) --- src/components/search/OptionMission.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/components/search/OptionMission.vue b/src/components/search/OptionMission.vue index f58d98f..fec314e 100644 --- a/src/components/search/OptionMission.vue +++ b/src/components/search/OptionMission.vue @@ -31,7 +31,7 @@ type: String, modelValue: String }, - emits: ['update:modelValue', 'change'], + emits: ['update:modelValue', 'initOver'], data() { return { index: undefined @@ -46,6 +46,7 @@ if (res.success && res.data.length > 0) { this.index = 0; this.handleChange(0); + this.$emit('initOver'); } }); }, @@ -59,6 +60,7 @@ } else { this.index = 0; this.handleChange(0); + this.$emit('initOver'); } } }; -- Gitblit v1.9.3