水质,土壤
parent
c88411f9c2
commit
06d9d03dea
|
|
@ -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.656eb39e.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.0d3437ad.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
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -186,6 +186,25 @@
|
|||
/>
|
||||
</view>
|
||||
</view>
|
||||
<!-- PH -->
|
||||
<view class="chart_section">
|
||||
<view class="top_box">
|
||||
<view class="tit">PH<text class="unit"></text></view>
|
||||
<view class="name">{{addressName}}</view>
|
||||
</view>
|
||||
<view class="mb-20rpx">
|
||||
<u-line></u-line>
|
||||
</view>
|
||||
<view class="cart_box">
|
||||
<qiun-data-charts
|
||||
v-if="loadingType!=0"
|
||||
:loadingType="loadingType"
|
||||
type="area"
|
||||
:opts="opts"
|
||||
:chartData="chart_ph"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
</view>
|
||||
<!-- 设置预警值 -->
|
||||
|
|
@ -270,6 +289,7 @@
|
|||
chart_k:{},//氮
|
||||
chart_n:{},//磷
|
||||
chart_p:{},//钾
|
||||
chart_ph:{},//ph
|
||||
//筛选
|
||||
q_start_time:'',
|
||||
q_end_time:'',
|
||||
|
|
@ -303,6 +323,7 @@
|
|||
n:'磷',
|
||||
p:'钾',
|
||||
k:'氮',
|
||||
ph:'PH'
|
||||
},
|
||||
keyToUnit:{
|
||||
temperature:'℃',
|
||||
|
|
@ -311,6 +332,7 @@
|
|||
n:'mg/kg',
|
||||
p:'mg/kg',
|
||||
k:'mg/kg',
|
||||
ph:''
|
||||
},
|
||||
numberToString:{
|
||||
1:'Ⅰ',
|
||||
|
|
@ -634,6 +656,21 @@
|
|||
this.chart_p = JSON.parse(JSON.stringify(res6));
|
||||
//end 钾 p
|
||||
|
||||
|
||||
//start ph
|
||||
let res7 = {
|
||||
categories: chartInfo.ph.categories,
|
||||
series: [
|
||||
{
|
||||
name:'PH',
|
||||
legendShape:'circle',
|
||||
data: chartInfo.ph.data,
|
||||
}
|
||||
]
|
||||
};
|
||||
this.chart_ph = JSON.parse(JSON.stringify(res7));
|
||||
//end ph
|
||||
|
||||
}
|
||||
}).catch(()=>{
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue