fix: 解决修改完配置会调用两次接口的问题

This commit is contained in:
奔跑的面条 2022-09-19 20:39:30 +08:00
parent c3d1c4312c
commit 185936467d
2 changed files with 18 additions and 23 deletions

View File

@ -96,7 +96,6 @@ import { SelectHttpType } from '../../index.d'
import { ChartDataMatchingAndShow } from '../ChartDataMatchingAndShow' import { ChartDataMatchingAndShow } from '../ChartDataMatchingAndShow'
import { useTargetData } from '../../../hooks/useTargetData.hook' import { useTargetData } from '../../../hooks/useTargetData.hook'
import { isDev, newFunctionHandle } from '@/utils' import { isDev, newFunctionHandle } from '@/utils'
import debounce from 'lodash/debounce'
const { HelpOutlineIcon, FlashIcon, PulseIcon } = icon.ionicons5 const { HelpOutlineIcon, FlashIcon, PulseIcon } = icon.ionicons5
const { targetData, chartEditStore } = useTargetData() const { targetData, chartEditStore } = useTargetData()
@ -122,27 +121,23 @@ const requestModelHandle = () => {
} }
// //
const sendHandle = debounce( const sendHandle = async () => {
async () => { if (!targetData.value?.request) return
if (!targetData.value?.request) return loading.value = true
loading.value = true try {
try { const res = await customizeHttp(toRaw(targetData.value.request), toRaw(chartEditStore.requestGlobalConfig))
const res = await customizeHttp(toRaw(targetData.value.request), toRaw(chartEditStore.requestGlobalConfig)) loading.value = false
loading.value = false if (res && res.data) {
if (res && res.data) { targetData.value.option.dataset = newFunctionHandle(res.data, targetData.value.filter)
targetData.value.option.dataset = newFunctionHandle(res.data, targetData.value.filter) showMatching.value = true
showMatching.value = true return
return
}
window['$message'].warning('数据异常,请检查参数!')
} catch (error) {
loading.value = false
window['$message'].warning('数据异常,请检查参数!')
} }
}, window['$message'].warning('数据异常,请检查参数!')
2000, } catch (error) {
{ leading: true } loading.value = false
) window['$message'].warning('数据异常,请检查参数!')
}
}
// //
const themeColor = computed(() => { const themeColor = computed(() => {

View File

@ -1,5 +1,5 @@
<template> <template>
<n-modal class="go-chart-data-request" v-model:show="modelShow" :mask-closable="false" @afterLeave="closeHandle"> <n-modal class="go-chart-data-request" v-model:show="modelShow" :mask-closable="false">
<n-card :bordered="false" role="dialog" size="small" aria-modal="true" style="width: 1000px; height: 800px"> <n-card :bordered="false" role="dialog" size="small" aria-modal="true" style="width: 1000px; height: 800px">
<template #header></template> <template #header></template>
<template #header-extra> </template> <template #header-extra> </template>
@ -19,7 +19,7 @@
<n-text> </n-text> <n-text> </n-text>
<n-tag type="primary" :bordered="false" style="border-radius: 5px"> {{ requestContentTypeObj[requestContentType] }} </n-tag> <n-tag type="primary" :bordered="false" style="border-radius: 5px"> {{ requestContentTypeObj[requestContentType] }} </n-tag>
</div> </div>
<n-button type="primary" @click="closeHandle">确认</n-button> <n-button type="primary" @click="closeHandle">保存 & 发送请求</n-button>
</n-space> </n-space>
</template> </template>
</n-card> </n-card>