修改bug
parent
06d9d03dea
commit
52a1dbdc83
|
|
@ -1,2 +1,2 @@
|
|||
<!DOCTYPE html><html lang="zh-CN"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><title></title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
|
||||
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel="stylesheet" href="/static/index.97465e7b.css"></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id="app"></div><script src="/static/js/chunk-vendors.959091ef.js"></script><script src="/static/js/index.0d3437ad.js"></script></body></html>
|
||||
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel="stylesheet" href="/static/index.97465e7b.css"></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id="app"></div><script src="/static/js/chunk-vendors.959091ef.js"></script><script src="/static/js/index.6fcd562d.js"></script></body></html>
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -187,7 +187,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<!-- PH -->
|
||||
<view class="chart_section">
|
||||
<view class="chart_section" v-if="chart_ph.isShow">
|
||||
<view class="top_box">
|
||||
<view class="tit">PH<text class="unit"></text></view>
|
||||
<view class="name">{{addressName}}</view>
|
||||
|
|
@ -644,6 +644,7 @@
|
|||
//end 磷 n
|
||||
//start 钾 p
|
||||
let res6 = {
|
||||
isShow:!!chartInfo.p,
|
||||
categories: chartInfo.p.categories,
|
||||
series: [
|
||||
{
|
||||
|
|
@ -656,15 +657,17 @@
|
|||
this.chart_p = JSON.parse(JSON.stringify(res6));
|
||||
//end 钾 p
|
||||
|
||||
|
||||
|
||||
|
||||
//start ph
|
||||
let res7 = {
|
||||
categories: chartInfo.ph.categories,
|
||||
isShow:!!chartInfo.ph,
|
||||
categories: chartInfo.ph?.categories,
|
||||
series: [
|
||||
{
|
||||
name:'PH',
|
||||
legendShape:'circle',
|
||||
data: chartInfo.ph.data,
|
||||
data: chartInfo.ph?.data,
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue