fix:添加finyx

This commit is contained in:
lz-ui 2025-10-29 15:17:26 +08:00
parent 4360ee9416
commit 2438a83bb7

View File

@ -102,7 +102,7 @@
<el-radio-button value="FINYX_F">finyx-AI</el-radio-button>
<el-radio-button value="D3_F">D3-index</el-radio-button>
</el-radio-group>
<div v-if="activeName === 'FINYX_F'">
<div v-show="activeName === 'FINYX_F'">
<el-table border :data="scope.row.farmatReportResults['FINYX_F']" :show-header="false">
<el-table-column>
<template #default="item">
@ -116,7 +116,7 @@
</el-table-column>
</el-table>
</div>
<div v-if="activeName === 'D3_F'">
<div v-show="activeName === 'D3_F'">
<el-table border :data="scope.row.farmatReportResults['D3_F']" :show-header="false">
<el-table-column>
<template #default="item">
@ -138,7 +138,7 @@
<el-table-column label="结果标记" align="center" class-name="small-padding fixed-width" width="280">
<template #default="scope">
<el-button
v-if="showBtn(scope.row, 'FINYX_F')"
v-show="showBtn(scope.row, 'FINYX_F')"
link
type="primary"
icon="Edit"
@ -146,7 +146,7 @@
:class="[matchIdType.id === scope.row.matchId && matchIdType.type === 'FINYX_F' ? 'has-active' : '']"
>finyx-AI</el-button>
<el-button
v-if="showBtn(scope.row, 'D3_F')"
v-show="showBtn(scope.row, 'D3_F')"
link
type="primary"
icon="Edit"
@ -155,6 +155,38 @@
>D3-index</el-button>
</template>
</el-table-column>
<el-table-column label="Finyx预测结果" width="300" align="center">
<el-table-column label="常" width="50" align="center">
<template #default="scope">
<span :class="['icon-d3', tableColumnActive(scope.row, 'FINYX_F', 'resultFlag')]"></span>
</template>
</el-table-column>
<el-table-column label="让" width="50" align="center">
<template #default="scope">
<span :class="['icon-d3', tableColumnActive(scope.row, 'FINYX_F', 'hhadResultFlag')]"></span>
</template>
</el-table-column>
<el-table-column label="分" width="50" align="center">
<template #default="scope">
<span :class="['icon-d3', tableColumnActive(scope.row, 'FINYX_F', 'scoreResultFlag')]"></span>
</template>
</el-table-column>
<el-table-column label="总" width="50" align="center">
<template #default="scope">
<span :class="['icon-d3', tableColumnActive(scope.row, 'FINYX_F', 'goalsResultFlag')]"></span>
</template>
</el-table-column>
<el-table-column label="半" width="50" align="center">
<template #default="scope">
<span :class="['icon-d3', tableColumnActive(scope.row, 'FINYX_F', 'halfFullResultFlag')]"></span>
</template>
</el-table-column>
<el-table-column label="亚" width="50" align="center">
<template #default="scope">
<span :class="['icon-d3', tableColumnActive(scope.row, 'FINYX_F', 'asianHandicapFlag')]"></span>
</template>
</el-table-column>
</el-table-column>
<el-table-column label="D3预测结果" width="300" align="center">
<el-table-column label="常" width="50" align="center">
<template #default="scope">
@ -433,7 +465,6 @@ function getList() {
}));
// reportResults
pageList.value = farmatReportResults(res)
console.log(pageList.value)
total.value = response.total
}).finally(() => {
loading.value = false