|
@@ -166,7 +166,7 @@
|
|
|
</template>
|
|
|
</Dialog>
|
|
|
|
|
|
- <StorePage ref="StorePageRef" @refresh="getList" />
|
|
|
+ <StorePage ref="StorePageRef" @refresh="handleQuery" />
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
@@ -275,7 +275,7 @@ const handleAnalysis = async ({ task_type, id, task_source, task_name }) => {
|
|
|
try {
|
|
|
const { results } = await talentGatherApi.taskAnalysis(params)
|
|
|
message.success('解析成功')
|
|
|
- getList()
|
|
|
+ handleQuery()
|
|
|
|
|
|
StorePageRef.value.open(task_type, { results }, id)
|
|
|
|
|
@@ -297,7 +297,7 @@ const handleCreateTask = async (query) => {
|
|
|
try {
|
|
|
await talentGatherApi.createTask(query)
|
|
|
message.success('任务创建成功')
|
|
|
- getList()
|
|
|
+ handleQuery()
|
|
|
} finally {
|
|
|
analysisLoading.value = false
|
|
|
webOriginList.value = []
|