mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
优化巡检bug
This commit is contained in:
parent
2cc0244c73
commit
8266005dec
10
app.js
10
app.js
@ -51,12 +51,14 @@ let opts = {
|
||||
// ws: true
|
||||
// }));
|
||||
|
||||
|
||||
app.use('/ws', proxy('http://192.168.100.109:8008', opts));
|
||||
app.use('/callComponent', proxy('http://192.168.100.109:8008', opts));
|
||||
app.use('/app', proxy('http://192.168.100.109:8008', opts));
|
||||
|
||||
// todo 本机 开发用,生产环境请用nginx带来
|
||||
app.use('/ws', proxy('http://127.0.0.1:8008', opts));
|
||||
app.use('/callComponent', proxy('http://127.0.0.1:8008', opts));
|
||||
app.use('/app', proxy('http://127.0.0.1:8008', opts));
|
||||
// app.use('/ws', proxy('http://127.0.0.1:8008', opts));
|
||||
// app.use('/callComponent', proxy('http://127.0.0.1:8008', opts));
|
||||
// app.use('/app', proxy('http://127.0.0.1:8008', opts));
|
||||
|
||||
//app.listen(3000);
|
||||
app.use(express.json());
|
||||
|
||||
@ -65,6 +65,10 @@
|
||||
}
|
||||
});
|
||||
|
||||
if($that.inspectionTaskMapInfo.map && $that.inspectionTaskMapInfo.map.hasOwnProperty('height')){
|
||||
$that.inspectionTaskMapInfo.map.destroy();
|
||||
}
|
||||
|
||||
|
||||
let center = new TMap.LatLng(_lat, _lng)
|
||||
//定义map变量,调用 TMap.Map() 构造函数创建地图
|
||||
|
||||
@ -1,11 +1,12 @@
|
||||
<div class="margin-top">
|
||||
<div class="row">
|
||||
<div class="col-md-2">
|
||||
<div class="vc-org margin-top">
|
||||
<div class="vc-org-hc margin-top">
|
||||
<ul>
|
||||
<li v-for="(task,index) in routeTaskInfo.tasks" @click="_switchPointTask(task)"
|
||||
:class="{'vc-node-selected':task.inspectionRouteId == routeTaskInfo.inspectionRouteId}">
|
||||
{{task.planUserName}}({{task.inspectionPlanName}})
|
||||
<li v-for="(task,index) in routeTaskInfo.tasks" @click="_switchRouteTask(task)"
|
||||
:class="{'vc-node-selected':task.taskId == routeTaskInfo.taskId}">
|
||||
<div>{{task.planUserName}}({{task.inspectionPlanName}})</div>
|
||||
<div>{{task.planInsTime}}</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@ -189,7 +189,7 @@
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.padding-l-60{
|
||||
.padding-l-60 {
|
||||
padding-left: 60px;
|
||||
}
|
||||
|
||||
@ -210,7 +210,7 @@
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.padding-l-60{
|
||||
.padding-l-60 {
|
||||
padding-left: 60px;
|
||||
}
|
||||
|
||||
@ -525,7 +525,7 @@ ul li {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.text-blue{
|
||||
.text-blue {
|
||||
color: #007bff;
|
||||
}
|
||||
|
||||
@ -922,7 +922,15 @@ nav-link nav-link-breadcrumb active:active {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.vc-org ul li:hover {
|
||||
.vc-org-hc ul li {
|
||||
padding-left: 15px;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.vc-org ul li:hover,
|
||||
.vc-org-hc ul li:hover {
|
||||
background-color: var(--vc-org-bg-active-color);
|
||||
}
|
||||
|
||||
@ -1112,6 +1120,6 @@ nav-link nav-link-breadcrumb active:active {
|
||||
color: #007bff;
|
||||
}
|
||||
|
||||
.simplify-acceptance .form-group{
|
||||
.simplify-acceptance .form-group {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user