hi-ucs/front/src/views/capabilityCloud/components/DataResources.vue

276 lines
7.0 KiB
Vue
Raw Normal View History

2022-06-19 10:22:39 +08:00
<!--
* @Author: hisense.liangjunhua
* @Date: 2022-06-19 10:15:33
* @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-06-19 10:18:16
* @Description: 告诉大家这是什么
-->
<template>
2022-06-19 17:14:38 +08:00
<div class="data-resources">
<div class="resources-top">
<span class="title">数据资源</span>
</div>
<div class="resources-bottom">
<div class="resources-left">
<div v-for="(item, index) in resourcesLeft" :key="index">
<h3>{{ item.name }}</h3>
<h2 class="num">{{ item.num || '0' }}</h2>
</div>
<img :src="leftImg" alt="" />
</div>
<div class="resources-right">
<div class="resources-right-title">
<h3>数据赋能排行</h3>
</div>
<div class="resources-right-table">
<a-table
:data-source="assignRankings"
:columns="columns"
:pagination="false"
bordered="true"
/>
</div>
</div>
</div>
</div>
2022-06-19 10:22:39 +08:00
</template>
2022-06-19 17:14:38 +08:00
<script setup>
import { ref } from 'vue'
import { count, getRecord } from '@/api/file'
// import { abc } from './dataABC.json'
// 左侧数据
const resourcesLeft = ref([
{
name: '总数据数',
num: '',
},
{
name: '总申请次数',
num: '',
},
{
name: '满足率',
num: '',
},
])
// 右侧数据
const assignRankings = ref([
{
index: '1',
name: '0',
operation: '0',
},
{
index: '2',
name: '0',
operation: '0',
},
{
index: '3',
name: '0',
operation: '0',
},
{
index: '4',
name: '0',
operation: '0',
},
{
index: '5',
name: '0',
operation: '0',
},
])
const columns = ref([
{
title: 'Top',
dataIndex: 'index',
key: 'index',
width: '15%',
},
{
title: '名称',
dataIndex: 'name',
key: 'name',
width: '55%',
ellipsis: true,
},
{
title: '应用数',
dataIndex: 'operation',
key: 'operation',
width: '30%',
},
])
// 左侧图片
const leftImg = require('@/assets/capabilityCloud/resources-left.png')
// 请求左侧数据开始
const obj = {
serviceName: '',
orderField: 'updateTime',
orderType: 'desc',
pageNum: 1,
pageSize: 5,
serviceType: 'data',
}
getRecord(obj).then((res) => {
if (res.data.data) {
// res.data.data.list.forEach((val) => {
// val.name = val.serviceName
// val.createDate = val.updateTime
// val.id = val.serviceId // "requestNum": 0, // "requestQuantity": 0, // "starNum": 4, // "shareStatus": "2"
// })
// resourceList.data = res.data.data.list || []
resourcesLeft.value[0].num = res.data.data.total || '0' // getShoppingCartList(resourceData.value.data.records)
console.log('数据资源~~~~~~~~~~~', resourcesLeft.value[0].num)
}
})
// 请求左侧数据结束
// 请求右侧数据开始
const contentData = ref([])
count().then((res) => {
contentData.value = res.data.data
console.log(contentData.value)
resourcesLeft.value[1].num = contentData.value.requestCount || '0'
resourcesLeft.value[2].num =
contentData.value.satisfactionRate + '%' || '0' + '%'
// 排行
for (let i = 1; i < 6; i++) {
assignRankings.value[i - 1].index = i
assignRankings.value[i - 1].name =
contentData.value.list[i - 1].resourceTop5.service_name || '0'
assignRankings.value[i - 1].opacity =
contentData.value.list[i - 1].resourceTop5.count || '0'
}
})
// 请求右侧数据结束
</script>
<style lang="less" scoped>
.data-resources {
width: 440px;
height: 465px;
background: rgba(0, 108, 188, 0.1);
border-radius: 2px;
border: 1px solid rgba(0, 108, 188, 0.7);
.resources-top {
height: 60px;
background: url('~@/assets/capabilityCloud/resources-title.png') no-repeat;
text-align: center;
font-size: 24px;
}
.resources-bottom {
width: 100%;
display: flex;
.resources-left {
width: 156px;
height: 275px;
background-image: linear-gradient(#214678, transparent);
text-align: center;
margin-left: 18px;
position: relative;
div {
margin: 0 10px;
border-bottom: 1px solid #1f557c;
h3 {
font-size: 16px;
color: #ffffff;
margin-bottom: 0px;
padding-top: 16px;
}
.num {
font-size: 28px;
color: #1ef6f5;
margin-bottom: 0px;
}
}
div:last-of-type {
border-bottom: none;
}
img {
width: 90%;
position: absolute;
left: 50%;
bottom: -138px;
margin-left: -45%;
}
}
.resources-right {
margin-left: 18px;
width: 235px;
display: flex;
flex-direction: column;
align-items: center;
.resources-right-title {
width: 224px;
height: 100px;
text-align: center;
background: url('~@/assets/capabilityCloud/resources-right.png')
no-repeat center;
display: flex;
align-items: center;
h3 {
font-size: 18px;
color: #ffffff;
width: 100%;
height: 38px;
line-height: 38px;
background: linear-gradient(
to right,
rgba(0, 0, 0, 0) 0%,
#1b76cc 50%,
rgba(0, 0, 0, 0) 100%
);
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6);
}
}
.resources-right-table {
width: 100%;
:deep(.ant-table-thead > tr > th) {
background-color: #1f557c;
border: none;
color: #1ef6f5;
height: 32px;
padding: 0;
}
:deep(.ant-table-row) {
height: 45px;
}
:deep(.ant-table-cell) {
text-align: center;
border-bottom: 1px solid #1f557c;
border-right: 1px solid #1f557c;
padding: 0;
}
:deep(.ant-table-cell:nth-child(1)) {
border-left: 1px solid #1f557c;
}
:deep(.ant-table-cell:nth-child(2)) {
text-align: left;
padding-left: 10px;
}
:deep(.ant-table-cell:nth-child(3)) {
color: #1ef6f5;
}
:deep(.ant-table-tbody) {
color: #ffffff;
}
:deep(.ant-table) {
border: none;
background: transparent;
}
:deep(.ant-table-content > table) {
border: none;
}
:deep(.ant-table-container) {
border: none;
}
:deep(.ant-table-cell-row-hover) {
background: transparent;
transition: all 0s;
}
}
}
}
}
</style>