123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <template>
- <div class="ranking-panel">
- <div class="panel-title">
- <div class="title">单台设备累计借用次数排名</div>
- <!-- <div class="more">更多</div> -->
- </div>
- <div class="panel-header">
- <el-row :gutter="24">
- <el-col :span="6">
- <el-select v-model="borrowType" clearable placeholder="借用类型" style="width: 140px;" @change="fetchRanking">
- <el-option label="全部" value="all" />
- <el-option label="常规借用" value="regular" />
- <el-option label="课堂借用" value="classroom" />
- <el-option label="特殊借用" value="special" />
- </el-select>
- </el-col>
- <el-col :span="12">
- <el-date-picker v-model="dateRange" type="daterange" start-placeholder="开始日期" end-placeholder="结束日期" clearable
- @change="fetchRanking" />
- </el-col>
- <el-col :span="6">
- <el-select multiple clearable v-model="deviceTagIds" placeholder="标签名" style="margin-left: 30%; width: 100px;"
- @change="fetchRanking">
- <el-option v-for="item in labelType" :key="item.id" :label="item.name" :value="item.id" >
- <template #default>
- <el-checkbox
- :label="item.name"
- :checked="deviceTagIds.includes(item.id)"
- >
- {{ item.name }}
- </el-checkbox>
- </template>
- </el-option>
- </el-select>
- </el-col>
- </el-row>
- </div>
- <el-table v-if="rankingData.length" :data="rankingData" style="width: 100%; margin-top: 20px; height: 350px"
- max-height="500">
- <el-table-column type="index" label="排名" width="60" />
- <el-table-column prop="device_name" label="设备名" />
- <!-- <el-table-column prop="device_name" label="标签名">
- <template #default="scope">
- <el-tag v-for="tag in scope.row.device_tags" :key="tag" :type="tag.type">{{ tag.name }}</el-tag>
- </template>
- </el-table-column> -->
- <el-table-column prop="device_code" label="设备编号" />
- <el-table-column prop="borrow_count" label="借用次数" />
- <!-- <el-table-column prop="total_quantity" label="累计借用册数" /> -->
- </el-table>
- <div v-else class="empty-tip">暂无数据</div>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, onMounted } from 'vue'
- import * as api from '../api'
- import { GetList } from '../../devicelabel/api'
- import { Session } from '/@/utils/storage';
- interface RankingItem {
- user_id: number
- user_name: string
- user_code: string
- borrow_count: number
- total_quantity: number
- }
- const borrowType = ref('all')
- const dateRange = ref<[string, string] | null>(null)
- const keyword = ref('')
- const rankingData = ref<RankingItem[]>([])
- // const deviceTagId = ref('')
- const deviceTagIds = ref<number[]>([])
- const fetchRanking = async () => {
- const params: Record<string, any> = {
- type: borrowType.value
- }
- if (dateRange.value) {
- params.start = dateRange.value[0]
- params.end = dateRange.value[1]
- }
- if (keyword.value) {
- params.keyword = keyword.value
- }
- // if (deviceTagId.value) {
- // params.tag_id = deviceTagId.value
- // }
- if (deviceTagIds.value.length) {
- params.tag_id = deviceTagIds.value
- // console.log("params.tag_id::",params.tag_id)
- }
- const res = await api.GetBorrowRanking(params)
- if (res.code === 2000) {
- rankingData.value = res.data.borrow_count_ranking
- } else {
- rankingData.value = []
- }
- }
- const labelType = ref([])
- const getList = async () => {
- const res = await GetList({
- page: 1,
- page_size: 20,
- })
- if (res.code === 2000) {
- labelType.value = res.data
- }
- }
- onMounted(() => {
- fetchRanking()
- if(Session.get('userInfo').username =='平台管理员') return
- getList()
- })
- </script>
- <style scoped>
- .ranking-panel {
- width: 100%;
- padding: 16px;
- background: #fff;
- border-radius: 4px;
- }
- .panel-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16px;
- }
- .panel-title .title {
- font-size: 16px;
- font-weight: 500;
- color: #333;
- }
- .panel-title .more {
- font-size: 14px;
- color: #999;
- cursor: pointer;
- }
- .panel-header {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- margin-bottom: 16px;
- }
- .empty-tip {
- text-align: center;
- color: #999;
- padding: 20px;
- }
- :deep(.el-table) {
- border: none !important;
- }
- :deep(.el-table th) {
- background-color: #f5f7fa;
- color: #606266;
- font-weight: 400;
- border-bottom: 1px solid #EBEEF5;
- }
- :deep(.el-table td) {
- color: #606266;
- }
- :deep(.el-table--border) {
- border: none;
- }
- :deep(.el-table__inner-wrapper::before) {
- display: none;
- }
- </style>
|