深基坑(监测):单位拼接

This commit is contained in:
骆乐 2022-10-13 17:08:55 +08:00
parent 47ade3fe2c
commit eb53770081
2 changed files with 17 additions and 7 deletions

View File

@ -40,7 +40,7 @@ if (process.env.NODE_ENV == 'development') {
// axios.defaults.baseURL = 'http://124.71.178.44:100/' // 河南 // axios.defaults.baseURL = 'http://124.71.178.44:100/' // 河南
// tag: 本地 // tag: 本地
// axios.defaults.baseURL = 'http://192.168.34.174:6023/' // 老大本地 // axios.defaults.baseURL = 'http://192.168.34.174:6023/' // 老大本地
axios.defaults.baseURL = 'http://192.168.34.216:6023/' // 邱平毅本地 // axios.defaults.baseURL = 'http://192.168.34.216:6023/' // 邱平毅本地
// axios.defaults.baseURL = 'http://139.9.66.234:6324/' // 河南春笋 // axios.defaults.baseURL = 'http://139.9.66.234:6324/' // 河南春笋
// axios.defaults.baseURL ='http://124.71.67.160:8088/' //中建四局线上 // axios.defaults.baseURL ='http://124.71.67.160:8088/' //中建四局线上
// axios.defaults.baseURL = 'http://192.168.34.125:6023/' //杨意本地 http/1.1 // axios.defaults.baseURL = 'http://192.168.34.125:6023/' //杨意本地 http/1.1
@ -50,7 +50,7 @@ if (process.env.NODE_ENV == 'development') {
// axios.defaults.baseURL = 'http://47.97.202.104:6023/'; // axios.defaults.baseURL = 'http://47.97.202.104:6023/';
// axios.defaults.baseURL = 'http://139.9.66.234:8/'; // axios.defaults.baseURL = 'http://139.9.66.234:8/';
// axios.defaults.baseURL = 'http://120.196.217.6:7000/'; // 鹤洲 // axios.defaults.baseURL = 'http://120.196.217.6:7000/'; // 鹤洲
// axios.defaults.baseURL = 'http://182.90.224.237:7000/'; // 广西 axios.defaults.baseURL = 'http://182.90.224.237:7000/'; // 广西
// axios.defaults.baseURL = 'http://120.196.217.6:7000/' //鹤洲 // axios.defaults.baseURL = 'http://120.196.217.6:7000/' //鹤洲
// axios.defaults.baseURL = 'http://117.156.17.59:9090/'; // // axios.defaults.baseURL = 'http://117.156.17.59:9090/'; //

View File

@ -468,7 +468,9 @@
:label="$t('message.deepFoundConfig.pointNo')" :label="$t('message.deepFoundConfig.pointNo')"
></el-table-column> ></el-table-column>
<el-table-column prop="sensorSn" label="传感器编号"></el-table-column> <el-table-column prop="sensorSn" label="传感器编号"></el-table-column>
<el-table-column prop="fiducialValue" label="初始值" align="center" width="100"></el-table-column> <el-table-column prop="fiducialValue" label="初始值" align="center" width="100">
<template slot-scope="scope">{{scope.row.fiducialValue + scope.row.unit}}</template>
</el-table-column>
<!-- 采集时间 --> <!-- 采集时间 -->
<el-table-column <el-table-column
width="220" width="220"
@ -476,7 +478,9 @@
prop="receiveTime" prop="receiveTime"
:label="$t('message.deepFoundConfig.gatherTime')" :label="$t('message.deepFoundConfig.gatherTime')"
></el-table-column> ></el-table-column>
<el-table-column prop="lastTimeData" label="上次值"></el-table-column> <el-table-column prop="lastTimeData" label="上次值">
<template slot-scope="scope">{{scope.row.lastTimeData + scope.row.unit}}</template>
</el-table-column>
<el-table-column prop="data" label="本次值"> <el-table-column prop="data" label="本次值">
<template slot-scope="scope">{{scope.row.data + scope.row.unit}}</template> <template slot-scope="scope">{{scope.row.data + scope.row.unit}}</template>
</el-table-column> </el-table-column>
@ -486,9 +490,15 @@
<el-table-column prop="dataTotal" label="累计值"> <el-table-column prop="dataTotal" label="累计值">
<template slot-scope="scope">{{scope.row.dataTotal + scope.row.unit}}</template> <template slot-scope="scope">{{scope.row.dataTotal + scope.row.unit}}</template>
</el-table-column> </el-table-column>
<el-table-column prop="alarmValue" label="累计预警值" align="center"></el-table-column> <el-table-column prop="alarmValue" label="累计预警值" align="center">
<el-table-column prop="dataRate" label="变化速率" align="center"></el-table-column> <template slot-scope="scope">{{scope.row.alarmValue + scope.row.unit}}</template>
<el-table-column prop="rateAlarmValue" label="变化速率预警值" align="center"></el-table-column> </el-table-column>
<el-table-column prop="dataRate" label="变化速率" align="center">
<template slot-scope="scope">{{scope.row.dataRate + scope.row.unit +'/d'}}</template>
</el-table-column>
<el-table-column prop="rateAlarmValue" label="变化速率预警值" align="center">
<template slot-scope="scope">{{'±' + scope.row.rateAlarmValue + scope.row.unit +'/d'}}</template>
</el-table-column>
<!-- <el-table-column prop="data" label="值"> <!-- <el-table-column prop="data" label="值">
<template slot-scope="scope">{{scope.row.data + scope.row.unit}}</template> <template slot-scope="scope">{{scope.row.data + scope.row.unit}}</template>
</el-table-column> </el-table-column>