Browse Source

正太分布图提交

master
daikun1@bosssoft.com.cn 1 year ago
parent
commit
009da63f7f
  1. 16
      src/views/tjanalysis/zlanalysis/components/ztfbview.vue
  2. 31
      src/views/tjanalysis/zlanalysis/components/ztmath.ts
  3. 97
      src/views/tjanalysis/zlanalysis/index.vue

16
src/views/tjanalysis/zlanalysis/components/ztfbview.vue

@ -5,7 +5,7 @@
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import * as echarts from 'echarts' import * as echarts from 'echarts'
import * as math from './math' import * as math from './ztmath'
const dialogVisible = ref(false) // const dialogVisible = ref(false) //
@ -127,14 +127,14 @@ function setEchartData(xMin , xMax , yArr , fArr , threeSigLow , threeSigUp) {
max: xMax, max: xMax,
axisLabel: { axisLabel: {
textStyle: { textStyle: {
color: "rgba(255,255,255,1)", color: '#000000',
fontSize: 10 fontSize: 10
} }
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: "rgba(255,255,255,1)" color: "#000000"
} }
}, },
splitLine: { splitLine: {
@ -151,13 +151,13 @@ function setEchartData(xMin , xMax , yArr , fArr , threeSigLow , threeSigUp) {
axisLine: { axisLine: {
show: false, show: false,
lineStyle: { lineStyle: {
color: "rgba(255,255,255,1)" color: "#000000"
} }
}, },
axisLabel: { axisLabel: {
show: true, show: true,
textStyle: { textStyle: {
color: "rgba(255,255,255,1)", color: " #6B8E23",
fontSize: 10 fontSize: 10
} }
}, },
@ -322,5 +322,9 @@ function setEchartData(xMin , xMax , yArr , fArr , threeSigLow , threeSigUp) {
} }
} }
onMounted(() => {
// const script = document.createElement('script');
// script.setAttribute('src', math);
// document.head.appendChild(script);
})
</script> </script>

31
src/views/tjanalysis/zlanalysis/components/ztmath.ts

@ -0,0 +1,31 @@
import { forEach } from './../../../../utils/tree'
// 计算平均值
export const mean = (datas: Array<String>) => {
let sum = 0.00
if (datas == null || datas.length == 0) return 0.00;
datas.forEach((item)=>{
sum = sum + parseFloat(item.toString())
})
return sum / datas.length
}
// 计算方差
export const std = (datas: Array<String>) => {
let xSum = 0.00
let xAvg = 0.00
let avgX = 0.00
const arrNum = datas.length
for (let i = 0; i < arrNum; i++){
xSum += parseFloat(datas[i].toString());
}
xAvg = xSum / arrNum;//平均值
//平均差求绝对值
avgX = Math.abs(0 - xAvg);
return Math.pow(avgX, 2)
}

97
src/views/tjanalysis/zlanalysis/index.vue

@ -169,7 +169,8 @@
<div id="myEcharts2" :style="{ width: '50%', height: '300px' }" v-loading="ec2Loading"></div> <div id="myEcharts2" :style="{ width: '50%', height: '300px' }" v-loading="ec2Loading"></div>
</div> </div>
<div class="charts" v-show="tabIndex == 1"> <div class="charts" v-show="tabIndex == 1">
<div id="myEcharts3" :style="{ width: '80vw', height: '300px' }" v-loading="ec3Loading"></div> <!-- <div id="myEcharts3" :style="{ width: '80vw', height: '300px' }" v-loading="ec3Loading"></div> -->
<ZtfbView ref="myEcharts3Ref" v-loading="ec3Loading" />
</div> </div>
<div class="charts" v-show="tabIndex == 2"> <div class="charts" v-show="tabIndex == 2">
<div id="myEcharts4" :style="{ width: '80vw', height: '300px' }" v-loading="ec4Loading"></div> <div id="myEcharts4" :style="{ width: '80vw', height: '300px' }" v-loading="ec4Loading"></div>
@ -188,10 +189,11 @@ import * as ItembasicApi from '@/api/spc/itembasic'
import * as TemplateItemDetailsApi from '@/api/spc/templateItemDetails' import * as TemplateItemDetailsApi from '@/api/spc/templateItemDetails'
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict' import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
import {formatDate} from '@/utils/formatTime' import {formatDate} from '@/utils/formatTime'
// import { listSimpleDictData } from '@/api/system/dict/dict.data' import ZtfbView from './components/ztfbview.vue'
let echart = echarts let echart = echarts
const myEcharts3Ref = ref()
// //
const projectList = ref() const projectList = ref()
// //
@ -351,87 +353,10 @@ function setChart2(rangeData) {
chart.resize() chart.resize()
} }
} }
function setChart3() { function setChart3(ztData) {
let chart = echart.init(document.getElementById('myEcharts3'), 'light') // console.log(ztData , 'daikun')
// if (ztData != null) {
chart.setOption({ myEcharts3Ref.value.open(ztData.datas , ztData.downLimit , ztData.upLimit)
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'cross',
crossStyle: {
color: '#999'
}
}
},
legend: {
data: ['Evaporation', 'Precipitation', 'Temperature']
},
grid: {
left: '3%',
right: '4%',
top: '15%',
bottom: '10%',
containLabel: true
},
xAxis: [
{
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
axisPointer: {
type: 'shadow'
}
}
],
yAxis: [
{
type: 'value',
name: 'Precipitation',
min: 0,
max: 250,
interval: 50,
axisLabel: {
formatter: '{value} ml'
}
},
{
type: 'value',
name: 'Temperature',
min: 0,
max: 25,
interval: 5,
axisLabel: {
formatter: '{value} °C'
}
}
],
series: [
{
name: '原数据频率',
type: 'bar',
tooltip: {
valueFormatter: function (value) {
return value + ' ml'
}
},
data: [2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3]
},
{
name: '正态分布',
type: 'line',
yAxisIndex: 1,
tooltip: {
valueFormatter: function (value) {
return value + ' °C'
}
},
data: [2.0, 2.2, 3.3, 4.5, 6.3, 10.2, 20.3, 23.4, 23.0, 16.5, 12.0, 6.2]
}
]
})
window.onresize = function () {
//
chart.resize()
} }
} }
function setChart4(ybData) { function setChart4(ybData) {
@ -548,6 +473,7 @@ const changTabIndex = async (tIndexV) => {
tabIndex.value = tIndexV tabIndex.value = tIndexV
queryParams.ecTab = tIndexV queryParams.ecTab = tIndexV
const dvDatas = await ZlnalysisAPI.getZcnlEcharts(queryParams) const dvDatas = await ZlnalysisAPI.getZcnlEcharts(queryParams)
// console.log(dvDatas , '333333')
if (dvDatas != null) { if (dvDatas != null) {
if (tIndexV == 0) { if (tIndexV == 0) {
setChart1(dvDatas.menMap) setChart1(dvDatas.menMap)
@ -555,7 +481,8 @@ const changTabIndex = async (tIndexV) => {
ec1Loading.value = false ec1Loading.value = false
ec2Loading.value = false ec2Loading.value = false
} else if (tIndexV == 1) { } else if (tIndexV == 1) {
setChart3(dvDatas.ztMap)
ec3Loading.value = false
} else if (tIndexV == 2) { } else if (tIndexV == 2) {
setChart4(dvDatas.ybMap) setChart4(dvDatas.ybMap)
ec4Loading.value = false ec4Loading.value = false

Loading…
Cancel
Save