浏览代码

IPR产层分析曲线图,纵轴数据标识修改

chenwen 1 月之前
父节点
当前提交
f70c9fa76b
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/pages/analysis/IPR.vue

+ 3 - 3
src/pages/analysis/IPR.vue

@@ -104,7 +104,7 @@
 			<div class="ipr-box">
 				<div class="ipr-header">
 					<el-select v-model="regressionConfig.ySort" style="margin-right:10px;width:100px;" @change="drawCurve">
-						<el-option label="流动压" value="flow"/>
+						<el-option label="流动压" value="flow"/>
 						<el-option label="深度差" value="depth"/>
 					</el-select>
 					<el-select v-model="regressionConfig.order" style="margin-right:10px;width:100px;" @change="drawCurve">
@@ -328,7 +328,7 @@
 	const regressionConfig=reactive({
 		order:2,
 		ySort:'flow',
-		yUnit:'流动压(KPa)'
+		yUnit:'流动压(KPa)'
 	})
 	let drawSerials=null
 	const drawCurve=(tipIf)=>{
@@ -342,7 +342,7 @@
 		
 		
 		let pressKey=regressionConfig.ySort=='depth'?'depthDiff':'flowPressDiff'
-		regressionConfig.yUnit=regressionConfig.ySort=='depth'?'深度差(m)':'流动压(KPa)'
+		regressionConfig.yUnit=regressionConfig.ySort=='depth'?'深度差(m)':'流动压(KPa)'
 		
 		drawSerials=[{name:'液量',datas:[]},{name:'油量',datas:[]},{name:'水量',datas:[]}]
 		iprSamples.forEach(ds=>{