| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133 |
- <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" @click="refreshData">
- <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){
- console.log(newVal,'newValnewVal')
- 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(){
- console.log(this.deviceInfo,'deviceInfodeviceInfo')
- 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(){
- this.$router.push({
- path: '/pages/cbd/deviceControl',
- query: {
- deviceId: this.deviceId
- }
- });
- },
- 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: 60rpx;
- height: 60rpx;
- 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;
- }
- }
- }
- }
- }
- }
- .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>
|