BJ_Casino_Rank/src/components/BJ_Casino_Magnification.vue

69 lines
1.8 KiB
Vue
Raw Normal View History

2022-04-10 00:30:43 +08:00
<script setup lang="ts">
import { ref } from "vue";
2022-04-16 23:40:11 +08:00
import { BJ_Casino_Data } from "../script/BJ_Casino_Data";
import { BJ_Casino_Magnification } from "../script/BJ_Casino_Magnification";
2022-04-10 00:30:43 +08:00
2022-04-16 23:40:11 +08:00
const props = defineProps<{ BJ_Casino: BJ_Casino_Data }>()
2022-04-20 11:17:33 +08:00
let Title = ref("我4標題");
2022-04-10 23:06:20 +08:00
let RankData = ref([]);
2022-04-10 00:30:43 +08:00
const self = {
Title: Title,
RankData: RankData,
BJ_Casino: props.BJ_Casino,
2022-04-10 00:30:43 +08:00
}
2022-04-16 23:40:11 +08:00
const Script = new BJ_Casino_Magnification(self);
2022-04-10 23:06:20 +08:00
2022-04-10 00:30:43 +08:00
</script>
<template>
<h1>
<!-- <el-button type="primary" @click.native="() => { BJ_Casino.PrevWeek() }" size="large" round>&lt;&lt;上一周
</el-button> -->
{{ Title }}
<!-- <el-button type="success" @click.native="() => { BJ_Casino.NextWeek() }" size="large" round>下一周&gt;&gt;
</el-button> -->
</h1>
<div class="d-flex justify-content-center">
<table class="table table-striped table-info table-hover">
<thead>
<tr>
<th align="left">排名</th>
<th align="left">名稱</th>
<th align="left">廳別</th>
<th align="left">倍率</th>
<th align="left">機台</th>
<th align="left">桌號</th>
<th align="left">日期</th>
</tr>
</thead>
<tbody>
2022-04-10 23:06:20 +08:00
<tr v-for="(item, index) in RankData" :key="index">
<td>
<font size="5"><b>{{ item[0] }}</b></font>
</td>
<td align="left">
<font size="5"><b>{{ item[2][1] }}</b></font>
</td>
<td align="left">
<font size="5"><b>{{ item[5][1] }}</b></font>
</td>
<td align="left">
<font size="5"><b>{{ Math.floor(item[1]) }}</b></font>
</td>
<td align="left">
<font size="5"><b>{{ item[3][0] }}</b></font>
</td>
<td align="left">
<font size="5"><b>{{ item[3][1] }}</b></font>
</td>
<td align="left">
<font size="5"><b>{{ item[4] }}</b></font>
</td>
</tr>
2022-04-10 23:06:20 +08:00
</tbody>
</table>
</div>
2022-04-10 00:30:43 +08:00
</template>