123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960 |
- <template>
- <view class="stationpower">
- <view class="box-bg">
- <uni-nav-bar :fixed="true" dark left-icon="left" background-color='#202246' :title="stationName"
- @clickLeft="back" />
- </view>
- <view class="power_main">
- <view class="flex justify-center">
- <view class="power_tab">
- <text v-for="(item,index) in powerTabData" :key="index" @click="changePowerTab(item)"
- :style="item.showColor ? 'background: #4287FF;color:#fff': ''">{{item.nameZN}}</text>
- </view>
- </view>
- <view class="fdwcl" v-if="powerTab === 'DL'">
- <view class="fdwcl_DataAll" v-for="(item,index) in powerProgressData" :key="index">
- <uni-row class="fdwcl_Data flex justify-between">
- <uni-col :span="8" class="fdwcl_Data_1 flex">
- <image src="../../static/jnImage/indexPage/windIcon.png" mode=""></image>
- <text>{{item.inPower}}万kWh</text>
- </uni-col>
- <uni-col :span="8" class="fdwcl_Data_2">
- <text>{{item.name}}</text>
- </uni-col>
- <uni-col :span="8" class="fdwcl_Data_3 flex justify-end">
- <text>{{item.allPower}}万kWh</text>
- </uni-col>
- </uni-row>
- <view class="fdwcl_Data_msg">
- <view class="show_msg" :style="showProgress(item, index)">
- </view>
- </view>
- </view>
- </view>
- <view class="ycdl" v-else>
- <view class="ycdl_tits flex justify-center">
- <image src="../../static/jnImage/powerPage/sqrfdl.png" mode=""></image>
- <text>本期预测电量</text>
- </view>
- <view class="ycdl_station">
- <uni-row class="ycdl_station_row">
- <uni-col :span="8" v-for="(item,index) in powerBQData" :key="index">
- <view class="ycdl_station_col">
- <view class="ycdl_data_col_top ">
- <text>{{item.inPower}}</text>
- <text>kWh</text>
- </view>
- <view class="ycdl_data_col_bot flex">
- <image src="../../static/jnImage/powerPage/clockW.png" mode=""></image>
- <text>{{item.date}}</text>
- </view>
- </view>
- </uni-col>
- </uni-row>
- </view>
- <view class="ycdl_tits flex justify-center">
- <image src="../../static/jnImage/powerPage/sqrfdl.png" mode=""></image>
- <text>上期日发电量</text>
- </view>
- <view class="ycdl_msg" v-for="(item,index) in powerSQData" :key="index">
- <view class="ycdl_title flex">
- <image src="../../static/jnImage/powerPage/clock.png" mode=""></image>
- <text>{{item.date}}</text>
- </view>
- <view class="ycdl_data">
- <uni-row class="ycdl_data_row">
- <uni-col :span="12" v-for="(it, idx) in dayPowerSS" :key="idx+5">
- <view class="ycdl_data_col flex">
- <view class="ycdl_data_col_left">
- <text>{{it}}</text>
- </view>
- <view class="ycdl_data_col_right flex justify-between">
- <text>{{Math.ceil(item.inPower/10000)}}</text>
- <text>万MW</text>
- </view>
- </view>
- </uni-col>
- </uni-row>
- </view>
- </view>
- <view class="ycdl_tits flex justify-center">
- <image src="../../static/jnImage/powerPage/tqrfdl.png" mode=""></image>
- <text>同期日发电量</text>
- </view>
- <view class="ycdl_msg" v-for="(item,index) in powerTQData" :key="index">
- <view class="ycdl_title flex">
- <image src="../../static/jnImage/powerPage/clock.png" mode=""></image>
- <text>{{item.date}}</text>
- </view>
- <view class="ycdl_data">
- <uni-row class="ycdl_data_row">
- <uni-col :span="12" v-for="(it,idx) in dayPowerSS" :key="idx+2">
- <view class="ycdl_data_col flex">
- <view class="ycdl_data_col_left">
- <text>{{it}}</text>
- </view>
- <view class="ycdl_data_col_right flex justify-between">
- <text>{{item.inPower}}</text>
- <text>MW</text>
- </view>
- </view>
- </uni-col>
- </uni-row>
- </view>
- </view>
- </view>
- <view class="rdldb" v-if="powerTab === 'DL'">
- <view class="rdldb_title flex justify-center">
- <image src="../../static/jnImage/powerPage/powerDayIcon.png" mode=""></image>
- <text>日发电量</text>
- </view>
- <view class="qiun-charts">
- <qiun-data-charts type="column" :opts="optsDay" :chartData="chartDataDay" />
- </view>
- <view class="rdldb_title flex justify-center">
- <image src="../../static/jnImage/powerPage/powerDayIcon.png" mode=""></image>
- <text>月发电量</text>
- </view>
- <view class="qiun-charts">
- <qiun-data-charts type="column" :opts="optsMonth" :chartData="chartDataMonth" />
- </view>
- </view>
- <view class="xsfsgl" v-else>
- <view class="xsfsgl_title flex justify-center">
- <image src="../../static/jnImage/powerPage/72clock.png" mode=""></image>
- <text>未来3小时风速功率</text>
- </view>
- <view class="qiun-chartsLine">
- <qiun-data-charts type="mix" :opts="optsLine" :chartData="chartDataLine" />
- </view>
- </view>
- </view>
- <station-bar ref="stationBar"></station-bar>
- </view>
- </template>
- <script>
- import stationBar from '../common/stationTab.vue'
- import {
- electricityStatisticsApi,
- statisticsHisdataApi,
- bulletinappCzforecastApi,
- forecastShortApi
- } from '../../api/power.js'
- import {
- bulletinappBulletinApi
- } from '../../api/report.js'
- var uChartsInstance = {};
- export default {
- onLoad: function(e) {
- },
- components: {
- stationBar
- },
- data() {
- return {
- stationName: '',
- stationWpid: '',
- stationTab: '',
- powerTab: 'DL',
- yearTab: 'month',
- powerTabData: [],
- yearData: [],
- powerProgressData: [],
- powerBQData: [],
- powerSQData: [],
- powerTQData: [],
- chartDataDay: {},
- chartDataMonth: {},
- chartDataLine: {},
- optsDay: {},
- optsMonth: {},
- optsLine: {},
- dayPowerSS: ['预测电量', '实发电量'],
- }
- },
- created() {
- this.stationName = uni.getStorageSync('stationName')
- this.stationWpid = uni.getStorageSync('stationWpid')
- this.getReportData()
- this.powerTabData = [{
- nameZN: '电量',
- nameEN: 'DL',
- showColor: true
- },
- {
- nameZN: '预测',
- nameEN: 'YC',
- showColor: false
- }
- ]
- this.yearData = [{
- nameZN: '月',
- nameEN: 'month',
- showColor: true
- },
- {
- nameZN: '年',
- nameEN: 'year',
- showColor: false
- }
- ]
- },
- mounted() {
- this.$refs.stationBar.showTab = '电量预测'
- // this.getPowerBar()
- this.getStationDayPowerData()
- this.getStationMonthPowerData()
- },
- methods: {
- back() {
- this.$tab.switchTab('/pages/home/index')
- },
- stationTabXY(it) {
- this.stationTab = it
- },
- // 获取场站日发电量
- getStationDayPowerData() {
- let that = this
- let params = {
- wpid: that.stationWpid
- }
- statisticsHisdataApi(params).then(res => {
- if (res && res.data) {
- that.getPowerBar('day', res.data.data)
- }
- })
- },
- // 获取场站月发电量
- getStationMonthPowerData() {
- let that = this
- let params = {
- wpId: that.stationWpid,
- timetype: 'month',
- year: new Date().getFullYear()
- }
- electricityStatisticsApi(params).then(res => {
- if (res && res.data) {
- that.getPowerBar('month', res.data.value)
- }
- })
- },
- getPowerBar(type, values) {
- let opts = {
- color: ["#1890FF", "#91CB74", "#FAC858", "#EE6666", "#73C0DE", "#3CA272", "#FC8452", "#9A60B4",
- "#ea7ccc"
- ],
- padding: [15, 15, 0, 5],
- enableScroll: false,
- legend: {
- show: false
- },
- xAxis: {
- disableGrid: true,
- rotateLabel: true,
- axisLineColor: "#A49EAC",
- fontColor: "#A49EAC",
- fontSize: 10,
- marginTop: 5,
- titleFontColor: "#A49EAC",
- titleFontSize: 10,
- titleOffsetY: -18
- },
- yAxis: {
- showTitle: true,
- data: [{
- min: 0,
- fontColor: "#A49EAC",
- title: "(万kwh)",
- titleFontColor: "#A49EAC",
- titleFontSize: 10
- }]
- },
- extra: {
- column: {
- type: "group",
- width: 15,
- activeBgColor: "#000000",
- activeBgOpacity: 0.08
- }
- }
- }
- let proColor = ['#6C4B9E', '#323A97', '#4951B2', '#4287FF', '#3CB8FE', '#1AA7B5', '#5183B6', '#9F65C1',
- '#766FF1', '#4951B2',
- ]
- //模拟服务器返回数据,如果数据格式和标准格式不同,需自行按下面的格式拼接
- if (type === 'day') {
- let valData = []
- if (values.length === 0) {
- valData = [{
- rfdldb: 250000,
- recordDate: '2023-12-05'
- }]
- } else {
- valData = values
- }
- this.dayBarData(opts, proColor, valData)
- } else if (type === 'month') {
- this.monthBarData(opts, proColor, values)
- }
- },
- dayBarData(opts, proColor, values) {
- let xAxis = []
- let series = []
- values.forEach((item, index) => {
- xAxis.push(item.recordDate.substring(5))
- let obj = {
- color: '',
- name: '',
- textSize: 10,
- textColor: "#A49EAC",
- value: item.rfdldb / 1000
- }
- proColor.forEach((it, idx) => {
- if (index.toString().length > 1) {
- obj.color = proColor[index.toString().slice(-1)]
- } else {
- obj.color = proColor[index]
- }
- })
- series.push(obj)
- })
- let res = {
- categories: xAxis,
- series: [{
- name: '日发电量',
- textColor: "#FFFFFF",
- textSize: 12,
- data: series
- }]
- };
- this.optsDay = opts
- this.chartDataDay = JSON.parse(JSON.stringify(res));
- },
- monthBarData(opts, proColor, values) {
- let xAxis = []
- let series = []
- values.forEach((item, index) => {
- xAxis.push((index + 1) + '月')
- let obj = {
- color: '',
- name: '',
- textSize: 10,
- textColor: "#A49EAC",
- value: item.sjdl
- }
- proColor.forEach((it, idx) => {
- if (index.toString().length > 1) {
- obj.color = proColor[index.toString().slice(-1)]
- } else {
- obj.color = proColor[index]
- }
- })
- series.push(obj)
- })
- let res = {
- categories: xAxis,
- series: [{
- name: '实发电量',
- textColor: "#FFFFFF",
- textSize: 12,
- data: series
- }]
- };
- opts.xAxis.title = '月'
- this.optsMonth = opts
- this.chartDataMonth = JSON.parse(JSON.stringify(res));
- },
- //获取场站预测数据
- getPowerAllData() {
- let that = this
- bulletinappCzforecastApi({
- wpId: that.stationWpid
- }).then(res => {
- if (res && res.data) {
- res.data.forEach(item => {
- let objBQ = {
- date: item.date,
- inPower: item.ycdl
- }
- that.powerBQData.push(objBQ)
- let objSQ = {
- date: item.date,
- inPower: item.sqrfdl,
- allPower: item.sqycdl
- }
- that.powerSQData.push(objSQ)
- let objTQ = {
- date: item.date,
- inPower: item.tqrfdl,
- allPower: item.tqycdl
- }
- that.powerTQData.push(objTQ)
- })
- }
- })
- },
- getSevenTwoData() {
- let that = this
- let threeDays = new Date(new Date().getTime() + 24 * 60 * 60 * 1000)
- let params = {
- wpId: that.stationWpid,
- beginDate: new Date().getFullYear() + '-' + (new Date().getMonth() + 1) + '-' + new Date()
- .getDate(),
- endDate: threeDays.getFullYear() + '-' + (threeDays.getMonth() + 1) + '-' + threeDays.getDate()
- }
- forecastShortApi(params).then(res => {
- if (res && res.data) {
- let nowDate = new Date(that.getTimeDaya()).getTime()
- let showData = []
- if (res.data[that.stationWpid].length > 0) {
- res.data[that.stationWpid].forEach((it, index) => {
- if (nowDate === it.hours) {
- showData = res.data[that.stationWpid].slice(index, index + 10)
- }
- })
- }
- // that.getLineBar(res.data[that.stationWpid])
- that.getLineBar(showData)
- }
- })
- },
- //获取时间
- getTimeDaya() {
- let currentDate = new Date()
- let year = currentDate.getFullYear()
- let month = currentDate.getMonth() + 1
- let day = currentDate.getDate()
- let hour = currentDate.getHours()
- let minute = currentDate.getMinutes() < 10 ? '0' + currentDate.getMinutes() : currentDate
- .getMinutes()
- let min = ''
- if (minute > 0 && minute < 15) {
- min = '00'
- } else if (minute > 14 && minute < 30) {
- min = '15'
- } else if (minute > 29 && minute < 45) {
- min = '30'
- } else if (minute > 44 && minute < 59) {
- min = '45'
- }
- return year + '-' + month + '-' + day + ' ' + hour + ':' + min + ':00'
- },
- getLineBar(values) {
- let opts = {
- color: ["#1890FF", "#91CB74", "#FAC858", "#EE6666", "#73C0DE", "#3CA272", "#FC8452", "#9A60B4",
- "#ea7ccc"
- ],
- padding: [15, 15, 0, 5],
- enableScroll: false,
- legend: {
- show: true
- },
- xAxis: {
- rotateLabel: true,
- scrollShow: true,
- rotateAngle: 90,
- axisLineColor: "#A49EAC",
- fontColor: "#A49EAC",
- fontSize: 10,
- marginTop: 5
- },
- yAxis: {
- showTitle: true,
- disabled: false,
- disableGrid: false,
- splitNumber: 5,
- gridType: "dash",
- dashLength: 4,
- gridColor: "#CCCCCC",
- padding: 10,
- data: [{
- position: "left",
- title: "MW",
- fontColor: "#A49EAC",
- titleFontColor: "#A49EAC",
- titleFontSize: 10
- },
- {
- position: "right",
- min: 0,
- max: 20,
- title: "m/s",
- textAlign: "left",
- fontColor: "#A49EAC",
- titleFontColor: "#A49EAC",
- titleFontSize: 10
- }
- ]
- },
- extra: {
- mix: {
- column: {
- width: 20
- }
- }
- }
- }
- let sjglArr = []
- let ycglArr = []
- let sjfsArr = []
- let xAxisArr = []
- if (values.length > 0) {
- values.forEach(item => {
- xAxisArr.push(this.changTime(item.hours))
- sjglArr.push(item.sjgl)
- ycglArr.push(item.ycgl)
- sjfsArr.push(item.pjfs)
- })
- }
- let res = {
- categories: xAxisArr,
- series: [{
- name: "实际功率",
- type: "line",
- color: "#25a1ff",
- data: sjglArr
- },
- {
- name: "预测功率",
- type: "line",
- color: "#bc39aa",
- data: ycglArr
- },
- {
- name: "实际风速",
- index: 2,
- type: "line",
- color: "#00bd4c",
- data: sjfsArr
- }
- ]
- };
- this.optsLine = opts
- this.chartDataLine = JSON.parse(JSON.stringify(res));
- },
- //时间转换
- changTime(date) {
- // let str = (new Date(date).getMonth() + 1) + '-' + new Date(date).getDate() + ' ' + new Date(date)
- // .getHours() + ':'
- let str = new Date(date).getHours() + ':' + (new Date(date).getMinutes() < 10 ? '0' + new Date(date)
- .getMinutes() : new Date(date).getMinutes())
- return str
- },
- changePowerTab(item) {
- this.powerTabData.forEach(it => {
- it.showColor = false
- if (it.nameEN === item.nameEN) {
- item.showColor = true
- this.powerTab = it.nameEN
- }
- })
- if (this.powerTab === 'DL') {
- this.getReportData()
- this.getStationDayPowerData()
- this.getStationMonthPowerData()
- } else {
- this.getPowerAllData()
- this.getSevenTwoData()
- }
- },
- changeYearTab(item) {
- this.yearData.forEach(it => {
- it.showColor = false
- if (it.nameEN === item.nameEN) {
- item.showColor = true
- this.yearTab = it.nameEN
- }
- })
- },
- showProgress(item, index) {
- let indexX = index
- if (index > 9) {
- indexX = index - 9
- }
- let proColor = ['#6C4B9E', '#323A97', '#4951B2', '#4287FF', '#3CB8FE', '#1AA7B5', '#5183B6', '#9F65C1',
- '#766FF1'
- ]
- let pro = ((item.inPower / item.allPower).toFixed(2)) * 100 + '%'
- let showColor = proColor[indexX]
- let ss = `width: ${pro};background: ${showColor}`
- return ss
- },
- getReportData() {
- let that = this
- bulletinappBulletinApi({
- wpId: that.stationWpid
- }).then(res => {
- if (res && res.data) {
- that.reportDataAll = res.data
- let datas = res.data
- that.powerProgressData = [{
- type: 'wind',
- inPower: datas['月发电量'],
- allPower: datas['月计划发电量'],
- name: '月发电完成率'
- },
- {
- type: 'wind',
- inPower: datas['年发电量'],
- allPower: datas['年计划发电量'],
- name: '年发电完成率'
- }
- ]
- }
- })
- },
- },
- }
- </script>
- <style lang="scss">
- page {
- background-color: #202246;
- }
- .stationpower {
- width: 100vw;
- background: url('../../static/jnImage/loginPage/windBack.png'), url('../../static/jnImage/loginPage/backWav.png');
- background-repeat: no-repeat, repeat;
- background-size: 100% 260px, 100% 5px;
- .box-bg {
- width: 100vw;
- padding: 0;
- .uni-navbar {
- .uni-navbar__content {
- padding: 5px 0;
- height: 50px;
- }
- }
- }
- .power_main {
- padding: 25px;
- // margin: 20px 0;
- .power_tab {
- text {
- display: inline-block;
- width: 80px;
- height: 25px;
- border: 1px solid #4287FF;
- text-align: center;
- color: #4287FF;
- line-height: 25px;
- letter-spacing: 2px;
- }
- }
- .fdwcl {
- .fdwcl_title {
- width: 130px;
- height: 45px;
- padding-left: 10px;
- margin-top: 10px;
- background: linear-gradient(90deg, #333976, transparent);
- align-items: center;
- image {
- width: 24px;
- height: 22px;
- }
- text {
- margin-left: 10px;
- font-size: 16px;
- color: #fff;
- }
- }
- .yearTab {
- width: 80px;
- height: 25px;
- border-radius: 20px;
- background: #0B143E;
- margin-top: 20px;
- text {
- display: inline-block;
- width: 40px;
- height: 25px;
- border-radius: 20px;
- text-align: center;
- color: #4287FF;
- line-height: 25px;
- }
- }
- .fdwcl_DataAll {
- margin-top: 10px;
- .fdwcl_Data {
- .fdwcl_Data_1 {
- image {
- width: 18px;
- height: 18px;
- }
- text {
- margin-left: 5px;
- font-size: 28upx;
- color: #A49EAC;
- position: relative;
- top: 0px;
- }
- }
- .fdwcl_Data_2 {
- text {
- font-size: 32upx;
- color: #A49EAC;
- }
- }
- .fdwcl_Data_3 {
- text {
- font-size: 28upx;
- color: #A49EAC;
- }
- }
- }
- .fdwcl_Data_msg {
- width: 100%;
- height: 20px;
- border-radius: 5px;
- background: #0B143E;
- .show_msg {
- height: 20px;
- background: #6C4B9E;
- border-radius: 5px 0 0 5px;
- }
- }
- }
- }
- .rdldb {
- padding-bottom: 20px;
- .rdldb_title {
- width: 130px;
- height: 45px;
- padding-left: 10px;
- margin-top: 10px;
- background: linear-gradient(90deg, #333976, transparent);
- align-items: center;
- image {
- width: 24px;
- height: 22px;
- }
- text {
- margin-left: 10px;
- font-size: 16px;
- color: #fff;
- }
- }
- .qiun-charts {
- width: 100%;
- height: 300px;
- margin: 10px 0;
- }
- }
- .ycdl {
- margin-top: 10px;
- .ycdl_tits {
- width: 160px;
- height: 45px;
- padding-left: 10px;
- margin-top: 10px;
- background: linear-gradient(90deg, #333976, transparent);
- align-items: center;
- image {
- width: 24px;
- height: 22px;
- }
- text {
- margin-left: 10px;
- font-size: 16px;
- color: #fff;
- }
- }
- .ycdl_station {
- .ycdl_station_row {
- margin: 10px 0;
- .ycdl_station_col {
- height: 65px;
- width: 95%;
- background-color: #2E336D;
- .ycdl_data_col_top {
- height: 40px;
- text {
- display: inline-block;
- font-size: 28upx;
- margin-left: 10px;
- }
- text:nth-of-type(1) {
- color: #fff;
- width: 100%;
- position: relative;
- top: 8px;
- font-size: 36upx;
- }
- text:nth-of-type(2) {
- color: #6274A1;
- position: relative;
- top: 10px;
- right: -50px;
- }
- }
- .ycdl_data_col_bot {
- height: 25px;
- background: #1AA7B5;
- image {
- width: 15px;
- height: 15px;
- position: relative;
- top: 5px;
- left: 5px;
- }
- text {
- font-size: 28upx;
- color: #fff;
- margin-left: 10px;
- line-height: 25px;
- }
- }
- }
- }
- }
- .ycdl_msg {
- .ycdl_title {
- image {
- width: 15px;
- height: 15px;
- position: relative;
- top: 3px;
- }
- text {
- font-size: 32upx;
- color: #676D9C;
- margin-left: 10px;
- }
- }
- .ycdl_data {
- margin-top: 5px;
- .ycdl_data_row {
- .ycdl_data_col {
- width: 98%;
- height: 20px;
- margin-bottom: 5px;
- background: #2E336D;
- border-radius: 5px;
- .ycdl_data_col_left {
- width: 50%;
- height: 20px;
- color: #fff;
- font-size: 30upx;
- background: #3F4572;
- border-radius: 5px;
- text {
- margin-left: 5px;
- }
- }
- .ycdl_data_col_right {
- height: 20px;
- color: #fff;
- font-size: 32upx;
- width: 48%;
- text:nth-of-type(1) {
- margin-left: 5px;
- width: 50%;
- font-size: 32upx;
- color: #fff;
- position: relative;
- top: 3px;
- }
- text:nth-of-type(2) {
- font-size: 22upx;
- color: #96B5D5;
- position: relative;
- top: 4px;
- }
- }
- }
- }
- }
- }
- }
- .xsfsgl {
- padding-bottom: 20px;
- .xsfsgl_title {
- width: 160px;
- height: 45px;
- padding-left: 10px;
- margin-top: 10px;
- background: linear-gradient(90deg, #333976, transparent);
- align-items: center;
- image {
- width: 24px;
- height: 22px;
- }
- text {
- margin-left: 10px;
- font-size: 16px;
- color: #fff;
- }
- }
- .qiun-chartsLine {
- width: 100%;
- height: 300px;
- margin: 10px 0;
- }
- }
- }
- }
- </style>
|