| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376 |
- <template>
- <vue-fullscreen
- class="rr-container"
- v-cloak
- v-model="isFullscreen"
- fullscreenClass="rr-container"
- :exit-on-click-wrapper="false"
- >
- <div class="rr-container" v-cloak>
- <div class="rr-header">
- <div class="rr-header-side rr-header-left">
- <!-- <div class="rr-header-chip">黑屏看板</div> -->
- <el-date-picker
- v-model="dateRange"
- class="rr-date-picker"
- size="mini"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- value-format="yyyy-MM-dd"
- />
- </div>
- <div class="rr-title">越隆达再生资源集团公司</div>
- <div class="rr-header-side rr-header-right">
- <div class="rr-time-box">
- <span class="rr-date">{{ date }}</span>
- <span class="rr-week">{{ week }}</span>
- <span class="rr-time">{{ time }}</span>
- </div>
- <span class="rr-weather">晴 27-19°C</span>
- <span class="rr-fullscreen" @click="onFullscreen">
- <i
- v-if="isFullscreen"
- class="el-icon-_screen-restore"
- title="退出全屏"
- ></i>
- <i v-else class="el-icon-_screen-full" title="全屏"></i>
- </span>
- </div>
- </div>
- <div class="rr-body">
- <div class="rr-side-column">
- <section class="rr-panel rr-panel-sales">
- <div class="rr-panel-title">营销总览</div>
- <div class="rr-summary-strip">
- <div
- v-for="item in salesCards"
- :key="item.key"
- class="rr-summary-item"
- >
- <div class="rr-summary-icon-box">
- <div class="rr-summary-icon-wrap">
- <div class="rr-summary-icon-ring"></div>
- <div class="rr-summary-icon">
- <img
- class="rr-summary-icon-img"
- :src="item.iconSrc"
- :alt="item.label"
- />
- </div>
- </div>
- </div>
- <div class="rr-summary-content">
- <div class="rr-summary-label">{{ item.label }}</div>
- <div class="rr-summary-main">
- <span class="rr-summary-value">{{ item.value }}</span>
- <span class="rr-summary-unit">{{ item.unit }}</span>
- <div class="rr-summary-trend" :class="item.trendType">
- <span class="rr-summary-trend-label">{{
- item.trendLabel
- }}</span>
- <span class="rr-summary-trend-value"
- >{{ item.trendType === 'up' ? '↗' : '↘'
- }}{{ item.trend }}%</span
- >
- </div>
- </div>
- </div>
- <div
- v-if="item.key !== salesCards[salesCards.length - 1].key"
- class="rr-summary-divider"
- ></div>
- </div>
- </div>
- </section>
- <section class="rr-panel rr-panel-procurement">
- <div class="rr-panel-title">采购总览</div>
- <div class="rr-procurement-body">
- <div class="rr-procurement-pane rr-procurement-pane-area">
- <div class="rr-pane-caption">
- <span>单位:件</span>
- <div class="rr-pane-legend">
- <span class="rr-legend-item rr-legend-item-blue"
- >采购量</span
- >
- <span class="rr-legend-item rr-legend-item-gold"
- >到货量</span
- >
- </div>
- </div>
- <div class="rr-chart-panel rr-chart-panel-compact">
- <area-line-chart
- v-if="isChartReady"
- :categories="monthCategories"
- :series="procurementSeries"
- :colors="['#3c87ff', '#e5b15d']"
- :show-legend="false"
- class="rr-fill-chart"
- />
- </div>
- </div>
- <div class="rr-procurement-pane rr-procurement-pane-bar">
- <div class="rr-pane-caption rr-pane-caption-right">
- <span>准时交付率</span>
- </div>
- <div class="rr-mini-bar-panel rr-mini-bar-panel-fill">
- <div ref="procurementBarRef" class="rr-native-chart"></div>
- </div>
- </div>
- </div>
- </section>
- <section class="rr-panel rr-panel-inventory">
- <div class="rr-panel-title">仓储总览</div>
- <div class="rr-inventory-body">
- <div class="rr-inv-left">
- <div class="rr-inv-chart-wrap">
- <div ref="inventoryDonutRef" class="rr-native-chart"></div>
- <div class="rr-inv-center">
- <span class="rr-inv-center-value">{{
- inventoryOverview.total
- }}</span>
- <span class="rr-inv-center-label">库存总量</span>
- </div>
- </div>
- </div>
- <div class="rr-inv-right">
- <div class="rr-inv-trend-caption">周转率</div>
- <div class="rr-inv-trend-chart">
- <div ref="inventoryTrendRef" class="rr-native-chart"></div>
- </div>
- </div>
- </div>
- </section>
- </div>
- <section class="rr-map-panel">
- <div class="rr-map-head">
- <div class="rr-map-tabs">
- <span
- class="rr-tab"
- :class="{ active: mapTab === 'nation' }"
- @click="mapTab = 'nation'"
- >
- 全国
- </span>
- <span
- class="rr-tab"
- :class="{ active: mapTab === 'factory' }"
- @click="mapTab = 'factory'"
- >
- 工厂分布
- </span>
- </div>
- <div class="rr-map-summary">
- <div
- v-for="item in mapHeaderStats"
- :key="item.label"
- class="rr-map-summary-item"
- >
- <span>{{ item.label }}</span>
- <strong>{{ item.value }}</strong>
- </div>
- </div>
- </div>
- <div class="rr-map-body">
- <china-map-chart
- v-if="isChartReady"
- :scatter-data="currentMapScatterData"
- :legend-categories="currentMapLegendCategories"
- class="rr-map-chart"
- />
- </div>
- </section>
- <div class="rr-side-column">
- <section class="rr-panel rr-panel-quality">
- <div class="rr-panel-title">质量总览</div>
- <div class="rr-quality-grid">
- <div
- v-for="item in qualityCards"
- :key="item.title"
- class="rr-quality-card"
- >
- <div class="rr-qc-title">{{ item.title }}</div>
- <div class="rr-qc-body">
- <div class="rr-qc-icon">
- <svg viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
- <rect x="8" y="22" width="32" height="20" rx="3" fill="url(#camBody)"/>
- <polygon points="40,26 54,18 54,46 40,38" fill="url(#camLens)"/>
- <rect x="18" y="14" width="12" height="8" rx="2" fill="#4a90d9" opacity="0.7"/>
- <rect x="6" y="42" width="10" height="10" rx="1" fill="#3a6fa0" opacity="0.5"/>
- <rect x="30" y="42" width="10" height="10" rx="1" fill="#3a6fa0" opacity="0.5"/>
- <defs>
- <linearGradient id="camBody" x1="8" y1="22" x2="40" y2="42" gradientUnits="userSpaceOnUse">
- <stop offset="0" stop-color="#5b9bd5"/>
- <stop offset="1" stop-color="#2a5a8c"/>
- </linearGradient>
- <linearGradient id="camLens" x1="40" y1="18" x2="54" y2="46" gradientUnits="userSpaceOnUse">
- <stop offset="0" stop-color="#6aaddf"/>
- <stop offset="1" stop-color="#3674a8"/>
- </linearGradient>
- </defs>
- </svg>
- </div>
- <div class="rr-qc-rates">
- <div class="rr-qc-col">
- <span class="rr-qc-label">合格率</span>
- <span class="rr-qc-val rr-qc-val-good">{{ item.passRate }}%</span>
- </div>
- <div class="rr-qc-col">
- <span class="rr-qc-label">不合格率</span>
- <span class="rr-qc-val rr-qc-val-bad">{{ item.failRate }}%</span>
- </div>
- <div class="rr-qc-col">
- <span class="rr-qc-label">损耗率</span>
- <span class="rr-qc-val rr-qc-val-loss">{{ item.lossRate }}%</span>
- </div>
- </div>
- </div>
- <div class="rr-qc-bar"></div>
- </div>
- </div>
- </section>
- <section class="rr-panel rr-panel-production">
- <div class="rr-panel-title">生产总览</div>
- <div class="rr-procurement-body">
- <div class="rr-procurement-pane rr-procurement-pane-area">
- <div class="rr-pane-caption">
- <span>单位:件</span>
- <div class="rr-pane-legend">
- <span class="rr-legend-item rr-legend-item-blue"
- >采购量</span
- >
- <span class="rr-legend-item rr-legend-item-gold"
- >到货量</span
- >
- </div>
- </div>
- <div class="rr-chart-panel rr-chart-panel-compact">
- <area-line-chart
- v-if="isChartReady"
- :categories="monthCategories"
- :series="procurementSeries"
- :colors="['#3c87ff', '#e5b15d']"
- :show-legend="false"
- class="rr-fill-chart"
- />
- </div>
- </div>
- <div class="rr-procurement-pane rr-procurement-pane-bar">
- <div class="rr-pane-caption rr-pane-caption-right">
- <span>准时交付率</span>
- </div>
- <div class="rr-mini-bar-panel rr-mini-bar-panel-fill">
- <div ref="productionBarRef" class="rr-native-chart"></div>
- </div>
- </div>
- </div>
- </section>
- <section class="rr-panel rr-panel-equipment">
- <div class="rr-panel-title">设备总览</div>
- <div class="rr-equipment-body-new">
- <!-- 左侧环形图+数据 -->
- <div class="rr-equip-left">
- <div class="rr-equip-donut-area">
- <div ref="equipmentDonutRef" class="rr-equip-donut-chart"></div>
- <div class="rr-equip-donut-center">
- <span class="rr-equip-donut-val">{{ equipmentOverview.online }}</span>
- <span class="rr-equip-donut-lbl">设备总量</span>
- </div>
- </div>
- <div class="rr-equip-stats">
- <div class="rr-equip-stat-item" v-for="item in equipmentStatsList" :key="item.label">
- <span class="rr-equip-stat-val">{{ item.value }}</span>
- <span class="rr-equip-stat-lbl">{{ item.label }}</span>
- </div>
- </div>
- </div>
- <!-- 中间利用率仪表盘 -->
- <div class="rr-equip-gauge-col">
- <div class="rr-equip-gauge-box">
- <div ref="utilDonutRef" class="rr-equip-gauge-chart"></div>
- </div>
- </div>
- <!-- 右侧故障率仪表盘 -->
- <div class="rr-equip-gauge-col">
- <div class="rr-equip-gauge-box">
- <div ref="faultDonutRef" class="rr-equip-gauge-chart"></div>
- </div>
- </div>
- </div>
- </section>
- </div>
- </div>
- </div>
- </vue-fullscreen>
- </template>
- <script>
- import { component as VueFullscreen } from 'vue-fullscreen';
- import * as echarts from 'echarts';
- import AreaLineChart from './components/charts/AreaLineChart';
- import ChinaMapChart from './components/charts/ChinaMapChart';
- export default {
- name: 'RenewableResourcesDashboard',
- components: {
- VueFullscreen,
- AreaLineChart,
- ChinaMapChart
- },
- data() {
- return {
- isFullscreen: false,
- isChartReady: false,
- resizeTimer: null,
- clockTimer: null,
- date: '',
- time: '',
- week: '',
- dateRange: [],
- mapTab: 'nation',
- monthCategories: [
- '1月',
- '2月',
- '3月',
- '4月',
- '5月',
- '6月',
- '7月',
- '8月',
- '9月',
- '10月',
- '11月',
- '12月'
- ],
- salesCards: [
- {
- key: 'order',
- iconSrc: require('@/assets/renewable_icon_2.svg'),
- label: '订单量',
- value: '1024',
- unit: '万',
- trend: 25,
- trendType: 'up',
- trendLabel: '同比上升'
- },
- {
- key: 'ship',
- iconSrc: require('@/assets/renewable_icon_3.svg'),
- label: '出货量',
- value: '2048',
- unit: '万',
- trend: 25,
- trendType: 'warn',
- trendLabel: '同比上升'
- },
- {
- key: 'delivery',
- iconSrc: require('@/assets/renewable_icon_4.svg'),
- label: '准时交货率',
- value: '89',
- unit: '%',
- trend: 25,
- trendType: 'up',
- trendLabel: '同比下降'
- }
- ],
- qualityCards: [
- { title: '成品', passRate: 98, failRate: 2, lossRate: 5 },
- { title: '原材料', passRate: 91, failRate: 9, lossRate: 7 }
- ],
- inventoryOverview: {
- total: 6247
- },
- inventoryStats: [
- { label: '成品数', value: 2533 },
- { label: '半成品数', value: 1050 },
- { label: '原材料数', value: 2523 },
- { label: '备品备件数', value: 58 },
- { label: '呆滞品数', value: 83 }
- ],
- // mapHeaderStats: [
- // { label: '覆盖省份', value: 24 },
- // { label: '合作基地', value: 16 },
- // { label: '实时车辆', value: 37 }
- // ],
- nationMapScatterData: [
- { name: '新疆', value: [87.6168, 43.8256], category: 0 },
- { name: '甘肃', value: [103.8236, 36.0581], category: 1 },
- { name: '河南', value: [113.6254, 34.7466], category: 2 },
- { name: '山东', value: [117.0208, 36.6683], category: 3 },
- { name: '江苏', value: [118.7969, 32.0603], category: 0 },
- { name: '浙江', value: [120.1536, 30.2875], category: 1 },
- { name: '福建', value: [119.2965, 26.1006], category: 2 },
- { name: '广东', value: [113.2644, 23.1291], category: 3 }
- ],
- factoryMapScatterData: [
- { name: '乌鲁木齐工厂', value: [87.6168, 43.8256], category: 0 },
- { name: '兰州工厂', value: [103.8236, 36.0581], category: 1 },
- { name: '郑州工厂', value: [113.6254, 34.7466], category: 2 },
- { name: '青岛工厂', value: [120.3826, 36.0671], category: 3 },
- { name: '南京工厂', value: [118.7969, 32.0603], category: 0 },
- { name: '广州工厂', value: [113.2644, 23.1291], category: 2 }
- ],
- nationMapLegendCategories: [
- { name: '危废回收', count: 15 },
- { name: '金属分拣', count: 12 },
- { name: '塑料再生', count: 10 },
- { name: '纸类回收', count: 13 }
- ],
- factoryMapLegendCategories: [
- { name: '总装厂', count: 3 },
- { name: '分拣厂', count: 5 },
- { name: '再生厂', count: 4 },
- { name: '仓储站', count: 4 }
- ],
- procurementSeries: [
- {
- name: '采购量',
- data: [
- 2100, 3200, 2800, 4200, 4673, 2600, 1800, 2200, 1500, 2800, 4800,
- 1900
- ]
- },
- {
- name: '到货量',
- data: [
- 1400, 2100, 1800, 2600, 2895, 1700, 1300, 1600, 1100, 1700, 2500,
- 1200
- ]
- }
- ],
- productionSeries: [
- {
- name: '生产量',
- data: [240, 286, 332, 365, 398, 430, 412, 448, 470, 502, 534, 561]
- },
- {
- name: '达成量',
- data: [205, 240, 285, 318, 345, 380, 366, 398, 420, 446, 478, 505]
- }
- ],
- equipmentOverview: {
- utilRate: 92,
- faultRate: 23,
- online: 1247,
- waiting: 523,
- maintenance: 80,
- scrapped: 23,
- deviceCount: 533,
- productCount: 1247,
- spareCount: 523,
- toolCount: 80
- },
- chartInstances: {
- procurementBar: null,
- productionBar: null,
- inventoryDonut: null,
- inventoryTrend: null,
- utilDonut: null,
- faultDonut: null,
- equipmentDonut: null
- }
- };
- },
- computed: {
- currentMapScatterData() {
- return this.mapTab === 'factory'
- ? this.factoryMapScatterData
- : this.nationMapScatterData;
- },
- currentMapLegendCategories() {
- return this.mapTab === 'factory'
- ? this.factoryMapLegendCategories
- : this.nationMapLegendCategories;
- },
- leftEquipmentList() {
- return [
- { label: '在线设备', value: this.equipmentOverview.online },
- { label: '待机设备', value: this.equipmentOverview.waiting },
- { label: '维修设备', value: this.equipmentOverview.maintenance }
- ];
- },
- rightEquipmentList() {
- return [
- { label: '生产设备', value: this.equipmentOverview.deviceCount },
- { label: '产品设备', value: this.equipmentOverview.productCount },
- { label: '备件库存', value: this.equipmentOverview.spareCount }
- ];
- },
- equipmentStatsList() {
- return [
- { label: '生产设备', value: this.equipmentOverview.deviceCount },
- { label: '关键设备', value: 50 },
- { label: '仪表计量', value: this.equipmentOverview.spareCount },
- { label: '备品备件', value: 58 },
- { label: '工夹刀模具', value: 83 }
- ];
- }
- },
- created() {
- this.updateTime();
- this.clockTimer = setInterval(this.updateTime, 1000);
- const now = new Date();
- const start = new Date(now.getTime() - 1000 * 60 * 60 * 24 * 30);
- this.dateRange = [this.formatDate(start), this.formatDate(now)];
- },
- mounted() {
- this.applyScreenSize();
- window.addEventListener('resize', this.handleResize);
- document.addEventListener(
- 'fullscreenchange',
- this.handleFullscreenChange
- );
- document.addEventListener(
- 'webkitfullscreenchange',
- this.handleFullscreenChange
- );
- this.$nextTick(() => {
- this.isChartReady = true;
- this.$nextTick(() => {
- this.initNativeCharts();
- });
- });
- },
- beforeDestroy() {
- clearInterval(this.clockTimer);
- clearTimeout(this.resizeTimer);
- window.removeEventListener('resize', this.handleResize);
- document.removeEventListener(
- 'fullscreenchange',
- this.handleFullscreenChange
- );
- document.removeEventListener(
- 'webkitfullscreenchange',
- this.handleFullscreenChange
- );
- Object.values(this.chartInstances).forEach((chart) => chart?.dispose());
- },
- methods: {
- formatDate(date) {
- const pad = (n) => String(n).padStart(2, '0');
- return `${date.getFullYear()}-${pad(date.getMonth() + 1)}-${pad(
- date.getDate()
- )}`;
- },
- onFullscreen() {
- this.isFullscreen = !this.isFullscreen;
- },
- updateTime() {
- const now = new Date();
- const pad = (n) => String(n).padStart(2, '0');
- this.time = `${pad(now.getHours())}:${pad(now.getMinutes())}:${pad(
- now.getSeconds()
- )}`;
- this.date = `${now.getFullYear()}-${pad(now.getMonth() + 1)}-${pad(
- now.getDate()
- )}`;
- const weeks = [
- '星期日',
- '星期一',
- '星期二',
- '星期三',
- '星期四',
- '星期五',
- '星期六'
- ];
- this.week = weeks[now.getDay()];
- },
- handleResize() {
- clearTimeout(this.resizeTimer);
- this.resizeTimer = setTimeout(() => {
- this.applyScreenSize();
- Object.values(this.chartInstances).forEach((chart) =>
- chart?.resize()
- );
- window.dispatchEvent(new Event('resize'));
- }, 120);
- },
- handleFullscreenChange() {
- this.$nextTick(() => {
- setTimeout(() => {
- this.applyScreenSize();
- Object.values(this.chartInstances).forEach((chart) =>
- chart?.resize()
- );
- window.dispatchEvent(new Event('resize'));
- }, 160);
- });
- },
- applyScreenSize() {
- const isFs = !!(
- document.fullscreenElement || document.webkitFullscreenElement
- );
- const deviceWidth = isFs
- ? window.innerWidth || document.documentElement.clientWidth
- : document.documentElement.clientWidth;
- const deviceHeight = isFs
- ? window.innerHeight || document.documentElement.clientHeight
- : document.documentElement.clientHeight;
- const headerH =
- (!isFs &&
- document.querySelector('.ele-admin-header')?.offsetHeight) ||
- 0;
- const tabsH =
- (!isFs && document.querySelector('.ele-admin-tabs')?.offsetHeight) ||
- 0;
- const sidebarW =
- (!isFs &&
- document.querySelector('.ele-admin-sidebar')?.offsetWidth) ||
- 0;
- const h = isFs ? deviceHeight : deviceHeight - headerH - tabsH;
- const w = isFs ? deviceWidth : deviceWidth - sidebarW;
- document.querySelectorAll('.rr-container').forEach((el) => {
- el.style.height = `${h}px`;
- el.style.width = `${w}px`;
- });
- const designWidth = 1920;
- const designHeight = 1080;
- const scale = Math.min(w / designWidth, h / designHeight);
- const baseFontSize = 16 * scale;
- document.documentElement.style.fontSize = `${baseFontSize}px`;
- },
- initNativeCharts() {
- this.initBarChart(
- 'procurementBar',
- this.$refs.procurementBarRef,
- [68, 58, 62, 78, 55, 81, 90, 88, 75, 55, 82, 88],
- '#1089BB'
- );
- this.initBarChart(
- 'productionBar',
- this.$refs.productionBarRef,
- [18, 22, 26, 29, 35, 37, 36, 40, 42, 45, 49, 51],
- '#22d4b8'
- );
- this.initInventoryDonutChart();
- this.initInventoryTrendChart();
- this.initEquipmentDonutChart();
- this.initGaugeChart(
- 'utilDonut',
- this.$refs.utilDonutRef,
- 92,
- '#27dfd3'
- );
- this.initGaugeChart(
- 'faultDonut',
- this.$refs.faultDonutRef,
- 23,
- '#ff834d'
- );
- },
- initBarChart(key, el, data, color) {
- if (!el) return;
- this.chartInstances[key]?.dispose();
- const chart = echarts.init(el);
- if (key === 'procurementBar' || key === 'productionBar') {
- const topColor = '#0DF1FF';
- const barW = 22;
- const diamondW = barW;
- const diamondH = Math.round(diamondW * 0.42);
- chart.setOption({
- backgroundColor: 'transparent',
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow',
- shadowStyle: { color: 'rgba(13,241,255,0.06)' }
- },
- backgroundColor: 'rgba(255,255,255,0.96)',
- borderColor: '#ddd',
- textStyle: { color: '#333', fontSize: 13 },
- formatter: (params) => {
- const p = params.find((s) => s.seriesIndex === 1);
- return p
- ? `<b>${p.name}</b><br/>准时到货率 <b>${p.value}%</b>`
- : '';
- }
- },
- grid: {
- left: '6%',
- right: '4%',
- top: '18%',
- bottom: '8%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: this.monthCategories,
- axisLine: { lineStyle: { color: 'rgba(32, 105, 168, 0.45)' } },
- axisTick: { show: false },
- axisLabel: {
- color: '#d4ebff',
- fontSize: 11,
- margin: 8
- }
- },
- yAxis: {
- type: 'value',
- min: 0,
- max: 100,
- interval: 20,
- axisLine: { show: false },
- axisTick: { show: false },
- axisLabel: {
- color: '#b8d4ef',
- fontSize: 11,
- formatter: '{value}%'
- },
- splitLine: {
- lineStyle: { color: 'rgba(21, 77, 123, 0.22)' }
- }
- },
- series: [
- {
- name: 'bg',
- type: 'bar',
- data: new Array(data.length).fill(100),
- barWidth: barW,
- barGap: '-100%',
- silent: true,
- z: 1,
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: 'rgba(16, 137, 187, 0.1)' },
- { offset: 1, color: 'rgba(16, 137, 187, 0.02)' }
- ])
- }
- },
- {
- name: 'value',
- type: 'bar',
- data,
- barWidth: barW,
- z: 3,
- itemStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: 'rgba(13, 241, 255, 0.92)' },
- { offset: 0.4, color: 'rgba(16, 137, 187, 0.82)' },
- { offset: 1, color: 'rgba(10, 68, 122, 0.72)' }
- ])
- }
- },
- {
- name: 'topCap',
- type: 'pictorialBar',
- data,
- symbol: 'diamond',
- symbolSize: [diamondW, diamondH],
- symbolOffset: [0, -(diamondH / 2)],
- symbolPosition: 'end',
- z: 5,
- tooltip: { show: false },
- itemStyle: {
- color: topColor,
- shadowBlur: 8,
- shadowColor: 'rgba(13, 241, 255, 0.55)'
- }
- }
- ]
- });
- this.chartInstances[key] = chart;
- return;
- }
- chart.setOption({
- backgroundColor: 'transparent',
- grid: {
- left: '8%',
- right: '4%',
- top: '10%',
- bottom: '12%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: this.monthCategories,
- axisLine: { lineStyle: { color: '#154d7b' } },
- axisTick: { show: false },
- axisLabel: { color: '#b8d4ef', fontSize: 10 }
- },
- yAxis: {
- type: 'value',
- axisLine: { show: false },
- axisTick: { show: false },
- axisLabel: { color: '#b8d4ef', fontSize: 10 },
- splitLine: { lineStyle: { color: 'rgba(21, 77, 123, 0.28)' } }
- },
- series: [
- {
- type: 'bar',
- data,
- barWidth: '42%',
- itemStyle: {
- borderRadius: [6, 6, 0, 0],
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color },
- { offset: 1, color: color + '2b' }
- ])
- }
- }
- ]
- });
- this.chartInstances[key] = chart;
- },
- initInventoryDonutChart() {
- if (!this.$refs.inventoryDonutRef) return;
- this.chartInstances.inventoryDonut?.dispose();
- const chart = echarts.init(this.$refs.inventoryDonutRef);
- const pieColors = [
- '#2d5dbe',
- '#ffb648',
- '#3cd8c8',
- '#7b69ff',
- '#1fa4df'
- ];
- const pieData = [
- { name: '成品数', value: 2533 },
- { name: '半成品数', value: 1050 },
- { name: '原材料数', value: 2523 },
- { name: '备品备件数', value: 58 },
- { name: '呆滞品数', value: 83 }
- ];
- const cw = chart.getWidth();
- const ch = chart.getHeight();
- const isSmall = cw < 240 || ch < 160;
- const valFs = isSmall ? 12 : 14;
- const nameFs = isSmall ? 10 : 11;
- chart.setOption({
- backgroundColor: 'transparent',
- color: pieColors,
- tooltip: {
- trigger: 'item',
- backgroundColor: 'rgba(8,29,65,0.92)',
- borderColor: '#124c77',
- textStyle: { color: '#fff', fontSize: 13 }
- },
- series: [
- {
- type: 'pie',
- radius: ['36%', '58%'],
- center: ['50%', '50%'],
- padAngle: 2,
- itemStyle: { borderRadius: 4 },
- minShowLabelAngle: 2,
- label: {
- show: true,
- position: 'outside',
- formatter: (p) => `{val|${p.data.value}}\n{name|${p.name}}`,
- rich: {
- val: {
- color: '#fff',
- fontSize: valFs,
- fontWeight: 700,
- lineHeight: valFs + 6
- },
- name: {
- color: '#c3dfff',
- fontSize: nameFs,
- lineHeight: nameFs + 5
- }
- },
- distanceToLabelLine: 2
- },
- labelLine: {
- show: true,
- length: 10,
- length2: 20,
- smooth: false,
- lineStyle: { color: '#4da6d8', width: 1.2 }
- },
- labelLayout: (params) => {
- const isLeft = params.labelRect.x < cw / 2;
- return {
- align: isLeft ? 'right' : 'left',
- hideOverlap: true
- };
- },
- data: pieData
- },
- {
- type: 'pie',
- radius: ['30%', '32%'],
- center: ['50%', '50%'],
- silent: true,
- label: { show: false },
- labelLine: { show: false },
- data: [
- { value: 1, itemStyle: { color: 'rgba(60, 135, 255, 0.18)' } }
- ]
- }
- ]
- });
- this.chartInstances.inventoryDonut = chart;
- },
- initInventoryTrendChart() {
- if (!this.$refs.inventoryTrendRef) return;
- this.chartInstances.inventoryTrend?.dispose();
- const chart = echarts.init(this.$refs.inventoryTrendRef);
- chart.setOption({
- backgroundColor: 'transparent',
- tooltip: {
- trigger: 'axis',
- backgroundColor: 'rgba(8,29,65,0.92)',
- borderColor: '#124c77',
- textStyle: { color: '#fff', fontSize: 12 },
- formatter: (params) => {
- const p = params[0];
- return p ? `${p.name} 周转率: <b>${p.value}%</b>` : '';
- }
- },
- grid: {
- left: '2%',
- right: '4%',
- top: '16%',
- bottom: '10%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- data: [
- '数据一',
- '数据二',
- '数据三',
- '数据四',
- '数据五',
- '数据六',
- '数据七'
- ],
- axisLine: { lineStyle: { color: 'rgba(21, 77, 123, 0.6)' } },
- axisTick: { show: false },
- axisLabel: { color: '#b8d4ef', fontSize: 10 }
- },
- yAxis: {
- type: 'value',
- min: 50,
- max: 100,
- interval: 10,
- axisLine: { show: false },
- axisTick: { show: false },
- axisLabel: {
- color: '#b8d4ef',
- fontSize: 10,
- formatter: '{value}%'
- },
- splitLine: { lineStyle: { color: 'rgba(21, 77, 123, 0.24)' } }
- },
- series: [
- {
- type: 'line',
- smooth: 0.3,
- data: [78, 82, 72, 80, 85, 79, 88],
- symbol: 'circle',
- symbolSize: 8,
- showSymbol: true,
- lineStyle: { color: '#3c87ff', width: 2.5 },
- itemStyle: {
- color: '#3c87ff',
- borderColor: '#fff',
- borderWidth: 2
- },
- areaStyle: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: 'rgba(60, 135, 255, 0.3)' },
- { offset: 1, color: 'rgba(60, 135, 255, 0.02)' }
- ])
- }
- }
- ]
- });
- this.chartInstances.inventoryTrend = chart;
- },
- initGaugeChart(key, el, value, color) {
- if (!el) return;
- this.chartInstances[key]?.dispose();
- const chart = echarts.init(el);
- const label = key === 'utilDonut' ? '设备利用率' : '设备故障率';
- chart.setOption({
- backgroundColor: 'transparent',
- series: [
- {
- type: 'gauge',
- center: ['50%', '62%'],
- radius: '90%',
- startAngle: 200,
- endAngle: -20,
- min: 0,
- max: 100,
- pointer: { show: false },
- progress: {
- show: true,
- width: 16,
- roundCap: true,
- itemStyle: { color }
- },
- axisLine: {
- lineStyle: {
- width: 16,
- color: [[1, 'rgba(18, 76, 119, 0.32)']]
- }
- },
- axisTick: { show: false },
- splitLine: { show: false },
- axisLabel: {
- show: true,
- distance: -32,
- color: 'rgba(180, 220, 255, 0.6)',
- fontSize: 10,
- formatter: (v) => {
- if (v === 0 || v === 100) return v + '%';
- return '';
- }
- },
- title: {
- show: true,
- offsetCenter: [0, '38%'],
- color: '#c3dfff',
- fontSize: 14,
- fontWeight: 400
- },
- detail: {
- valueAnimation: true,
- offsetCenter: [0, '4%'],
- color: '#fff',
- fontSize: 30,
- fontWeight: 700,
- formatter: (v) => {
- return `{val|${v}}{unit|%}`;
- },
- rich: {
- val: {
- color: '#fff',
- fontSize: 30,
- fontWeight: 700
- },
- unit: {
- color: 'rgba(255,255,255,0.68)',
- fontSize: 14,
- fontWeight: 400,
- padding: [0, 0, 2, 2]
- }
- }
- },
- data: [{ value, name: label }]
- },
- {
- type: 'gauge',
- center: ['50%', '62%'],
- radius: '80%',
- startAngle: 200,
- endAngle: -20,
- min: 0,
- max: 100,
- pointer: { show: false },
- progress: { show: false },
- axisLine: {
- lineStyle: {
- width: 1,
- color: [[1, 'rgba(18, 76, 119, 0.18)']]
- }
- },
- axisTick: { show: false },
- splitLine: { show: false },
- axisLabel: { show: false },
- title: { show: false },
- detail: { show: false }
- }
- ]
- });
- this.chartInstances[key] = chart;
- },
- initEquipmentDonutChart() {
- if (!this.$refs.equipmentDonutRef) return;
- this.chartInstances.equipmentDonut?.dispose();
- const chart = echarts.init(this.$refs.equipmentDonutRef);
- const pieColors = ['#5b9bd5', '#ffb648', '#3cd8c8', '#7b69ff'];
- const pieData = [
- { name: '生产设备', value: this.equipmentOverview.deviceCount },
- { name: '关键设备', value: 50 },
- { name: '仪表计量', value: this.equipmentOverview.spareCount },
- { name: '备品备件', value: 58 },
- { name: '工夹刀模具', value: 83 }
- ];
- chart.setOption({
- backgroundColor: 'transparent',
- color: pieColors,
- tooltip: {
- trigger: 'item',
- backgroundColor: 'rgba(8,29,65,0.92)',
- borderColor: '#124c77',
- textStyle: { color: '#fff', fontSize: 13 },
- formatter: '{b}: {c}'
- },
- series: [
- {
- type: 'pie',
- radius: ['42%', '68%'],
- center: ['50%', '50%'],
- padAngle: 3,
- itemStyle: {
- borderRadius: 6,
- borderColor: 'rgba(3, 18, 41, 0.8)',
- borderWidth: 2
- },
- label: { show: false },
- labelLine: { show: false },
- data: pieData
- }
- ]
- });
- this.chartInstances.equipmentDonut = chart;
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .rr-container {
- color: #fff;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- background: radial-gradient(
- circle at top center,
- rgba(30, 113, 255, 0.18),
- transparent 26%
- ),
- radial-gradient(
- circle at center,
- rgba(0, 148, 255, 0.08),
- transparent 40%
- ),
- linear-gradient(180deg, #04132e 0%, #051d47 48%, #031229 100%);
- }
- .rr-header {
- position: relative;
- display: grid;
- grid-template-columns: 1fr auto 1fr;
- align-items: center;
- gap: 1rem;
- min-height: 4.6rem;
- padding: 0 0.9rem;
- background: radial-gradient(
- circle at center top,
- rgba(37, 118, 255, 0.18),
- transparent 45%
- ),
- linear-gradient(180deg, rgba(8, 33, 78, 0.96), rgba(4, 19, 46, 0.78));
- border-bottom: 1px solid rgba(59, 132, 255, 0.3);
- }
- .rr-header::before,
- .rr-header::after {
- content: '';
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- width: 24rem;
- height: 0.2rem;
- border-radius: 999px;
- background: linear-gradient(
- 90deg,
- transparent,
- rgba(95, 182, 255, 0.85),
- transparent
- );
- }
- .rr-header::before {
- top: 0.25rem;
- }
- .rr-header::after {
- bottom: 0.25rem;
- }
- .rr-header-side {
- display: flex;
- align-items: center;
- gap: 0.75rem;
- z-index: 1;
- }
- .rr-header-right {
- justify-content: flex-end;
- }
- .rr-header-chip {
- padding: 0.28rem 0.72rem;
- font-size: 0.78rem;
- color: #d8efff;
- border: 1px solid rgba(79, 168, 255, 0.45);
- background: linear-gradient(
- 180deg,
- rgba(12, 74, 160, 0.78),
- rgba(4, 37, 93, 0.72)
- );
- box-shadow: inset 0 0 0.75rem rgba(79, 168, 255, 0.18);
- }
- .rr-date-picker {
- width: 16rem;
- }
- ::v-deep .rr-date-picker.el-date-editor,
- ::v-deep .rr-date-picker .el-input__inner,
- ::v-deep .rr-date-picker.el-range-editor.el-input__inner {
- background-color: #011944;
- border: 1px solid #0b6fd5;
- color: #e9f3ff;
- box-shadow: 0 0 4px rgba(11, 109, 213, 0.28);
- }
- ::v-deep .rr-date-picker .el-range-input,
- ::v-deep .rr-date-picker .el-range-separator,
- ::v-deep .rr-date-picker .el-range__icon {
- background: transparent;
- color: #9fc5ff;
- }
- .rr-title {
- position: relative;
- z-index: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- min-width: 33rem;
- height: 1.88rem;
- padding: 0 4.4rem 0.02rem;
- font-family: '优设标题黑';
- font-size: clamp(1.3rem, 1.7vw, 1.76rem);
- font-style: italic;
- letter-spacing: 0.01rem;
- color: #f3fbff;
- text-align: center;
- text-shadow: 0 0 0.14rem rgba(255, 255, 255, 0.22),
- 0 0 0.42rem rgba(80, 184, 255, 0.14);
- background: radial-gradient(
- ellipse at 50% 2%,
- rgba(209, 244, 255, 0.28),
- rgba(209, 244, 255, 0) 48%
- ),
- linear-gradient(
- 90deg,
- rgba(14, 76, 194, 0.14) 0%,
- rgba(54, 148, 255, 0.24) 14%,
- rgba(118, 213, 255, 0.3) 50%,
- rgba(54, 148, 255, 0.24) 86%,
- rgba(14, 76, 194, 0.14) 100%
- ),
- linear-gradient(
- 180deg,
- rgba(55, 142, 255, 0.92) 0%,
- rgba(33, 114, 235, 0.92) 36%,
- rgba(11, 69, 182, 0.96) 74%,
- rgba(7, 44, 122, 0.98) 100%
- );
- border: 1px solid rgba(102, 188, 255, 0.28);
- border-top-color: rgba(177, 232, 255, 0.42);
- border-bottom-color: rgba(80, 155, 255, 0.4);
- clip-path: polygon(
- 0 0,
- 100% 0,
- 100% 68%,
- 98.8% 80%,
- 93% 100%,
- 7% 100%,
- 1.2% 80%,
- 0 68%
- );
- box-shadow: inset 0 0.05rem 0.16rem rgba(223, 248, 255, 0.14),
- inset 0 -0.16rem 0.34rem rgba(4, 22, 74, 0.34),
- 0 0.05rem 0.18rem rgba(0, 0, 0, 0.12);
- overflow: visible;
- }
- .rr-title::before {
- content: '';
- position: absolute;
- left: 50%;
- top: 0.08rem;
- width: calc(100% + 3.2rem);
- height: 0.82rem;
- transform: translateX(-50%);
- background: radial-gradient(
- ellipse at 50% 10%,
- rgba(196, 241, 255, 0.22),
- rgba(196, 241, 255, 0) 34%
- ),
- linear-gradient(
- 90deg,
- rgba(20, 83, 210, 0) 0%,
- rgba(31, 111, 233, 0.03) 14%,
- rgba(52, 151, 255, 0.08) 24%,
- rgba(128, 221, 255, 0.18) 50%,
- rgba(52, 151, 255, 0.08) 76%,
- rgba(31, 111, 233, 0.03) 86%,
- rgba(20, 83, 210, 0) 100%
- );
- clip-path: polygon(
- 0 82%,
- 10% 58%,
- 22% 28%,
- 78% 28%,
- 90% 58%,
- 100% 82%,
- 88% 100%,
- 12% 100%
- );
- opacity: 0.52;
- z-index: -1;
- filter: drop-shadow(0 0 0.12rem rgba(59, 162, 255, 0.14));
- }
- .rr-title::after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0.06rem;
- width: calc(100% - 4.2rem);
- height: 0.06rem;
- transform: translateX(-50%);
- border-radius: 999px;
- background: linear-gradient(
- 90deg,
- rgba(137, 222, 255, 0) 0%,
- rgba(137, 222, 255, 0.2) 18%,
- rgba(212, 246, 255, 0.72) 50%,
- rgba(137, 222, 255, 0.2) 82%,
- rgba(137, 222, 255, 0) 100%
- );
- box-shadow: 0 0 0.14rem rgba(113, 214, 255, 0.12);
- }
- .rr-time-box {
- display: flex;
- align-items: center;
- gap: 0.6rem;
- color: #a9d0ff;
- font-size: 0.82rem;
- }
- .rr-time {
- color: #fff;
- font-size: 1rem;
- font-weight: 600;
- }
- .rr-weather {
- color: #f6d067;
- font-size: 0.82rem;
- }
- .rr-fullscreen {
- color: #7fa7ce;
- cursor: pointer;
- }
- .rr-body {
- flex: 1;
- min-height: 0;
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- gap: 0.6rem;
- padding: 0.55rem 0.75rem 0.75rem;
- }
- .rr-side-column {
- min-height: 0;
- display: grid;
- grid-template-rows: 1fr 1fr 1fr;
- gap: 0.6rem;
- }
- .rr-panel,
- .rr-map-panel {
- position: relative;
- min-height: 0;
- overflow: hidden;
- border: 1px solid rgba(50, 116, 193, 0.55);
- background: linear-gradient(
- 180deg,
- rgba(7, 31, 70, 0.82),
- rgba(3, 18, 41, 0.92)
- ),
- linear-gradient(90deg, rgba(39, 127, 255, 0.1), transparent);
- box-shadow: inset 0 0 1rem rgba(0, 133, 255, 0.08),
- 0 0 1rem rgba(0, 0, 0, 0.18);
- }
- .rr-panel::before,
- .rr-map-panel::before {
- content: '';
- position: absolute;
- inset: 0.25rem;
- border: 1px solid rgba(98, 190, 255, 0.08);
- pointer-events: none;
- }
- .rr-panel {
- display: flex;
- flex-direction: column;
- padding: 0;
- }
- .rr-panel-title {
- margin-bottom: 0;
- min-height: 2rem;
- display: flex;
- align-items: center;
- padding: 0.2rem 0.6rem 0.2rem 1.75rem;
- font-family: '优设标题黑';
- font-size: 1rem;
- color: #d6ebff;
- letter-spacing: 0.06rem;
- position: relative;
- background: linear-gradient(180deg, #004085, #003568);
- border-bottom: 1px solid rgba(18, 76, 119, 0.9);
- flex-shrink: 0;
- }
- .rr-panel-title::before {
- content: '';
- position: absolute;
- left: 0.6rem;
- top: 50%;
- width: 0.72rem;
- height: 0.96rem;
- transform: translateY(-50%);
- background-image: url('@/assets/renewable_icon_1.svg');
- background-repeat: no-repeat;
- background-size: 100% 100%;
- background-position: center;
- }
- .rr-panel-sales {
- display: flex;
- flex-direction: column;
- }
- .rr-summary-strip {
- position: relative;
- display: flex;
- flex: 1 1 auto;
- align-items: center;
- justify-content: center;
- min-height: 0;
- padding: 0.5rem 0.55rem;
- overflow: hidden;
- background: radial-gradient(
- circle at center,
- rgba(57, 137, 255, 0.06),
- transparent 55%
- ),
- linear-gradient(180deg, rgba(5, 24, 66, 0.18), rgba(5, 24, 66, 0));
- }
- .rr-summary-item {
- position: relative;
- display: grid;
- grid-template-columns: clamp(2.5rem, 4vw, 4rem) minmax(0, 1fr);
- align-items: center;
- flex: 1 1 0;
- max-width: none;
- min-width: 0;
- gap: clamp(0.24rem, 0.35vw, 0.4rem);
- padding: 0 0.15rem;
- }
- .rr-summary-divider {
- position: absolute;
- right: 0;
- top: 14%;
- width: 1px;
- height: 72%;
- background: linear-gradient(
- 180deg,
- rgba(58, 126, 209, 0),
- rgba(58, 126, 209, 0.45),
- rgba(58, 126, 209, 0)
- );
- }
- .rr-summary-icon-box {
- width: clamp(2.5rem, 4vw, 4rem);
- flex: 0 0 clamp(2.5rem, 4vw, 4rem);
- display: flex;
- justify-content: center;
- }
- .rr-summary-icon-wrap {
- position: relative;
- width: clamp(2.5rem, 4vw, 4rem);
- height: clamp(2.5rem, 4vw, 4rem);
- flex-shrink: 0;
- }
- .rr-summary-icon-ring {
- position: absolute;
- inset: 0;
- border-radius: 50%;
- border: 1px solid rgba(125, 194, 255, 0.45);
- box-shadow: 0 0 0 0.15rem rgba(41, 118, 255, 0.18),
- inset 0 0 0.7rem rgba(91, 176, 255, 0.22);
- }
- .rr-summary-icon {
- position: absolute;
- left: 50%;
- top: 50%;
- width: clamp(1.8rem, 2.8vw, 2.8rem);
- height: clamp(1.8rem, 2.8vw, 2.8rem);
- border-radius: 50%;
- transform: translate(-50%, -50%);
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 1.5rem;
- font-weight: 700;
- color: #f3fbff;
- background: radial-gradient(
- circle at 35% 30%,
- rgba(124, 198, 255, 0.95),
- rgba(43, 112, 232, 0.96) 70%
- );
- box-shadow: 0 0 1rem rgba(69, 153, 255, 0.42),
- inset 0 -0.35rem 0.75rem rgba(9, 34, 86, 0.4);
- }
- .rr-summary-icon-img {
- width: 60%;
- height: 60%;
- object-fit: contain;
- filter: drop-shadow(0 0 0.35rem rgba(255, 255, 255, 0.16));
- }
- .rr-summary-content {
- min-width: 0;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: center;
- overflow: hidden;
- text-align: left;
- z-index: 1;
- }
- .rr-summary-label {
- color: #d9ebff;
- font-size: clamp(0.7rem, 0.9vw, 1rem);
- letter-spacing: 0.02rem;
- line-height: 1.2;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- text-shadow: 0 0 0.35rem rgba(79, 171, 255, 0.18);
- }
- .rr-summary-main {
- display: flex;
- align-items: flex-end;
- justify-content: flex-start;
- gap: 0.06rem;
- margin-top: 0.08rem;
- width: 100%;
- min-width: 0;
- flex-wrap: nowrap;
- overflow: hidden;
- }
- .rr-summary-value {
- color: #fff;
- font-size: clamp(1.2rem, 1.6vw, 1.8rem);
- line-height: 1;
- font-weight: 700;
- letter-spacing: 0.01rem;
- white-space: nowrap;
- text-shadow: 0 0 0.55rem rgba(255, 255, 255, 0.12);
- }
- .rr-summary-unit {
- color: rgba(255, 255, 255, 0.72);
- font-size: clamp(0.55rem, 0.7vw, 0.8rem);
- line-height: 1;
- margin-bottom: 0.02rem;
- white-space: nowrap;
- }
- .rr-summary-trend {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: center;
- gap: 0.02rem;
- min-width: 0;
- margin-left: 0.1rem;
- font-size: clamp(0.5rem, 0.6vw, 0.7rem);
- white-space: nowrap;
- flex-shrink: 0;
- align-self: stretch;
- }
- .rr-summary-trend-label {
- color: #8db2db;
- line-height: 1.2;
- }
- .rr-summary-trend-value {
- font-size: clamp(0.5rem, 0.65vw, 0.75rem);
- font-weight: 600;
- line-height: 1.2;
- }
- .rr-summary-trend.up .rr-summary-trend-value {
- color: #2bd38e;
- }
- .rr-summary-trend.warn .rr-summary-trend-value {
- color: #ff8a65;
- }
- .rr-chart-panel,
- .rr-mini-bar-panel,
- .rr-fill-chart,
- .rr-native-chart,
- .rr-map-body {
- width: 100%;
- height: 100%;
- min-height: 0;
- }
- .rr-chart-panel {
- flex: 1;
- min-height: 9rem;
- padding: 0.55rem 0.7rem 0;
- }
- .rr-mini-bar-panel {
- height: 6.2rem;
- margin-top: 0.2rem;
- padding: 0 0.7rem 0.55rem;
- }
- .rr-procurement-body {
- display: flex;
- flex: 1;
- min-height: 0;
- padding: 0.7rem 0.75rem 0.75rem;
- gap: 0.75rem;
- }
- .rr-procurement-pane {
- min-width: 0;
- min-height: 0;
- display: flex;
- flex-direction: column;
- }
- .rr-procurement-pane-area {
- flex: 1.1;
- }
- .rr-procurement-pane-bar {
- flex: 0.9;
- }
- .rr-pane-caption {
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 0.5rem;
- min-height: 1.2rem;
- padding: 0 0.15rem;
- color: #cfe6ff;
- font-size: 0.72rem;
- }
- .rr-pane-caption-right {
- justify-content: flex-start;
- }
- .rr-pane-legend {
- display: flex;
- align-items: center;
- gap: 0.8rem;
- color: #d6ebff;
- }
- .rr-legend-item {
- position: relative;
- padding-left: 0.9rem;
- white-space: nowrap;
- }
- .rr-legend-item::before {
- content: '';
- position: absolute;
- left: 0;
- top: 50%;
- width: 0.5rem;
- height: 0.12rem;
- transform: translateY(-50%);
- border-radius: 999px;
- }
- .rr-legend-item-blue::before {
- background: #3c87ff;
- box-shadow: 0 0 0.35rem rgba(60, 135, 255, 0.7);
- }
- .rr-legend-item-gold::before {
- background: #e5b15d;
- box-shadow: 0 0 0.35rem rgba(229, 177, 93, 0.7);
- }
- .rr-chart-panel-compact {
- padding: 0.15rem 0 0;
- }
- .rr-mini-bar-panel-fill {
- flex: 1;
- height: auto;
- min-height: 0;
- margin-top: 0;
- padding: 0.15rem 0 0;
- }
- .rr-inventory-body {
- flex: 1;
- min-height: 0;
- display: flex;
- gap: 0.4rem;
- padding: 0.5rem 0.6rem;
- }
- .rr-inv-left {
- flex: 0 0 48%;
- position: relative;
- min-height: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .rr-inv-right {
- flex: 1;
- min-width: 0;
- min-height: 0;
- display: flex;
- flex-direction: column;
- }
- .rr-inv-chart-wrap {
- position: relative;
- width: 100%;
- height: 100%;
- min-height: 8rem;
- }
- .rr-inv-center {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- text-align: center;
- pointer-events: none;
- }
- .rr-inv-center-value {
- display: block;
- color: #fff;
- font-size: clamp(1.1rem, 1.5vw, 1.7rem);
- font-weight: 700;
- line-height: 1;
- text-shadow: 0 0 0.6rem rgba(60, 135, 255, 0.3);
- }
- .rr-inv-center-label {
- display: block;
- margin-top: 0.15rem;
- color: #b4d4f2;
- font-size: clamp(0.58rem, 0.7vw, 0.78rem);
- }
- .rr-inv-trend-caption {
- flex-shrink: 0;
- color: #d4ebff;
- font-size: clamp(0.68rem, 0.8vw, 0.88rem);
- padding: 0.15rem 0.3rem 0;
- line-height: 1.4;
- }
- .rr-inv-trend-chart {
- position: relative;
- flex: 1;
- min-height: 0;
- }
- .rr-map-panel {
- display: flex;
- flex-direction: column;
- padding: 0;
- }
- .rr-map-head {
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 0.75rem;
- min-height: 2.2rem;
- padding: 0.35rem 0.75rem 0.2rem;
- }
- .rr-map-tabs {
- display: flex;
- gap: 0.5rem;
- }
- .rr-tab {
- min-width: 3.6rem;
- padding: 0.28rem 0.9rem;
- text-align: center;
- font-size: 0.76rem;
- color: #8fc0ff;
- border: 1px solid rgba(61, 128, 206, 0.45);
- background: rgba(5, 28, 62, 0.78);
- cursor: pointer;
- }
- .rr-tab.active {
- color: #fff;
- background: linear-gradient(180deg, #2d84ff, #1163fb);
- box-shadow: 0 0 0.75rem rgba(17, 99, 251, 0.3);
- }
- .rr-map-summary {
- display: flex;
- gap: 0.45rem;
- }
- .rr-map-summary-item {
- min-width: 4.8rem;
- padding: 0.3rem 0.55rem;
- text-align: center;
- font-size: 0.72rem;
- color: #a9d0ff;
- background: rgba(6, 34, 82, 0.68);
- border: 1px solid rgba(55, 120, 196, 0.4);
- }
- .rr-map-summary-item strong {
- display: block;
- margin-top: 0.15rem;
- color: #fff;
- font-size: 1rem;
- }
- .rr-map-body {
- flex: 1;
- padding: 0.2rem 0.35rem 0.35rem;
- }
- .rr-quality-grid {
- flex: 1;
- min-height: 0;
- display: grid;
- grid-template-columns: repeat(2, minmax(0, 1fr));
- gap: clamp(0.4rem, 0.6vw, 0.7rem);
- padding: clamp(0.4rem, 0.55vw, 0.65rem);
- }
- .rr-quality-card {
- display: flex;
- flex-direction: column;
- padding: clamp(0.4rem, 0.55vw, 0.65rem);
- border: 1px solid rgba(55, 120, 196, 0.35);
- border-radius: 4px;
- background: rgba(6, 34, 82, 0.55);
- }
- .rr-qc-title {
- color: #cfe6ff;
- font-size: clamp(0.62rem, 0.72vw, 0.82rem);
- font-weight: 600;
- margin-bottom: clamp(0.3rem, 0.4vw, 0.5rem);
- }
- .rr-qc-body {
- display: flex;
- align-items: center;
- gap: clamp(0.3rem, 0.5vw, 0.6rem);
- flex: 1;
- min-height: 0;
- }
- .rr-qc-icon {
- flex: 0 0 clamp(2.2rem, 3vw, 3.2rem);
- width: clamp(2.2rem, 3vw, 3.2rem);
- height: clamp(2.2rem, 3vw, 3.2rem);
- opacity: 0.85;
- }
- .rr-qc-icon svg {
- width: 100%;
- height: 100%;
- }
- .rr-qc-rates {
- flex: 1;
- display: flex;
- justify-content: space-around;
- gap: clamp(0.15rem, 0.3vw, 0.4rem);
- min-width: 0;
- }
- .rr-qc-col {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: clamp(0.15rem, 0.22vw, 0.28rem);
- min-width: 0;
- }
- .rr-qc-label {
- color: #9fc5ff;
- font-size: clamp(0.42rem, 0.52vw, 0.58rem);
- white-space: nowrap;
- }
- .rr-qc-val {
- font-size: clamp(0.7rem, 0.88vw, 1rem);
- font-weight: 700;
- line-height: 1;
- }
- .rr-qc-val-good { color: #2bd38e; }
- .rr-qc-val-bad { color: #ff6b6b; }
- .rr-qc-val-loss { color: #ffb648; }
- .rr-qc-bar {
- height: clamp(0.35rem, 0.45vw, 0.5rem);
- margin-top: clamp(0.3rem, 0.4vw, 0.5rem);
- border-radius: 2px;
- background: repeating-linear-gradient(
- -45deg,
- rgba(60, 135, 255, 0.5),
- rgba(60, 135, 255, 0.5) 3px,
- rgba(30, 80, 160, 0.3) 3px,
- rgba(30, 80, 160, 0.3) 6px
- );
- }
- .rr-equipment-body {
- flex: 1;
- min-height: 0;
- display: grid;
- grid-template-columns: repeat(2, minmax(0, 1fr));
- gap: 0.65rem;
- padding: 0.75rem;
- }
- .rr-equipment-gauge {
- display: flex;
- flex-direction: column;
- gap: 0.45rem;
- min-height: 0;
- }
- .rr-gauge-wrap {
- position: relative;
- flex: 1;
- min-height: 7rem;
- }
- .rr-equipment-list {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .rr-equipment-list li {
- display: flex;
- justify-content: space-between;
- gap: 0.6rem;
- padding: 0.38rem 0.48rem;
- margin-top: 0.28rem;
- font-size: 0.74rem;
- color: #b9d7ef;
- background: rgba(8, 35, 79, 0.66);
- border: 1px solid rgba(39, 99, 170, 0.4);
- }
- .rr-equipment-list strong {
- color: #fff;
- }
- /* 新的设备总览布局样式 */
- .rr-equipment-body-new {
- flex: 1;
- min-height: 0;
- display: grid;
- grid-template-columns: 1.2fr 1fr 1fr;
- gap: 0.5rem;
- padding: 0.5rem 0.75rem;
- align-items: stretch;
- }
- .rr-equip-left {
- display: flex;
- align-items: center;
- gap: 0.4rem;
- min-height: 0;
- overflow: hidden;
- }
- .rr-equip-donut-area {
- position: relative;
- flex: 0 0 50%;
- height: 100%;
- min-height: 10rem;
- }
- .rr-equip-donut-chart {
- width: 100%;
- height: 100%;
- }
- .rr-equip-donut-center {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- text-align: center;
- pointer-events: none;
- }
- .rr-equip-donut-val {
- display: block;
- color: #fff;
- font-size: clamp(1.1rem, 1.5vw, 1.7rem);
- font-weight: 700;
- line-height: 1;
- text-shadow: 0 0 0.6rem rgba(60, 135, 255, 0.3);
- }
- .rr-equip-donut-lbl {
- display: block;
- margin-top: 0.15rem;
- color: #b4d4f2;
- font-size: clamp(0.55rem, 0.65vw, 0.75rem);
- }
- .rr-equip-stats {
- flex: 1;
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 0.3rem 0.5rem;
- align-content: center;
- min-width: 0;
- }
- .rr-equip-stat-item {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- gap: 0.08rem;
- }
- .rr-equip-stat-val {
- color: #fff;
- font-size: clamp(0.85rem, 1.1vw, 1.3rem);
- font-weight: 700;
- line-height: 1.2;
- }
- .rr-equip-stat-lbl {
- color: #b4d4f2;
- font-size: clamp(0.5rem, 0.6vw, 0.7rem);
- }
- .rr-equip-gauge-col {
- display: flex;
- align-items: center;
- justify-content: center;
- min-height: 0;
- }
- .rr-equip-gauge-box {
- position: relative;
- width: 100%;
- height: 100%;
- min-height: 10rem;
- }
- .rr-equip-gauge-chart {
- width: 100%;
- height: 100%;
- }
- @media (max-width: 1600px) {
- .rr-side-column {
- grid-template-rows: 1fr 1fr 1fr;
- }
- .rr-summary-strip {
- padding: 0.4rem 0.35rem;
- }
- .rr-summary-item {
- gap: 0.2rem;
- padding: 0 0.1rem;
- grid-template-columns: 1.9rem minmax(0, 1fr);
- }
- .rr-summary-icon-box {
- width: 1.9rem;
- flex: 0 0 1.9rem;
- }
- .rr-summary-icon-wrap {
- width: 1.9rem;
- height: 1.9rem;
- }
- .rr-summary-icon {
- width: 1.35rem;
- height: 1.35rem;
- }
- .rr-summary-label {
- font-size: 0.42rem;
- }
- .rr-summary-value {
- font-size: 0.72rem;
- }
- .rr-summary-unit {
- font-size: 0.32rem;
- }
- .rr-summary-trend {
- font-size: 0.28rem;
- margin-left: 0.06rem;
- }
- .rr-summary-trend-value {
- font-size: 0.3rem;
- }
- }
- @media (min-width: 1800px) {
- .rr-summary-strip {
- padding: 0.55rem 0.6rem;
- }
- }
- @media (max-width: 1280px) {
- .rr-summary-strip {
- padding: 0.35rem 0.3rem;
- }
- .rr-summary-item {
- gap: 0.16rem;
- padding: 0 0.06rem;
- grid-template-columns: 1.75rem minmax(0, 1fr);
- }
- .rr-summary-icon-box {
- width: 1.75rem;
- flex: 0 0 1.75rem;
- }
- .rr-summary-icon-wrap {
- width: 1.75rem;
- height: 1.75rem;
- }
- .rr-summary-icon {
- width: 1.2rem;
- height: 1.2rem;
- }
- .rr-summary-label {
- font-size: 0.38rem;
- }
- .rr-summary-value {
- font-size: 0.65rem;
- }
- .rr-summary-unit {
- font-size: 0.28rem;
- }
- .rr-summary-trend {
- font-size: 0.26rem;
- margin-left: 0.05rem;
- }
- .rr-summary-trend-value {
- font-size: 0.28rem;
- }
- }
- @media (max-width: 1366px) {
- .rr-title {
- min-width: 27rem;
- height: 1.7rem;
- padding: 0 3.6rem 0.02rem;
- letter-spacing: 0;
- }
- .rr-title::before {
- width: calc(100% + 2.2rem);
- height: 0.72rem;
- }
- .rr-title::after {
- width: calc(100% - 3.4rem);
- }
- .rr-body {
- grid-template-columns: 1fr;
- grid-template-rows: auto auto auto;
- overflow: auto;
- }
- .rr-side-column {
- grid-template-columns: 1fr;
- grid-template-rows: repeat(3, minmax(12rem, auto));
- }
- .rr-map-panel {
- min-height: 28rem;
- }
- .rr-map-head {
- flex-wrap: wrap;
- }
- .rr-procurement-body,
- .rr-inventory-body {
- padding: 0.4rem;
- }
- .rr-inventory-body {
- flex-direction: column;
- }
- .rr-inv-left {
- flex: 0 0 auto;
- width: 100%;
- min-height: 12rem;
- }
- .rr-inv-right {
- min-height: 10rem;
- }
- }
- @media (max-width: 520px) {
- .rr-title {
- min-width: 15.8rem;
- height: 1.46rem;
- padding: 0 1.8rem 0;
- letter-spacing: 0;
- }
- .rr-title::before {
- width: calc(100% + 1.2rem);
- height: 0.56rem;
- }
- .rr-title::after {
- width: calc(100% - 2.6rem);
- bottom: 0.04rem;
- }
- .rr-summary-strip {
- justify-content: flex-start;
- flex-direction: column;
- gap: 0.6rem;
- }
- .rr-summary-item {
- padding: 0;
- max-width: none;
- grid-template-columns: 1.75rem minmax(0, 1fr);
- }
- .rr-summary-icon-box {
- width: 1.75rem;
- flex: 0 0 1.75rem;
- }
- .rr-summary-icon-wrap {
- width: 1.75rem;
- height: 1.75rem;
- }
- .rr-summary-icon {
- width: 1.2rem;
- height: 1.2rem;
- }
- .rr-summary-label {
- font-size: 0.42rem;
- }
- .rr-summary-value {
- font-size: 0.7rem;
- }
- .rr-summary-unit {
- font-size: 0.3rem;
- }
- .rr-summary-divider {
- display: none;
- }
- .rr-summary-trend {
- margin-left: 0.06rem;
- font-size: 0.28rem;
- }
- .rr-summary-trend-value {
- font-size: 0.3rem;
- }
- .rr-procurement-body {
- padding: 0.6rem;
- }
- .rr-inventory-body {
- padding: 0.4rem;
- }
- }
- </style>
- <style>
- .el-icon-_screen-full,
- .el-icon-_screen-restore {
- font-size: 1.2rem;
- cursor: pointer;
- transition: all 0.3s;
- color: #7fa7ce;
- }
- .el-icon-_screen-full:hover,
- .el-icon-_screen-restore:hover {
- color: #fff;
- transform: scale(1.1);
- }
- </style>
|