中建四局(质量管理):完成布局

This commit is contained in:
Jack 2022-08-25 10:25:32 +08:00
parent 899d7593fd
commit 65e80dffd3
6 changed files with 98 additions and 10 deletions

View File

@ -40,14 +40,14 @@ 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.125:6023/' //杨意本地 http/1.1 axios.defaults.baseURL = 'http://192.168.34.125:6023/' //杨意本地 http/1.1
axios.defaults.baseURL = 'http://192.168.34.216:6023/' // 邱平毅本地 // axios.defaults.baseURL = 'http://192.168.34.216:6023/' // 邱平毅本地
// axios.defaults.baseURL = 'http://192.168.34.231:6023/'; //杨思瑞本地 // axios.defaults.baseURL = 'http://192.168.34.231:6023/'; //杨思瑞本地
// 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/'; //
// axios.defaults.baseURL = 'http://120.236.247.200:9000/'; //横琴线上 // axios.defaults.baseURL = 'http://120.236.247.200:9000/'; //横琴线上

View File

@ -1,16 +1,48 @@
<template> <template>
<div class="quality">quality</div> <div class="quality">
<div class="left">
<div class="top"><LeftTop /></div>
<div class="middle"><LeftMiddle /></div>
<div class="bottom"><LeftBottom /></div>
</div>
<div class="right"><Right /></div>
</div>
</template> </template>
<script> <script>
export default {} import LeftTop from './leftTop.vue'
import LeftMiddle from './leftMiddle.vue'
import LeftBottom from './leftBottom.vue'
import Right from './right.vue'
export default {
components: { LeftTop, LeftMiddle, LeftBottom, Right }
}
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.quality { .quality {
width: 100%; width: 100%;
height: 100%; height: 100%;
background: url(../assets/temp/6.png) no-repeat; // background: url(../assets/temp/6.png) no-repeat;
background-size: 100% 100%; // background-size: 100% 100%;
display: flex;
justify-content: space-between;
.left {
width: 25%;
height: 100%;
.top {
height: 36%;
}
.middle {
height: 18%;
}
.bottom {
height: 46%;
}
}
.right {
width: calc(75% - 20px);
height: 100%;
}
} }
</style> </style>

View File

@ -0,0 +1,14 @@
<template>
<Card title="大面积混泥土展示">
大面积混泥土展示
</Card>
</template>
<script>
import Card from '../components/Card.vue'
export default {
components: { Card }
}
</script>
<style></style>

View File

@ -0,0 +1,14 @@
<template>
<Card title="标养室培养">
标养室培养
</Card>
</template>
<script>
import Card from '../components/Card.vue'
export default {
components: { Card }
}
</script>
<style></style>

View File

@ -0,0 +1,14 @@
<template>
<Card title="质量巡检">
质量巡检
</Card>
</template>
<script>
import Card from '../components/Card.vue'
export default {
components: { Card }
}
</script>
<style></style>

View File

@ -0,0 +1,14 @@
<template>
<Card title="数字质控">
数字质控
</Card>
</template>
<script>
import Card from '../components/Card.vue'
export default {
components: { Card }
}
</script>
<style></style>