中建四局(双碳管理):环境监测模块

This commit is contained in:
骆乐 2022-08-31 10:06:58 +08:00
parent 141f6e805a
commit c139bacd9a
11 changed files with 62 additions and 11 deletions

BIN
dist.zip

Binary file not shown.

View File

@ -41,7 +41,7 @@ if (process.env.NODE_ENV == 'development') {
// tag: 本地
// axios.defaults.baseURL = 'http://192.168.34.174:6023/' // 老大本地
// axios.defaults.baseURL = 'http://192.168.34.125:6023/' //杨意本地 http/1.1
axios.defaults.baseURL = 'http://192.168.34.216:6025/' // 邱平毅本地
axios.defaults.baseURL = 'http://192.168.34.216:6023/' // 邱平毅本地
// axios.defaults.baseURL = 'http://192.168.34.125:6023/' //杨意本地 http/1.1
// axios.defaults.baseURL = 'http://192.168.34.216:6025/' // 邱平毅本地
// axios.defaults.baseURL = 'http://192.168.34.231:6023/'; //杨思瑞本地

View File

@ -21,9 +21,9 @@
>入场码{{$store.state.currentProDetail.placeCode}}</p>
</div>
</div>
<!-- <div class="flex2" style="margin-top:20px">
<div class="flex2" style="margin-top:20px">
客服电话{{$store.state.userInfo.customerServicePhone}}
</div>-->
</div>
<div class="flex2 wrap" v-if="$store.state.userInfo.accountType != 1">
<!-- <div class="width_100">
<img src="@/assets/images/sjzx.png" width="15px" height="15px" />

View File

@ -45,8 +45,8 @@ export default new Vuex.Store({
// UPLOADURL:'http://10.0.1.43:6023/upload/image',//测试
// FILEURL:'http://10.0.1.43:6023/image/',//测试
BASEURL: baseUrl ? baseUrl : window.location.protocol + '//' + window.location.host + '/', //
// UPLOADURL: window.location.protocol + '//' + window.location.host + '/upload/image', //
// FILEURL: window.location.protocol + '//' + window.location.host + '/image/', //测试 // tag: 本地测试接口
UPLOADURL: window.location.protocol + '//' + window.location.host + '/upload/image', //
FILEURL: window.location.protocol + '//' + window.location.host + '/image/', //测试 // tag: 本地测试接口
/* 2022-05-16 */
// tag: 部署河南项目时,需要打开这两行代码
// UPLOADURL: 'http://124.71.178.44:100/upload/image',
@ -56,8 +56,8 @@ export default new Vuex.Store({
// UPLOADURL: 'http://192.168.34.125:6023/upload/image',
// FILEURL: 'http://192.168.34.125:6023/image/',
// 邱平毅的
UPLOADURL: 'http://192.168.34.216:6023/upload/image',
FILEURL: 'http://192.168.34.216:6023/image/',
// UPLOADURL: 'http://192.168.34.216:6023/upload/image',
// FILEURL: 'http://192.168.34.216:6023/image/',
// UPLOADURL:'http://'+"61.190.32.219:9050"+'/upload/image',//正式
// FILEURL:'http://'+"61.190.32.219:9050"+'/image/',//正式

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 658 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 787 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 KiB

View File

@ -1,14 +1,65 @@
<template>
<Card title="环境监测">
环境监测
<!-- 环境监测 -->
<div class="contentBox">
<div class="left">
<img src="../assets/images/common/echart_orange.png" alt />
<p class="num1">45%</p>
<div class="text">
<p>环境总数/环境巡检率</p>
<p style="color:#d7d9dc;font-size:14px">
200/
<span style="color:#da580d">45</span>
</p>
</div>
</div>
<div class="right">
<img src="../assets/images/common/echart_blue.png" alt />
<p class="num1">36%</p>
<div class="text">
<p>环境总数/环境巡检率</p>
<p style="color:#d7d9dc;font-size:14px">
200/
<span style="color:#72bdc9;">36</span>
</p>
</div>
</div>
</div>
</Card>
</template>
<script>
import Card from '../components/Card.vue'
import Card from "../components/Card.vue";
export default {
components: { Card }
}
};
</script>
<style></style>
<style lang="less" scoped>
.contentBox {
width: 100%;
height: 100%;
display: flex;
margin-top: 5%;
.left,
.right {
height: 65%;
margin-right: 10%;
position: relative;
color: #c5c7cc;
.num1 {
position: absolute;
top: 38%;
left: 43%;
}
.text {
margin-top: 10%;
font-size: 14px;
width: 100%;
text-align: center;
}
}
}
</style>