-
牵引机90KN
+
{{ queryParams.typeModelName }}
-
- 设备编码:xxxxx
- 在用
+ 机具设备编码:{{ queryParams.maCode }}
+ {{ queryParams.maStatus }}
- - 领用工程:xxxxx
- - 定位设备名称:xxxx
- - 设备编号:xxxx
+ - 领用工程:{{ queryParams.projectName }}
+ - 定位设备编号:{{ queryParams.iotId }}
- 当天
- 本月
+
+ 当天
+ 本月
+
-
行程
-
停留点
+
+ {{ item.title }}
+
-
-
里程:10KM
-
时长:30分种
-
-
-
- 2024-07-03 09:11:33
-
-
xxxx位置
-
-
-
-
- 2024-07-03 09:11:33
-
-
xxxx位置
-
+
+
+
+
+
+
+

+
+ {{ item.startTime }}
+
+
+ {{ item.startAddress }}
+
+
+
+

+
+ {{ item.endTime }}
+
+
{{ item.endAddress }}
+
+
+
+
+ {{ loading ? '数据加载中...' : '暂无数据...' }}
+
+
+
+
+
+
+
+ {{ item.startTime }}
+ {{ item.hours }}时{{ item.mints }}分
+
+
{{ item.address }}
+
+
+
+ {{ loading ? '数据加载中...' : '暂无数据...' }}
+
+
@@ -56,20 +103,69 @@
@@ -121,6 +374,8 @@ export default {
border-right: 1px dashed #0098ee;
color: #fff;
background-color: #030c3c;
+ display: flex;
+ flex-direction: column;
ul {
margin: 0;
@@ -172,35 +427,56 @@ export default {
margin: 8px 0;
div {
+ margin-right: 8px;
text-align: center;
width: 96px;
height: 44px;
line-height: 44px;
cursor: pointer;
+ background: url('../../../assets/img/myImage/no_active.png') no-repeat;
+ background-size: 100% 100%;
}
.active {
- background: url('../../../assets/img/sel (1).png') no-repeat;
+ background: url('../../../assets/img/myImage/active.png') no-repeat;
}
}
.location-list {
- padding: 15px 10px;
- border: 1px solid #035ea6;
-
+ flex: 1;
+ overflow: auto;
+ .trip-container {
+ margin-bottom: 8px;
+ padding: 15px 10px;
+ border: 1px solid #035ea6;
+ cursor: pointer;
+ }
div {
- padding: 6px 0;
+ // padding: 6px 0;
+ }
+
+ .activeIndex {
+ background-color: #3d4883;
}
.location-start {
display: flex;
align-items: center;
- justify-content: space-between;
+ justify-content: space-around;
img {
vertical-align: middle;
margin-right: 6px;
}
+
+ span {
+ flex: 1;
+ }
+
+ div {
+ flex: 1;
+ word-break: break-all;
+ }
}
}
}
@@ -221,8 +497,29 @@ export default {
#drawer-map-container {
width: 100%;
height: 70%;
- background: orange;
}
}
}
+/deep/ .el-radio-button__inner,
+.el-radio-group {
+ display: flex;
+}
+
+//定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸
+*::-webkit-scrollbar {
+ width: 5px;
+ height: 5px;
+}
+
+//定义滑块 内阴影+圆角
+*::-webkit-scrollbar-thumb {
+ border-radius: 1em;
+ background-color: rgba(230, 237, 248, 0.3);
+}
+
+//定义滚动条轨道 内阴影+圆角
+*::-webkit-scrollbar-track {
+ border-radius: 1em;
+ background-color: rgba(230, 237, 248, 0.1);
+}
diff --git a/sgzb-screen/src/views/newHome/components/drawer-project.vue b/sgzb-screen/src/views/newHome/components/drawer-project.vue
index 7ed6f050..881ef2b8 100644
--- a/sgzb-screen/src/views/newHome/components/drawer-project.vue
+++ b/sgzb-screen/src/views/newHome/components/drawer-project.vue
@@ -1,74 +1,234 @@
-
宁夏至湖南700kv变电工程
-
宁夏省吴忠市xxxx
+
{{ queryParams.lotName || '' }}
+
{{ queryParams.address || '' }}
在用设备
-
- 1524
+ {{ useNumJj }}
机具设备
-
- 1524
+ {{ useNumTs }}
调试设备
领料记录
- -
- 2024年5月11日
- 19:23
- 机具设备--
-
- -
- 2024年5月11日
- 19:23
- 机具设备--
-
- -
- 2024年5月11日
- 19:23
- 机具设备--
+
-
+ {{ item.createTime.split(' ')[0] }}
+ {{ item.createTime.split(' ')[1] }}
+ {{ item.typeModelName }}
退料记录
- -
- 2024年5月11日
- 19:23
- 机具设备--
-
- -
- 2024年5月11日
- 19:23
- 机具设备--
-
- -
- 2024年5月11日
- 19:23
- 机具设备--
+
-
+ {{ item.createTime.split(' ')[0] }}
+ {{ item.createTime.split(' ')[1] }}
+ {{ item.typeModelName }}
-
-
-
-
-
- 查询
- 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/sgzb-screen/src/views/newHome/index.vue b/sgzb-screen/src/views/newHome/index.vue
index dd45f2e0..6f143b60 100644
--- a/sgzb-screen/src/views/newHome/index.vue
+++ b/sgzb-screen/src/views/newHome/index.vue
@@ -92,8 +92,8 @@
:direction="direction"
size="80%"
>
-
-
+
+
![]()
{
@@ -144,6 +144,8 @@ export default {
direction: 'ltr',
drawerType: null,
maType: 1,
+ // 地图点击时的查询参数
+ queryParams: null,
}
},
mounted() {},
@@ -173,8 +175,10 @@ export default {
// })
},
methods: {
- openDrawer(type) {
- this.drawerType = type
+ openDrawer(query) {
+ this.queryParams = query
+ // console.log(query, 'c参数')
+ this.drawerType = query.type
this.drawer = true
},
routerClick() {
diff --git a/sgzb-ui/src/views/base/section/index.vue b/sgzb-ui/src/views/base/section/index.vue
index b87635ea..6962a176 100644
--- a/sgzb-ui/src/views/base/section/index.vue
+++ b/sgzb-ui/src/views/base/section/index.vue
@@ -176,6 +176,7 @@
-
-
+
+
+
+