🐛 修复参数错误

This commit is contained in:
目棃
2024-08-18 11:29:10 +08:00
parent 170ac3b29d
commit cbadb61dd5
2 changed files with 2 additions and 3 deletions

View File

@@ -2,7 +2,6 @@
<v-chart :option="getPoolData()" autoresize />
</template>
<script lang="ts" setup>
// todo 解决引用问题
import type { EChartsOption } from "echarts";
import { PieChart } from "echarts/charts";
import {

View File

@@ -11,7 +11,7 @@
<template v-slot:item="{ item }">
<tr class="ua-gt-tr">
<td>{{ item.time }}</td>
<td>{{ getPool(item.gachaType) }}</td>
<td>{{ getPool(item.uigfType) }}</td>
<td>{{ item.type }}</td>
<td>{{ item.name }}</td>
<td>{{ item.rank }}</td>
@@ -45,7 +45,7 @@ function getPool(type: string) {
return "角色活动祈愿";
case "302":
return "武器活动祈愿";
case "400":
case "500":
return "集录祈愿";
default:
return "未知";