|
@@ -0,0 +1,261 @@
|
|
|
+<script setup>
|
|
|
+import { ref, onMounted, watch } from 'vue';
|
|
|
+import { NScrollbar, useMessage, NDatePicker, NTabs, NTab, NDataTable, NPagination, NNumberAnimation } from 'naive-ui';
|
|
|
+import * as echarts from 'echarts';
|
|
|
+
|
|
|
+import { columns, getEchartLineOptions } from './config';
|
|
|
+import { TheChatView } from '@/components';
|
|
|
+
|
|
|
+const echartRef = ref(null);
|
|
|
+const formData = ref({
|
|
|
+ startTime: '',
|
|
|
+ endTime: '',
|
|
|
+ type: '',
|
|
|
+ status: '',
|
|
|
+ page: 1,
|
|
|
+ size: 10
|
|
|
+})
|
|
|
+
|
|
|
+const total = 111;
|
|
|
+
|
|
|
+const dateThemeOverrides = {
|
|
|
+ peers: {
|
|
|
+ Input: {
|
|
|
+ placeholderColor: '#86909C'
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+const data = [
|
|
|
+ { no: 3, title: "Wonderwall", length: "4:18" },
|
|
|
+ { no: 4, title: "Don't Look Back in Anger", length: "4:48" },
|
|
|
+ { no: 12, title: "Champagne Supernova", length: "7:27" }
|
|
|
+]
|
|
|
+
|
|
|
+onMounted(() => {
|
|
|
+ const chart = echarts.init(echartRef.value, 'light');
|
|
|
+ const option = getEchartLineOptions();
|
|
|
+ chart.setOption(option);
|
|
|
+})
|
|
|
+
|
|
|
+</script>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <section class="flex items-start h-full">
|
|
|
+ <TheChatView leftTitle="" :isChatSlot="false" :isFooter="false">
|
|
|
+ <template #control>
|
|
|
+ <div class="number-card">
|
|
|
+ <span></span>
|
|
|
+ <h4 class="text-[#fff] text-[15px] font-bold">数据概况</h4>
|
|
|
+ <ul class="board-list space-x-[12px]">
|
|
|
+ <li class="board-item">
|
|
|
+ <p class="title">当前设备状态</p>
|
|
|
+ <p class="content">
|
|
|
+ <span class="blue-text">化验中</span>
|
|
|
+ </p>
|
|
|
+ </li>
|
|
|
+ <li class="board-item">
|
|
|
+ <p>当前设备状态</p>
|
|
|
+ <p class="content space-x-[6px]">
|
|
|
+ <span class="num-text">
|
|
|
+ <NNumberAnimation :from="0" :to="12039" :duration="1500"></NNumberAnimation>
|
|
|
+ </span>
|
|
|
+ <span class="unit">天</span>
|
|
|
+ </p>
|
|
|
+ </li>
|
|
|
+ <li class="board-item">
|
|
|
+ <p>累计化验轮次</p>
|
|
|
+ <p class="content space-x-[6px]">
|
|
|
+ <span class="num-text">100</span>
|
|
|
+ <span class="unit">次</span>
|
|
|
+ </p>
|
|
|
+ </li>
|
|
|
+ <li class="board-item">
|
|
|
+ <p>累计化验次数</p>
|
|
|
+ <p class="content space-x-[6px]">
|
|
|
+ <span class="num-text">100</span>
|
|
|
+ <span class="unit">次</span>
|
|
|
+ </p>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <div class="data-card">
|
|
|
+ <h4 class="title px-[16px]">数据详情</h4>
|
|
|
+ <div class="main">
|
|
|
+ <NScrollbar style="height: 100%;">
|
|
|
+ <div class="px-[16px]">
|
|
|
+
|
|
|
+ <div class="echart-box">
|
|
|
+ <div class="header-inner">
|
|
|
+ <p class="font-bold">检测数据趋势图「小时」</p>
|
|
|
+ <div class="date-inner space-x-[16px]">
|
|
|
+ <span class="text-[12px]">选择时间</span>
|
|
|
+ <n-date-picker v-model:value="range" type="datetimerange" clearable size="small"
|
|
|
+ style="width: 380px" :themeOverrides="dateThemeOverrides" start-placeholder="开始时间" end-placeholder="结束时间"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="echart" class="h-full w-full" ref="echartRef"></div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="table-box w-full">
|
|
|
+ <div class="header-inner">
|
|
|
+ <p class="font-bold">表格数据「小时」</p>
|
|
|
+ <div class="space-x1-[16px] w-[200px]">
|
|
|
+ <n-tabs type="segment" size="small" class="tabs">
|
|
|
+ <n-tab name="幸福">
|
|
|
+ 1#二沉池
|
|
|
+ </n-tab>
|
|
|
+ <n-tab name="的">
|
|
|
+ 1#二沉池
|
|
|
+ </n-tab>
|
|
|
+ </n-tabs>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="w-full pt-[12px]">
|
|
|
+ <n-data-table size="small" :columns="columns" :data="data" :bordered="false" layout="table" />
|
|
|
+ <!-- :scroll-x="1800" -->
|
|
|
+ </div>
|
|
|
+ <div class="flex justify-center mt-[14px] mb-[10px]">
|
|
|
+ <NPagination v-model:page="formData.pageNum" :item-count="total"></NPagination>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </NScrollbar>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </TheChatView>
|
|
|
+ </section>
|
|
|
+</template>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.number-card {
|
|
|
+ display: flex;
|
|
|
+ flex-flow: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ height: 168px;
|
|
|
+ padding: 22px 16px 16px 16px;
|
|
|
+ border-radius: 10px;
|
|
|
+ border-radius: 10px;
|
|
|
+ background: url('@/assets/images/xlht/bg-header.png') left top no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+
|
|
|
+ .board-list {
|
|
|
+ @include flex (x, center, center);
|
|
|
+ height: 94px;
|
|
|
+
|
|
|
+ .board-item {
|
|
|
+ display: flex;
|
|
|
+ flex-flow: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 25%;
|
|
|
+ height: 100%;
|
|
|
+ padding: 20px 0 22px 20px;
|
|
|
+ border-radius: 4px;
|
|
|
+
|
|
|
+ .title {
|
|
|
+ font-size: 12px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #1A2029;
|
|
|
+ }
|
|
|
+
|
|
|
+ .content {
|
|
|
+ font-size: 12px;
|
|
|
+
|
|
|
+ .num-text {
|
|
|
+ font-size: 24px;
|
|
|
+ font-weight: bold;
|
|
|
+ font-family: D-DIN-PRO-700-Bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .unit {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #86909C;
|
|
|
+ }
|
|
|
+
|
|
|
+ .blue-text {
|
|
|
+ font-size: 22px;
|
|
|
+ background: linear-gradient(92deg, #5ABBF2 12.24%, #2454FF 63.2%);
|
|
|
+ background-clip: text;
|
|
|
+ -webkit-background-clip: text;
|
|
|
+ -webkit-text-fill-color: transparent;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .board-item:nth-child(1) {
|
|
|
+ background: url('@/assets/images/xlht/bg-card-01.png') 50% / cover no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .board-item:nth-child(2) {
|
|
|
+ background: url('@/assets/images/xlht/bg-card-02.png') no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .board-item:nth-child(3) {
|
|
|
+ background: url('@/assets/images/xlht/bg-card-03.png') no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .board-item:nth-child(4) {
|
|
|
+ background: url('@/assets/images/xlht/bg-card-04.png') no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.data-card {
|
|
|
+ width: calc(100vw - 292px);
|
|
|
+ height: calc(100% - 168px);
|
|
|
+ padding: 22px 0px 16px 0px;
|
|
|
+ margin-top: 12px;
|
|
|
+ border-radius: 10px;
|
|
|
+ background: #FFF;
|
|
|
+
|
|
|
+ .title {
|
|
|
+ padding-bottom: 12px;
|
|
|
+ font-size: 15px;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .main {
|
|
|
+ height: calc(100% - 34px);
|
|
|
+ }
|
|
|
+
|
|
|
+ .echart-box {
|
|
|
+ #echart {
|
|
|
+ height: 300px;
|
|
|
+ // background: orange
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .header-inner {
|
|
|
+ @include flex(x, center, between);
|
|
|
+ color: #333;
|
|
|
+
|
|
|
+ .date-inner {
|
|
|
+ @include flex(x, center, center);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.n-input--stateful) {
|
|
|
+ background: #F2F3F5;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|
|
|
+
|
|
|
+<style lang="scss">
|
|
|
+.tabs {
|
|
|
+ .n-tabs-tab--active {
|
|
|
+ .n-tabs-tab__label {
|
|
|
+ color: #2454FF;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .n-tabs-tab__label {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #333333;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|