You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

393 lines
12 KiB

<template>
<div class="detect-missing">
<el-card>
<el-form :model="form" label-width="100px">
<el-form-item label="证券类型">
<el-radio-group v-model="form.securityType">
<el-radio-button label="stock">股票</el-radio-button>
<el-radio-button label="future">期货</el-radio-button>
</el-radio-group>
</el-form-item>
<el-form-item label="合约类型" v-if="form.securityType === 'future'">
<el-radio-group v-model="form.contractType">
<el-radio-button label="all">所有合约</el-radio-button>
<el-radio-button label="main">主力合约</el-radio-button>
</el-radio-group>
</el-form-item>
<el-form-item label="周期">
<el-select v-model="form.periodType" style="width: 120px;">
<el-option label="日线" value="daily" />
<el-option label="1分钟" value="min1" />
<el-option label="5分钟" value="min5" />
</el-select>
</el-form-item>
<el-form-item label="开始日期">
<el-date-picker
v-model="form.startDate"
type="date"
placeholder="开始日期"
value-format="YYYYMMDD"
/>
</el-form-item>
<el-form-item label="结束日期">
<el-date-picker
v-model="form.endDate"
type="date"
placeholder="结束日期"
value-format="YYYYMMDD"
/>
</el-form-item>
<el-form-item>
<el-button type="warning" @click="handleDetectAll" :loading="detectingAll">
<el-icon><Search /></el-icon>
</el-button>
<el-button type="success" @click="handleCacheAll" :loading="cachingAll">
<el-icon><Download /></el-icon>
</el-button>
</el-form-item>
</el-form>
<el-divider content-position="left">批量检测指定代码</el-divider>
<el-form :model="form" label-width="100px">
<el-form-item label="代码列表">
<el-input
v-model="codeInput"
type="textarea"
:rows="4"
placeholder="输入代码,每行一个或逗号分隔"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="handleDetect" :loading="detecting">
<el-icon><Search /></el-icon>
</el-button>
<el-button type="success" @click="handleCache" :loading="caching" :disabled="!hasMissing">
<el-icon><Download /></el-icon>
</el-button>
</el-form-item>
</el-form>
</el-card>
<!-- 检测结果汇总 -->
<el-card class="summary-card" v-if="detectResult">
<template #header>
<span>检测结果汇总</span>
</template>
<el-row :gutter="20">
<el-col :span="6">
<el-statistic title="检测总数" :value="detectResult.total_count || 0" />
</el-col>
<el-col :span="6">
<el-statistic title="数据完整" :value="detectResult.complete_count || 0" suffix="个">
<template #suffix>
<el-tag type="success" size="small">完整</el-tag>
</template>
</el-statistic>
</el-col>
<el-col :span="6">
<el-statistic title="数据缺失" :value="detectResult.missing_count || 0" suffix="个">
<template #suffix>
<el-tag type="warning" size="small">缺失</el-tag>
</template>
</el-statistic>
</el-col>
<el-col :span="6">
<el-statistic title="检测错误" :value="detectResult.error_count || 0" suffix="个">
<template #suffix>
<el-tag type="danger" size="small">错误</el-tag>
</template>
</el-statistic>
</el-col>
</el-row>
<el-row :gutter="20" style="margin-top: 20px;">
<el-col :span="6">
<el-statistic title="检测周期" :value="detectResult.expected_days || 0" suffix="天" />
</el-col>
<el-col :span="6">
<el-statistic title="开始日期" :value="detectResult.start_date || '-'" />
</el-col>
<el-col :span="6">
<el-statistic title="结束日期" :value="detectResult.end_date || '-'" />
</el-col>
<el-col :span="6">
<el-statistic title="检测状态">
<el-tag :type="getStatusType(detectResult.status)">
{{ detectResult.status || '-' }}
</el-tag>
</el-statistic>
</el-col>
</el-row>
</el-card>
<!-- 每日数据统计 -->
<el-card class="daily-card" v-if="detectResult && detectResult.daily_stats">
<template #header>
<span>每日数据统计</span>
</template>
<el-table :data="dailyStatsList" stripe height="300">
<el-table-column prop="date" label="日期" width="120" />
<el-table-column prop="expected" label="预期数量" width="100" />
<el-table-column prop="actual" label="实际数量" width="100" />
<el-table-column prop="missing" label="缺失数量" width="100">
<template #default="{ row }">
<el-tag :type="row.missing > 0 ? 'warning' : 'success'" size="small">
{{ row.missing }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="完整率">
<template #default="{ row }">
<el-progress
:percentage="Math.round((row.actual / row.expected) * 100)"
:status="row.missing > row.expected * 0.5 ? 'exception' : row.missing > 0 ? 'warning' : 'success'"
/>
</template>
</el-table-column>
</el-table>
</el-card>
<!-- 缺失代码列表 -->
<el-card class="missing-card" v-if="detectResult && detectResult.missing_codes && detectResult.missing_codes.length > 0">
<template #header>
<span>缺失代码列表前100个</span>
</template>
<el-table :data="detectResult.missing_codes" stripe height="300">
<el-table-column prop="code" label="代码" width="120" />
<el-table-column prop="expected_count" label="预期天数" width="100" />
<el-table-column prop="actual_count" label="实际天数" width="100" />
<el-table-column prop="missing_count" label="缺失天数" width="100">
<template #default="{ row }">
<el-tag type="warning" size="small">{{ row.missing_count }}</el-tag>
</template>
</el-table-column>
<el-table-column label="缺失率">
<template #default="{ row }">
<el-progress
:percentage="Math.round(row.missing_ratio * 100)"
:status="row.missing_ratio > 0.5 ? 'exception' : 'warning'"
/>
</template>
</el-table-column>
</el-table>
</el-card>
<!-- 批量检测结果 -->
<el-card class="result-card" v-if="batchDetectResult.length > 0">
<template #header>
<span>批量检测结果</span>
</template>
<el-table :data="batchDetectResult" stripe>
<el-table-column prop="code" label="代码" width="120" />
<el-table-column prop="missingCount" label="缺失天数" width="100" />
<el-table-column label="缺失率">
<template #default="{ row }">
<el-progress
:percentage="Math.round(row.missingRatio * 100)"
:status="row.missingRatio > 0.5 ? 'exception' : 'warning'"
/>
</template>
</el-table-column>
<el-table-column label="操作" width="100">
<template #default="{ row }">
<el-button type="primary" size="small" @click="showDetail(row)">
详情
</el-button>
</template>
</el-table-column>
</el-table>
</el-card>
</div>
</template>
<script setup lang="ts">
import { ref, reactive, computed } from 'vue'
import { ElMessage } from 'element-plus'
import { detectMissingData, batchCacheData, detectAllMissingData, cacheAllMissingData } from '@/api/cache'
const detecting = ref(false)
const caching = ref(false)
const detectingAll = ref(false)
const cachingAll = ref(false)
const codeInput = ref('000001.SZ\n600000.SH')
const detectResult = ref<any>(null)
const batchDetectResult = ref<any[]>([])
const hasMissing = computed(() => batchDetectResult.value.some(r => r.missingCount > 0))
const dailyStatsList = computed(() => {
if (!detectResult.value || !detectResult.value.daily_stats) return []
return Object.entries(detectResult.value.daily_stats).map(([date, stats]) => ({
date,
expected: (stats as any).expected,
actual: (stats as any).actual,
missing: (stats as any).missing
}))
})
const form = reactive({
securityType: 'stock',
periodType: 'daily',
contractType: 'all',
startDate: getDefaultStartDate(),
endDate: getDefaultEndDate()
})
function getDefaultStartDate() {
const date = new Date()
date.setFullYear(date.getFullYear() - 1)
return formatDate(date)
}
function getDefaultEndDate() {
return formatDate(new Date())
}
function formatDate(date: Date) {
return date.toISOString().slice(0, 10).replace(/-/g, '')
}
function getStatusType(status: string) {
if (status === 'completed') return 'success'
if (status === 'running') return 'warning'
return 'danger'
}
const parseCodes = () => {
return codeInput.value
.split(/[\n,]/)
.map(c => c.trim())
.filter(c => c.length > 0)
}
const handleDetectAll = async () => {
detectingAll.value = true
detectResult.value = null
try {
const res: any = await detectAllMissingData({
security_type: form.securityType,
period_type: form.periodType,
contract_type: form.contractType,
start_date: form.startDate,
end_date: form.endDate
})
if (res.data) {
detectResult.value = res.data
if (res.data.status === 'completed') {
ElMessage.success(`检测完成:完整${res.data.complete_count}个,缺失${res.data.missing_count}个,错误${res.data.error_count}`)
} else if (res.data.status === 'failed') {
ElMessage.error(`检测失败:${res.data.error_message}`)
}
}
} catch (error) {
console.error(error)
ElMessage.error('检测失败')
} finally {
detectingAll.value = false
}
}
const handleCacheAll = async () => {
cachingAll.value = true
try {
const res: any = await cacheAllMissingData({
security_type: form.securityType,
period_type: form.periodType,
contract_type: form.contractType,
start_date: form.startDate,
end_date: form.endDate
})
if (res.data) {
ElMessage.success(`缓存任务已启动,共${res.data.total_count}个代码`)
}
} catch (error) {
console.error(error)
ElMessage.error('缓存失败')
} finally {
cachingAll.value = false
}
}
const handleDetect = async () => {
const codes = parseCodes()
if (codes.length === 0) {
ElMessage.warning('请输入代码')
return
}
detecting.value = true
try {
const res: any = await detectMissingData({
security_type: form.securityType,
period_type: form.periodType,
start_date: form.startDate,
end_date: form.endDate,
code_list: codes
})
if (res.data) {
batchDetectResult.value = res.data.missing_codes.map((item: any) => ({
code: item.code,
missingCount: item.missing_dates.length,
missingRatio: item.missing_dates.length > 0
? item.missing_dates.reduce((sum: number, d: any) => sum + d.missing_ratio, 0) / item.missing_dates.length
: 0,
details: item.missing_dates
}))
}
} catch (error) {
console.error(error)
} finally {
detecting.value = false
}
}
const handleCache = async () => {
const codes = parseCodes()
if (codes.length === 0) return
caching.value = true
try {
await batchCacheData({
security_type: form.securityType,
period_type: form.periodType,
start_date: form.startDate,
end_date: form.endDate,
code_list: codes
})
ElMessage.success('缓存任务已启动')
} catch (error) {
console.error(error)
} finally {
caching.value = false
}
}
const showDetail = (row: any) => {
console.log(row.details)
}
</script>
<style scoped>
.detect-missing {
padding: 10px;
}
.summary-card {
margin-top: 20px;
}
.daily-card {
margin-top: 20px;
}
.missing-card {
margin-top: 20px;
}
.result-card {
margin-top: 20px;
}
</style>