| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125 |
- <template>
- <view class="device-data-container">
- <!-- 顶部时间戳和图标区域 -->
- <view class="device-data-wraper">
- <view class="top-bar">
- <view class="timestamp">
- {{formatDate(deviceInfo.uptime)}}
- <u-icon name="reload" color="#0BBC58" style="margin-left: 12rpx" @click="refreshData"></u-icon>
- </view>
- <view class="icon-group">
- <!-- <view class="icon-item refresh-icon">
- <img class="copy-icon" :src="sim"/>
- </view>
- <view class="icon-item settings-icon" @click="openSettings">
- <img class="copy-icon" :src="setting"/>
- </view> -->
- <!-- <view class="icon-item info-icon">
- <img class="copy-icon" :src="edit"/>
- </view> -->
- </view>
- </view>
- <!-- 主要数据面板 -->
- <view class="main-data-panel">
- <view class="data-column-left">
- <view class="data-item">
- <text class="data-value">{{ deviceStatic.vol }}</text>
- <text class="data-label">电量</text>
- </view>
- <view class="data-item">
- <text class="data-value">{{ deviceStatic.gs == 1? '落虫' : '排水' }}</text>
- <text class="data-label">通道状态</text>
- </view>
- <view class="data-item">
- <text class="data-value">{{ deviceStatic.upds == 1? '打开' : '关闭' }}</text>
- <text class="data-label">上仓门</text>
- </view>
- <view class="data-item">
- <text class="data-value">{{ deviceStatic.dver }}</text>
- <text class="data-label">设备版本</text>
- </view>
- </view>
- <view class="data-column-left">
- <view class="data-item">
- <text class="data-value">{{ deviceStatic.tmod == '1' ? '时控' : '光控' }}</text>
- <text class="data-label">定时模式</text>
- </view>
- <view class="data-item">
- <text class="data-value">{{ deviceStatic.hs == '1' ? '加热' : '正常' }}</text>
- <text class="data-label">加热状态</text>
- </view>
- <view class="data-item">
- <text class="data-value">{{ deviceStatic.dpds == '1' ? '打开' : '关闭' }}</text>
- <text class="data-label">下仓门</text>
- </view>
- <view class="data-item">
- <text class="data-value">{{ deviceStatic.tph || '' }}℃</text>
- <text class="data-label">高温限值</text>
- </view>
- </view>
- <view class="data-column-right">
- <view class="device-image-container">
- <image class="device-image" src="https://s3.hnyfwlw.com/webstaticimg/bigdata_app/image/cbd.png" mode="aspectFit"></image>
- </view>
- </view>
- </view>
- </view>
- <!-- 图表区域 -->
- <view class="chart-section">
- <view class="chart-header">
- <view class="chart-tabs">
- <view
- v-for="(tab, index) in chartTabs"
- :key="index"
- class="chart-tab-item"
- :class="{ active: activeChartTab === index }"
- @click="switchChartTab(index)"
- >
- {{ tab.name }}
- </view>
- </view>
- <!-- <view class="chart-dropdown">
- <text class="iconfont dropdown-icon"></text>
- </view> -->
- </view>
- <view class="chart-content">
- <view class="chart-canvas-container">
- <div id="tempChart" class="chart-canvas"></div>
- </view>
- </view>
- </view>
- <!-- 历史数据表格 -->
- <view class="history-section">
- <view class="history-header">
- <text class="history-title">历史数据</text>
- </view>
- <view class="history-table">
- <view class="table-container">
- <!-- 固定列 -->
- <view class="fixed-column">
- <view class="fixed-header">
- <text class="header-cell fixed">上报时间</text>
- </view>
- <view class="fixed-body">
- <view
- v-for="(item, index) in historyData"
- :key="index"
- class="fixed-row"
- :class="{ even: index % 2 === 0 }"
- >
- <text class="body-cell fixed">{{ formatTime(item.addtime) }}</text>
- </view>
- </view>
- </view>
- <!-- 可滑动列 -->
- <view class="scrollable-column">
- <view class="scrollable-header">
- <text class="header-cell">环境温度(°C)</text>
- <text class="header-cell">环境湿度(%)</text>
- <text class="header-cell">加热仓温度(°C)</text>
- <text class="header-cell">雨控状态</text>
- <text class="header-cell">温控状态</text>
- <text class="header-cell">光控状态</text>
- <text class="header-cell">灯管状态</text>
- <text class="header-cell">信号强度</text>
- <text class="header-cell">电流(mA)</text>
- <text class="header-cell">电压(V)</text>
- <text class="header-cell">经度</text>
- <text class="header-cell">纬度</text>
- </view>
- <view class="scrollable-body">
- <view
- v-for="(item, index) in historyData"
- :key="index"
- class="scrollable-row"
- :class="{ even: index % 2 === 0 }"
- >
- <text class="body-cell">{{ item.at }}</text>
- <text class="body-cell">{{ item.ah }}</text>
- <text class="body-cell">{{ item.hrt }}</text>
- <text class="body-cell">{{ getRpsDict(item) }}</text>
- <text class="body-cell">{{ getTpsDict(item) }}</text>
- <text class="body-cell">{{ getLpsDict(item) }}</text>
- <text class="body-cell">{{ getStateDict(item) }}</text>
- <text class="body-cell">{{ item.csq }}</text>
- <text class="body-cell">{{ item.current }}</text>
- <text class="body-cell">{{ item.vbat }}</text>
- <text class="body-cell">{{ item.lng }}</text>
- <text class="body-cell">{{ item.lat }}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="pagination">
- <text class="pagination-btn prev-btn" @click="prevPage">上一页</text>
- <text class="pagination-info">{{currentPage}}/{{totalPages}}</text>
- <text class="pagination-btn next-btn" @click="nextPage">下一页</text>
- </view>
- </view>
- <u-popup v-model="show" mode="bottom" border-radius="20">
- <view style="height:70vh">
- <view class="tabs-container">
- <view class="tabs-item" @click="switchTab(0)" :class="{ active: activeTab === 0 }" v-if="data_iccid">数据SIM卡流量</view>
- <view class="tabs-item" @click="switchTab(1)" :class="{ active: activeTab === 1 }">图片SIM卡流量</view>
- </view>
- <view class="sim-container" v-if="activeTab === 0">
- <view class="sim-item">
- <text class="sim-label">ICCID:</text>
- <text class="sim-value">{{ deviceInfoStatic.iccid }}</text>
- </view>
- <view class="sim-item">
- <text class="sim-label">总流量:</text>
- <text class="sim-value">{{ deviceInfoStatic.total }}</text>
- </view>
- <view class="sim-item">
- <text class="sim-label">状态:</text>
- <text class="sim-value">{{ deviceInfoStatic.status }}</text>
- </view>
- <view class="sim-item">
- <text class="sim-label">到期时间:</text>
- <text class="sim-value">{{ deviceInfoStatic.expire }}</text>
- </view>
- <view class="sim-item">
- <text class="sim-label">厂商名称:</text>
- <text class="sim-value">{{ deviceInfoStatic.company }}</text>
- </view>
- <view class="sim-item">
- <text class="sim-label">已使用:</text>
- <text class="sim-value"><text style="color: #0BBC58">{{ deviceInfoStatic.used }}</text>/{{ deviceInfoStatic.total }}</text>
- </view>
- <view class="sim-item">
- <text class="sim-value">
- <u-line-progress active-color="#0BBC58" :percent="deviceInfoStatic.used / deviceInfoStatic.total * 100" :show-percent="false"></u-line-progress>
- </text>
- </view>
- </view>
- <view class="sim-container" v-if="activeTab === 1">
- <view class="sim-item" style="display:flex;align-items: center;height:80rpx;">
- <text class="sim-label">ICCID:</text>
- <text v-if="show1" style="margin-right: 10rpx">{{ photo_iccid }}</text>
- <text class="sim-value" style="color: #0BBC58;" @click="changeSim" v-if="show1">
- 更换SIM卡
- </text>
- <view v-else class="sim-value-change">
- <u-input v-model="data_iccidInput" placeholder="请输入ICCID" class="sim-value"></u-input>
- <view class="sim-value-button" size="small" @click="changeSimHandler">确认</view>
- <view class="sim-value-button" size="small" @click="show1 = true">取消</view>
- </view>
- </view>
- </view>
- </view>
- </u-popup>
- <floatButton>
- <view slot="icon">
- <view class="general-border">
- <image :src="general" class="general-icon"></image>
- </view>
- </view>
- <view slot="expanded">
- <view class="general-images">
- <view class="general-image edit-border" @click="editData">
- <image :src="editBorder" class="image-icon"></image>
- </view>
- <view class="general-image sim-border" @click="simData">
- <image :src="simBorder" class="image-icon"></image>
- </view>
- <view class="general-image setting-border" @click="openSettings">
- <image :src="settingBorder" class="image-icon"></image>
- </view>
- </view>
- </view>
- </floatButton>
- </view>
- </template>
- <script>
- import * as echarts from 'echarts';
- import setting from '../assets/setting.png';
- import edit from '../assets/edit.png';
- import sim from '../assets/sim.png';
- import Circulation from '../../../static/js/equipState_dict.json';
- import floatButton from './floating-button.vue';
- import general from '../assets/general.png';
- import editBorder from '../assets/editBorder.png';
- import settingBorder from '../assets/settingBorder.png';
- import simBorder from '../assets/simBorder.png';
- let chartInstance = null;
- export default {
- name: 'DeviceData',
- props:{
- deviceInfo:{
- type:Object,
- default:()=>({}),
- },
- deviceStatic:{
- type:Object,
- default:()=>({}),
- },
- polylineList:{
- type:Array,
- default:()=>[],
- },
- deviceHistoryList:{
- type:Array,
- default:()=>[],
- },
- totalPage:{
- type:Number,
- default:0
- },
- currentPage:{
- type:Number,
- default:0
- },
- page_size:{
- type:Number,
- default:10
- },
- },
- components: {
- floatButton,
- },
- computed:{
- totalPages(){
- return Math.ceil(this.totalPage / this.page_size)
- }
- },
- data() {
- return {
- setting,
- general,
- editBorder,
- settingBorder,
- simBorder,
- activeTab: 0,
- edit,
- sim,
- show:false,
- show1:true,
- equipStateDict:{},
- chartTabs: [
- { name: '温度', id: 'new_tem' },
- { name: '湿度', id: 'new_hum' },
- { name: '加热仓温度', id: 'others' },
- ],
- xData:[],
- yData:[],
- activeChartTab: 0,
- historyData: [],
- data_iccid:'',
- data_iccidInput:'',
- deviceInfoStatic:{},
- photo_iccid:'',
- };
- },
- mounted(){
- this.equipStateDict = Circulation
- },
- watch:{
- polylineList:{
- handler(newVal, oldVal){
- if(newVal.length > 0){
- this.xData = newVal.map(item => this.formatDate(new Date(item.addtime)));
- this.yData = newVal.map(item => Number(item.new_tem) || 0);
- this.initChart();
- }
- },
- deep:true,
- immediate:true,
- },
- deviceHistoryList:{
- handler(newVal, oldVal){
- this.historyData = []
- if(newVal.length > 0){
- newVal.forEach(item=>{
- this.historyData.push(item.d_h_t)
- })
- }
- },
- deep:true,
- immediate:true,
- },
- show:{
- handler(newVal, oldVal){
- if(newVal){
- this.getSimNew()
- }
- }
- }
- },
- methods: {
- editData(){
- uni.navigateTo({
- url: '/pages/afterSale/addafter?d_id=' + this.deviceInfo.d_id +'&device_id='+this.deviceInfo.id + '&device_type=' + this.deviceInfo.type,
- })
- },
- prevPage(){
- this.$emit('prevPage', this.currentPage)
- },
- nextPage(){
- this.$emit('nextPage', this.currentPage)
- },
- changeSim(){
- this.show1 = false
- },
- changeSimHandler(){
- if(this.data_iccidInput){
- this.changeSimAction(this.data_iccidInput);
- }else{
- this.$u.toast('请输入ICCID')
- }
- },
- switchTab(index){
- this.activeTab = index
- },
- simData(){
- this.show = true
- },
- async changeSimAction(simid){
- const res = await this.$myRequest({
- url: '/api/api_gateway?method=forecast.send_control.device_sim_update',
- method: 'POST',
- data: {
- d_id: this.deviceInfo.d_id,
- simid,
- },
- });
- if(res){
- this.$u.toast('更换成功')
- this.show1 = true
- this.data_iccidInput = ''
- this.getSimNew()
- }
- },
- async getSimNew(){
- const res = await this.$myRequest({
- url: '/api/api_gateway?method=forecast.send_control.device_sim_new',
- method: 'POST',
- data: {
- d_id: this.deviceInfo.d_id,
- },
- });
- if(res){
- const data_iccid = res.data_iccid
- this.data_iccid = data_iccid
- this.photo_iccid = res.photo_iccid
- if(data_iccid){
- this.getQueryNew(data_iccid);
- }else{
- this.activeTab = 1
- }
- }
- },
- async getQueryNew(data_iccid){
- const res = await this.$myRequest({
- url: '/api/api_gateway?method=forecast.send_control.sim_query_new',
- method: 'POST',
- data: {
- iccid: data_iccid,
- },
- });
- this.deviceInfoStatic = res
- },
- async refreshData(){
- const res = await this.$myRequest({
- url: '/api/api_gateway?method=forecast.send_control.get_device_config',
- method: 'POST',
- data: {
- device_type_id: this.deviceInfo.type,
- d_id: this.deviceInfo.d_id,
- control_type:'data',
- device_model: this.deviceInfo.device_model || 0,
- },
- });
- if(res){
- // 弹出提示
- this.$u.toast('刷新成功')
- }
- },
- getStateDict(item){
- return item.ws == 0 ? '待机' : this.equipStateDict.lamp.value[item.lamp]
- },
- getRpsDict(item){
- return this.equipStateDict.rps.value[item.rps]
- },
- getTpsDict(item){
- return this.equipStateDict.tps.value[item.tps]
- },
- getLpsDict(item){
- return this.equipStateDict.lps.value[item.lps]
- },
- openSettings(){
- uni.navigateTo({
- url: '/pages/cbd/deviceControl?deviceId=' + this.deviceInfo.id,
- });
- },
- initChart() {
- this.$nextTick(() => {
- this.drawChart();
- });
- },
- // 格式化时间
- formatDate(dateString) {
- const date = new Date(dateString*1000);
- const year = date.getFullYear();
- const month = String(date.getMonth() + 1).padStart(2, '0');
- const day = String(date.getDate()).padStart(2, '0');
- return `${year}-${month}-${day}`;
- },
- formatTime(dateString) {
- const date = new Date(dateString*1000);
- const year = date.getFullYear();
- const month = String(date.getMonth() + 1).padStart(2, '0');
- const day = String(date.getDate()).padStart(2, '0');
- const hour = String(date.getHours()).padStart(2, '0');
- const minute = String(date.getMinutes()).padStart(2, '0');
- const second = String(date.getSeconds()).padStart(2, '0');
- return `${year}-${month}-${day} ${hour}:${minute}:${second}`;
- },
- drawChart() {
- // 销毁已有的图表实例
- if (chartInstance) {
- chartInstance.dispose();
- }
-
- // 初始化图表
- const chartDom = document.getElementById('tempChart');
- if (!chartDom) return;
-
- chartInstance = echarts.init(chartDom);
-
- const option = {
- backgroundColor: '#FFFFFF',
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- show: false
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- top: '8%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- boundaryGap: false,
- data: this.xData,
- axisLine: {
- lineStyle: {
- color: '#CCCCCC'
- }
- },
- axisLabel: {
- fontSize: 10,
- color: '#999999'
- },
- splitLine: {
- show: false
- }
- },
- yAxis: {
- type: 'value',
- splitNumber: 4,
- axisLine: {
- show: true,
- lineStyle: {
- color: '#CCCCCC'
- }
- },
- axisLabel: {
- fontSize: 10,
- color: '#999999'
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: '#E5E5E5',
- type: 'dashed'
- }
- }
- },
- series: [
- {
- name: this.chartTabs[this.activeChartTab].name,
- type: 'line',
- smooth: true,
- data: this.yData,
- lineStyle: {
- color: '#0BBC58',
- width: 2
- },
- itemStyle: {
- color: '#0BBC58',
- borderColor: '#0BBC58',
- borderWidth: 2
- },
- symbol: 'circle',
- symbolSize: 6,
- areaStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: 'rgba(11, 188, 88, 0.3)'
- },
- {
- offset: 1,
- color: 'rgba(11, 188, 88, 0)'
- }
- ])
- }
- }
- ]
- };
-
- chartInstance.setOption(option);
-
- // 监听窗口大小变化,调整图表大小
- window.addEventListener('resize', () => {
- chartInstance.resize();
- });
- },
- switchChartTab(index) {
- this.activeChartTab = index;
- // 根据不同标签切换数据
- if (this.chartTabs[index].id === 'new_tem') {
- this.yData = this.polylineList.map(item => Number(item.new_tem) || 0);
- } else if (this.chartTabs[index].id === 'new_hum') {
- this.yData = this.polylineList.map(item => Number(item.new_hum) || 0);
- } else if (this.chartTabs[index].id === 'others') {
- this.yData = this.polylineList.map(item => Number(item.others) || 0);
- }
- this.$nextTick(() => {
- this.drawChart();
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .device-data-container {
- width: 100%;
- }
- .device-data-wraper{
- padding: 16rpx;
- background: #ffffff;
- border-radius: 16rpx;
- }
- /* 顶部时间戳和图标区域 */
- .top-bar {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 16rpx 0;
- .timestamp {
- font-size: 28rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #999999;
- }
- .icon-group {
- display: flex;
- gap: 10rpx;
- .icon-item {
- width: 56rpx;
- height: 56rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 50%;
- .iconfont {
- font-size: 36rpx;
- }
- &.refresh-icon .iconfont {
- color: #0BBC58;
- }
- &.settings-icon .iconfont {
- color: #999999;
- }
- &.info-icon .iconfont {
- color: #999999;
- }
- }
- }
- }
- .sim-container{
- padding: 0 20rpx;
- .sim-item{
- margin-bottom: 20rpx;
- .sim-value-change{
- display: flex;
- align-items: center;
- .sim-value-button{
- padding: 8rpx 16rpx;
- border-radius: 8rpx;
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #042118;
- background: #0BBC58;
- color: #ffffff;
- margin-left: 20rpx;
- }
- }
- }
- }
- .general-border{
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: all 0.3s ease;
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
- .general-icon{
- width: 50rpx;
- height: 50rpx;
- border-radius: 50%;
- }
- }
- .general-images{
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- .general-image{
- position: absolute;
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
- display:flex;
- align-items: center;
- justify-content: center;
- .image-icon{
- width: 45rpx;
- height: 45rpx;
- }
- }
- .edit-border{
- top: 45rpx;
- left: -110rpx;
- }
- .sim-border{
- top: -125rpx;
- left: -110rpx;
- }
- .setting-border{
- top: -40rpx;
- left: -180rpx;
- }
- }
- /* 主要数据面板 */
- .main-data-panel {
- display: flex;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin-bottom: 16rpx;
- .data-column-left {
- flex: 1;
- display: flex;
- flex-direction: column;
- gap: 24rpx;
- .data-item {
- display: flex;
- flex-direction: column;
- gap: 8rpx;
- .data-label {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #999999;
- }
- .data-value {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 700;
- color: #042118;
- &.temp-value {
- color: #FF6B6B;
- }
- }
- .data-unit {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #999999;
- }
- }
- }
- .data-column-right {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 16rpx;
- .device-image-container {
- position: relative;
- width: 200rpx;
- height: 200rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- .device-glow {
- position: absolute;
- width: 180rpx;
- height: 180rpx;
- background: radial-gradient(circle, rgba(11, 188, 88, 0.3) 0%, rgba(11, 188, 88, 0) 70%);
- border-radius: 50%;
- }
- .device-image {
- position: relative;
- width: 260rpx;
- height: 360rpx;
- z-index: 1;
- top: 60rpx;
- }
- }
- .device-info {
- display: flex;
- flex-direction: column;
- gap: 12rpx;
- width: 100%;
- .info-row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .info-label {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #999999;
- }
- .info-value {
- font-size: 36rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 700;
- color: #042118;
- }
- .info-version {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #999999;
- }
- .info-label-small {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #999999;
- }
- }
- }
- }
- }
- .tabs-container{
- display:flex;
- align-items: center;
- gap: 24rpx;
- padding: 24rpx;
- .tabs-item{
- font-size: 28rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 500;
- color: #999999;
- }
- .tabs-item.active{
- color: #0BBC58;
- }
- }
- /* 图表区域 */
- .chart-section {
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 24rpx 32rpx 32rpx;
- margin: 24rpx 0;
- .chart-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 24rpx;
- .chart-tabs {
- display: flex;
- gap: 48rpx;
- overflow-x: auto;
- white-space: nowrap;
- .chart-tab-item {
- font-size: 28rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 500;
- color: #999999;
- position: relative;
- padding-bottom: 8rpx;
- transition: all 0.3s;
- &.active {
- color: #0BBC58;
- font-weight: 700;
- &::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- height: 4rpx;
- background: #0BBC58;
- border-radius: 2rpx;
- }
- }
- }
- }
- .chart-dropdown {
- .dropdown-icon {
- font-size: 28rpx;
- color: #999999;
- }
- }
- }
- .chart-content {
- .chart-legend {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16rpx;
- .legend-item {
- display: flex;
- align-items: center;
- gap: 8rpx;
- .legend-dot {
- width: 16rpx;
- height: 16rpx;
- background: #0BBC58;
- border-radius: 50%;
- }
- .legend-text {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #042118;
- }
- }
- .legend-average {
- .average-text {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #999999;
- }
- }
- }
- .chart-canvas-container {
- width: 100%;
- height: 360rpx;
- .chart-canvas {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .copy-icon{
- width: 40rpx;
- height: 40rpx;
- }
- /* 历史数据表格 */
- .history-section {
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 24rpx 32rpx 32rpx;
- .history-header {
- margin-bottom: 24rpx;
- .history-title {
- font-size: 32rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 700;
- color: #042118;
- }
- }
- .history-table {
- margin-bottom: 24rpx;
- .table-container {
- display: flex;
- position: relative;
- /* 固定列 */
- .fixed-column {
- width: 240rpx;
- position: relative;
- z-index: 2;
- background: #FFFFFF;
- .fixed-header {
- border-bottom: 2rpx solid #F0F0F0;
- padding: 16rpx 0;
- .header-cell.fixed {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 500;
- color: #666666;
- text-align: left;
- padding-left: 0;
- }
- }
- .fixed-body {
- .fixed-row {
- padding: 16rpx 0;
- border-bottom: 1rpx solid #F5F5F5;
- height: 80rpx;
- display: flex;
- align-items: center;
- &.even {
- background: #FAFAFA;
- }
- .body-cell.fixed {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #042118;
- text-align: left;
- padding-left: 0;
- }
- }
- }
- }
- /* 可滑动列 */
- .scrollable-column {
- flex: 1;
- overflow-x: auto;
- white-space: nowrap;
- /* 隐藏滚动条 */
- &::-webkit-scrollbar {
- display: none;
- }
- scrollbar-width: none;
- .scrollable-header {
- display: flex;
- border-bottom: 2rpx solid #F0F0F0;
- padding: 20rpx 0;
- .header-cell {
- min-width: 140rpx;
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 500;
- color: #666666;
- text-align: center;
- // 超出隐藏
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-right: 10rpx;
- }
- }
- .scrollable-body {
- .scrollable-row {
- display: flex;
- padding: 16rpx 0;
- border-bottom: 1rpx solid #F5F5F5;
- height: 80rpx;
- align-items: center;
- &.even {
- background: #FAFAFA;
- }
- .body-cell {
- min-width: 140rpx;
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #042118;
- text-align: center;
- margin-right: 10rpx;
- }
- }
- }
- }
- }
- }
- .pagination {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .pagination-btn {
- font-size: 24rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- padding: 6rpx 18rpx;
- border-radius: 8rpx;
- transition: all 0.3s;
- &.prev-btn {
- color: #656565;
- border: 1px solid #E4E7ED;
- }
- &.next-btn {
- color: #0BBC58;
- border: 1px solid #0BBC58;
- }
- }
- .pagination-info {
- font-size: 28rpx;
- font-family: 'Source Han Sans CN VF', sans-serif;
- font-weight: 400;
- color: #999999;
- }
- }
- }
- </style>
|