Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-station-module-view
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
station
amos-station-module-view
Commits
c07698bf
Commit
c07698bf
authored
Jun 04, 2020
by
张博
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
拖动点不显示等bug
parent
0cd8530b
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1317 additions
and
81 deletions
+1317
-81
amos.config.js
amos.config.js
+3
-3
PointsPool.js
mods/components/3dviewConvertor/view/PointsPool.js
+3
-36
View3D.js
mods/components/3dviewConvertor/view/View3D.js
+92
-18
AreaLeftTree.js
.../3dviewConvertor/view/moduleEditComponent/AreaLeftTree.js
+1
-1
RightEditRegionPanel.js
...onvertor/view/moduleEditComponent/RightEditRegionPanel.js
+1
-1
marker3DFactory.js
...components/3dviewConvertor/view/points/marker3DFactory.js
+36
-21
markerFactory.js
mods/components/3dviewConvertor/view/points/markerFactory.js
+1
-1
report.20200603.100305.36296.0.001.json
report.20200603.100305.36296.0.001.json
+590
-0
report.20200603.124619.46952.0.001.json
report.20200603.124619.46952.0.001.json
+590
-0
No files found.
amos.config.js
View file @
c07698bf
...
@@ -11,10 +11,10 @@
...
@@ -11,10 +11,10 @@
objModelURI
:
'/a3dres'
,
objModelURI
:
'/a3dres'
,
// 根url
// 根url
// baseURI: 'http://172.16.11.30:9008/',
// baseURI: 'http://172.16.11.30:9008/',
baseURI
:
'http://172.16.3.
122
:8083/'
,
baseURI
:
'http://172.16.3.
63
:8083/'
,
// convertorURI: 'http://172.16.3.122:8083/',
// convertorURI: 'http://172.16.3.122:8083/',
convertorURI
:
'http://172.16.3.
122
:8083/'
,
convertorURI
:
'http://172.16.3.
63
:8083/'
,
patrolURI
:
'http://172.16.3.
122
:8082/'
,
patrolURI
:
'http://172.16.3.
63
:8082/'
,
rulesConfigURI
:
'http://172.16.10.91:8080/'
,
rulesConfigURI
:
'http://172.16.10.91:8080/'
,
// plugin URI
// plugin URI
pluginURI
:
'http://172.16.11.40:8099/'
,
pluginURI
:
'http://172.16.11.40:8099/'
,
...
...
mods/components/3dviewConvertor/view/PointsPool.js
View file @
c07698bf
...
@@ -58,40 +58,7 @@ class PointsPool extends Component {
...
@@ -58,40 +58,7 @@ class PointsPool extends Component {
}
}
onMarkersCreated
=
(
type
,
{
markersCache
})
=>
{
onMarkersCreated
=
(
type
,
{
markersCache
})
=>
{
this
.
markerList
[
type
]
=
markersCache
;
let
stagePilot
=
this
.
props
.
stagePilot
;
debugger
;
// if(markersCache&&stagePilot) {
// // console.log(this.markerList)
// console.log(markersCache)
// // console.log(this.props)
// markersCache.eachValue(item => {
// item.node._userData = { ...item.extData };
// stagePilot.positionCtl.objects.push(item.node); })
// }
(
markersCache
||
[]).
forEach
(
mc
=>
{
const
extData
=
mc
.
getExtData
();
if
(
extData
.
hasOwnProperty
(
'visible'
)){
let
visible
=
extData
.
visible
;
if
(
visible
)
{
if
(
extData
.
type
===
'fireCar'
)
{
mc
.
visible
=
visible
;
mc
.
object2DPipe
.
pipeNode
.
visible
=
false
;
mc
.
object2DPipe
.
pipeNode
.
elementVisible
=
false
;
}
else
{
mc
.
show
();
}
}
else
{
if
(
extData
.
type
===
'fireCar'
)
{
mc
.
visible
=
visible
;
mc
.
object2DPipe
.
pipeNode
.
visible
=
false
;
mc
.
object2DPipe
.
pipeNode
.
elementVisible
=
false
;
}
else
{
mc
.
hide
();
}
}
}
});
}
}
updateMarkers
=
(
data
)
=>
{
updateMarkers
=
(
data
)
=>
{
...
@@ -114,8 +81,8 @@ class PointsPool extends Component {
...
@@ -114,8 +81,8 @@ class PointsPool extends Component {
onCreated
=
{(
val
)
=>
this
.
onMarkersCreated
(
'riskSource'
,
val
)}
onCreated
=
{(
val
)
=>
this
.
onMarkersCreated
(
'riskSource'
,
val
)}
isEditMode
=
{
this
.
props
.
isEditMode
}
isEditMode
=
{
this
.
props
.
isEditMode
}
addMarker
=
{
this
.
addMarker
}
addMarker
=
{
this
.
addMarker
}
stagePilot
=
{
this
.
props
.
stagePilot
}
editFlag
=
{
this
.
props
.
editFlag
}
positionCtl
=
{
this
.
props
.
positionCtl
}
selectPoints
=
{
this
.
props
.
selectPoints
}
/
>
/
>
{
/* <PatrolPoint
{
/* <PatrolPoint
{...rest}
{...rest}
...
...
mods/components/3dviewConvertor/view/View3D.js
View file @
c07698bf
...
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
...
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
import
PropTypes
from
'prop-types'
;
import
PropTypes
from
'prop-types'
;
import
{
utils
,
UUID
}
from
'amos-tool'
;
import
{
utils
,
UUID
}
from
'amos-tool'
;
import
{
PubSub
}
from
'ray-eventpool'
;
import
{
PubSub
}
from
'ray-eventpool'
;
import
{
Connect
as
UIConnect
,
Modal
,
message
}
from
'amos-framework'
;
import
{
Connect
as
UIConnect
,
Modal
,
message
,
AmosAlert
}
from
'amos-framework'
;
import
{
FatLine
}
from
'amos-3d/lib/advanced'
;
import
{
FatLine
}
from
'amos-3d/lib/advanced'
;
import
A3DDesigner
,
{
Connect
,
FireObject
,
DESIGNER_CONSTS
,
PolygonRegion
}
from
'amos-3d/lib/designer'
;
import
A3DDesigner
,
{
Connect
,
FireObject
,
DESIGNER_CONSTS
,
PolygonRegion
}
from
'amos-3d/lib/designer'
;
import
WorkerObjContent
from
'amos-3d/lib/worker/WorkerObjContent'
;
import
WorkerObjContent
from
'amos-3d/lib/worker/WorkerObjContent'
;
...
@@ -121,8 +121,9 @@ class View3D extends Component {
...
@@ -121,8 +121,9 @@ class View3D extends Component {
sideControlShow
:
false
,
//隐藏耳朵
sideControlShow
:
false
,
//隐藏耳朵
isShowActionBar
:
true
,
//显示工具栏
isShowActionBar
:
true
,
//显示工具栏
errorAreaId
:
''
,
//异常区域id
errorAreaId
:
''
,
//异常区域id
positionxyz
:
null
,
positionxyz
:
''
,
rightHeight
:
1
,
rightHeight
:
1
,
isPointSave
:
true
,
};
};
getObjFromNet
(
view3dFile
,
(
objs
,
asyncModels
)
=>
{
getObjFromNet
(
view3dFile
,
(
objs
,
asyncModels
)
=>
{
...
@@ -556,8 +557,13 @@ class View3D extends Component {
...
@@ -556,8 +557,13 @@ class View3D extends Component {
})
})
}
}
startDrow
=
(
areaItem
)
=>
{
startDrow
=
(
areaItem
)
=>
{
// this.a3dRef.addPen();
// this.a3dRef.addPen(
m
);
console
.
log
(
'drow--------'
)
console
.
log
(
'drow--------'
)
this
.
setState
({
selectArea
:
areaItem
,
rightHeight
:
10
,
showRightPanel
:
true
});
this
.
drowItem
=
areaItem
;
this
.
drowItem
=
areaItem
;
this
.
addPen
(
areaItem
.
id
)
this
.
addPen
(
areaItem
.
id
)
}
}
...
@@ -604,7 +610,7 @@ class View3D extends Component {
...
@@ -604,7 +610,7 @@ class View3D extends Component {
riskSourceId
:
this
.
drowItem
.
id
,
riskSourceId
:
this
.
drowItem
.
id
,
routePath
:
JSON
.
stringify
({
routePath
:
JSON
.
stringify
({
routePath
:
penPoints
,
routePath
:
penPoints
,
regionHeigth
:
1
regionHeigth
:
1
0
}),
}),
})
})
...
@@ -758,14 +764,16 @@ class View3D extends Component {
...
@@ -758,14 +764,16 @@ class View3D extends Component {
}
}
//选中点变化
//选中点变化
selectPointChange
=
(
selectPoints
)
=>
{
selectPointChange
=
(
selectPoints
)
=>
{
if
(
selectPoints
.
isRegion
){
if
(
selectPoints
.
isRegion
){
this
.
setState
({
selectArea
:
selectPoints
})
this
.
setState
({
selectArea
:
selectPoints
})
}
else
{
}
else
{
this
.
dragItemChange
(
selectPoints
)
this
.
setState
({
this
.
setState
({
selectArea
:
''
,
selectArea
:
''
,
selectPoints
,
selectPoints
,
positionxyz
:
selectPoints
.
position3d
&&
selectPoints
.
position3d
.
split
(
","
),
positionxyz
:
selectPoints
.
position3d
&&
selectPoints
.
position3d
.
split
(
","
),
showRightPanel
:
true
showRightPanel
:
true
,
});
});
}
}
...
@@ -780,6 +788,7 @@ class View3D extends Component {
...
@@ -780,6 +788,7 @@ class View3D extends Component {
if
(
item
.
isRegion
&&
item
.
isBind
)
{
if
(
item
.
isRegion
&&
item
.
isBind
)
{
if
(
selectArea
&&
selectArea
.
id
==
item
.
id
){
if
(
selectArea
&&
selectArea
.
id
==
item
.
id
){
this
.
areas
.
push
(
<
PolygonRegion
{...
this
.
areaStyles
.
select
}
points
=
{
item
.
routePath
?
JSON
.
parse
(
item
.
routePath
).
routePath
:
''
}
onCreated
=
{(
e
)
=>
{
this
.
onRegionCreated
(
e
,
item
)}}
/>
)
;
this
.
areas
.
push
(
<
PolygonRegion
{...
this
.
areaStyles
.
select
}
points
=
{
item
.
routePath
?
JSON
.
parse
(
item
.
routePath
).
routePath
:
''
}
onCreated
=
{(
e
)
=>
{
this
.
onRegionCreated
(
e
,
item
)}}
/>
)
;
this
.
getAreas
(
item
.
children
);
}
else
{
}
else
{
if
(
item
.
children
&&
item
.
children
.
length
>
0
)
{
if
(
item
.
children
&&
item
.
children
.
length
>
0
)
{
if
(
dragItem
)
{
if
(
dragItem
)
{
...
@@ -818,6 +827,7 @@ class View3D extends Component {
...
@@ -818,6 +827,7 @@ class View3D extends Component {
}
}
renderAreas
=
()
=>
{
renderAreas
=
()
=>
{
this
.
areas
=
[];
this
.
areas
=
[];
console
.
log
(
this
.
state
.
treeData
)
this
.
getAreas
(
this
.
state
.
treeData
);
this
.
getAreas
(
this
.
state
.
treeData
);
return
this
.
areas
;
return
this
.
areas
;
}
}
...
@@ -865,7 +875,8 @@ class View3D extends Component {
...
@@ -865,7 +875,8 @@ class View3D extends Component {
//保存点绑定
//保存点绑定
savePointData
=
()
=>
{
savePointData
=
()
=>
{
let
{
markers
,
pointTypeArr
,
pointType
}
=
this
.
state
;
let
{
markers
,
pointTypeArr
,
pointType
,
isPointSave
}
=
this
.
state
;
this
.
setState
({
isPointSave
:
true
})
console
.
log
(
markers
)
console
.
log
(
markers
)
let
paramsArr
=
[];
let
paramsArr
=
[];
for
(
let
key
in
markers
){
for
(
let
key
in
markers
){
...
@@ -946,6 +957,7 @@ class View3D extends Component {
...
@@ -946,6 +957,7 @@ class View3D extends Component {
saveAreaDataAction
(
areaParams
).
then
(
d
=>
{
saveAreaDataAction
(
areaParams
).
then
(
d
=>
{
message
.
success
(
'删除成功!'
);
message
.
success
(
'删除成功!'
);
getAreaTreeAction
().
then
(
data
=>
{
getAreaTreeAction
().
then
(
data
=>
{
this
.
getAreas
(
data
);
this
.
setState
({
this
.
setState
({
treeData
:
data
||
[]
treeData
:
data
||
[]
});
});
...
@@ -982,6 +994,10 @@ class View3D extends Component {
...
@@ -982,6 +994,10 @@ class View3D extends Component {
}
}
}
}
pointTypeChange
=
(
pointType
)
=>
{
pointTypeChange
=
(
pointType
)
=>
{
let
{
isPointSave
}
=
this
.
state
if
(
!
isPointSave
){
this
.
showConfirm
()
}
this
.
setState
({
this
.
setState
({
pointType
,
pointType
,
treeData
:[]
treeData
:[]
...
@@ -993,7 +1009,18 @@ class View3D extends Component {
...
@@ -993,7 +1009,18 @@ class View3D extends Component {
});
});
});
});
}
}
showConfirm
=
()
=>
{
AmosAlert
.
confirm
(
'提示'
,
'有未保存数据,是否保存?'
,
{
callback
:
(
flag
)
=>
{
if
(
flag
){
this
.
savePointData
()
}
else
{
this
.
setState
({
isPointSave
:
true
})
}
}
});
};
dragItemChange
=
(
dragItem
)
=>
{
dragItemChange
=
(
dragItem
)
=>
{
let
{
treeData
}
=
this
.
state
;
let
{
treeData
}
=
this
.
state
;
if
(
dragItem
.
isRegion
)
{
if
(
dragItem
.
isRegion
)
{
...
@@ -1012,6 +1039,7 @@ class View3D extends Component {
...
@@ -1012,6 +1039,7 @@ class View3D extends Component {
drop
=
(
event
)
=>
{
drop
=
(
event
)
=>
{
event
.
preventDefault
();
event
.
preventDefault
();
this
.
setState
({
isPointSave
:
false
})
let
{
dragItem
,
markers
}
=
this
.
state
;
let
{
dragItem
,
markers
}
=
this
.
state
;
//alert(JSON.stringify(dragItem));
//alert(JSON.stringify(dragItem));
if
(
dragItem
)
{
if
(
dragItem
)
{
...
@@ -1349,6 +1377,7 @@ class View3D extends Component {
...
@@ -1349,6 +1377,7 @@ class View3D extends Component {
}
}
handleExceptModel
=
(
type
,
areaId
)
=>
{
handleExceptModel
=
(
type
,
areaId
)
=>
{
let
{
isPointSave
}
=
this
.
state
this
.
clearMarkers
();
this
.
clearMarkers
();
if
(
type
===
'into_except_model'
){
//进入耳朵模式
if
(
type
===
'into_except_model'
){
//进入耳朵模式
this
.
props
.
editModelChange
(
true
);
//隐藏全景统计
this
.
props
.
editModelChange
(
true
);
//隐藏全景统计
...
@@ -1360,8 +1389,25 @@ class View3D extends Component {
...
@@ -1360,8 +1389,25 @@ class View3D extends Component {
errorAreaId
:
areaId
errorAreaId
:
areaId
});
});
}
else
if
(
type
===
'out_except_model'
){
}
else
if
(
type
===
'out_except_model'
){
if
(
!
isPointSave
){
AmosAlert
.
confirm
(
'提示'
,
'有未保存数据,是否保存?'
,
{
callback
:
(
flag
)
=>
{
if
(
flag
){
this
.
savePointData
()
this
.
props
.
editModelChange
(
false
);
//显示全景统计
this
.
setState
({
treeData
:[],
sideControlShow
:
false
,
//隐藏耳朵
isShowActionBar
:
true
,
//显示工具栏
startLoadExceptionArea
:
true
,
//显示marker,
headerName
:
''
,
//设置头名称
editFlag
:
false
,
//推出编辑模式
errorAreaId
:
''
});
}
else
{
this
.
props
.
editModelChange
(
false
);
//显示全景统计
this
.
props
.
editModelChange
(
false
);
//显示全景统计
this
.
setState
({
this
.
setState
({
isPointSave
:
true
,
treeData
:[],
treeData
:[],
sideControlShow
:
false
,
//隐藏耳朵
sideControlShow
:
false
,
//隐藏耳朵
isShowActionBar
:
true
,
//显示工具栏
isShowActionBar
:
true
,
//显示工具栏
...
@@ -1372,6 +1418,22 @@ class View3D extends Component {
...
@@ -1372,6 +1418,22 @@ class View3D extends Component {
});
});
}
}
}
}
});
}
else
{
this
.
props
.
editModelChange
(
false
);
//显示全景统计
this
.
setState
({
treeData
:[],
sideControlShow
:
false
,
//隐藏耳朵
isShowActionBar
:
true
,
//显示工具栏
startLoadExceptionArea
:
true
,
//显示marker,
headerName
:
''
,
//设置头名称
editFlag
:
false
,
//推出编辑模式
errorAreaId
:
''
});
}
}
}
setHeaderName
=
(
name
)
=>
{
setHeaderName
=
(
name
)
=>
{
this
.
setState
({
headerName
:
name
});
this
.
setState
({
headerName
:
name
});
...
@@ -1390,24 +1452,35 @@ class View3D extends Component {
...
@@ -1390,24 +1452,35 @@ class View3D extends Component {
return
object
;
return
object
;
}
}
addMarker
=
({
extData
,
position
})
=>
{
addMarker
=
({
extData
,
position
})
=>
{
let
{
markers
}
=
this
.
state
const
{
markers
}
=
this
.
state
// let type =extData.type
// let arr =markers[`${extData.type}`].filter(item =>item.id == extData.id)
// let arrLasting =markers[`${extData.type}`].filter(item =>item.id != extData.id)
// let addPointParam = {
// type: arr[0].type,
// position:position,
// uid:arr[0].uid,
// id: arr[0].id,
// key: arr[0].key,
// title: arr[0].name,
// label: arr[0].name,
// level: arr[0].level,
// levelStr: arr[0].levelStr,
// };
// let pointParam =arrLasting.push(addPointParam)
// //markers[`${extData.type}`].push(pointParam)
let
paramsArr
=
[{
let
paramsArr
=
[{
pointId
:
extData
.
id
,
pointId
:
extData
.
id
,
pointType
:
extData
.
type
,
pointType
:
extData
.
type
,
position3d
:
`
${
position
.
toArray
()[
0
]}
,
${
position
.
toArray
()[
1
]}
,
${
position
.
toArray
()
[
2
]}
`
position3d
:
`
${
position
[
0
]}
,
${
position
[
1
]}
,
${
position
[
2
]}
`
}];
}];
console
.
log
(
paramsArr
)
console
.
log
(
paramsArr
)
savePointListAction
(
paramsArr
).
then
(
data
=>
{
savePointListAction
(
paramsArr
).
then
(
data
=>
{
getPointTreeAction
(
extData
.
type
).
then
(
data
=>
{
this
.
setState
({
treeData
:
data
||
[],
pageType
:
'point'
,
showRightPanel
:
false
});
});
})
})
this
.
setState
({
positionxyz
:
position
.
toArray
()
})
//this.setState({positionxyz:position
})
}
}
render
()
{
render
()
{
const
{
const
{
...
@@ -1428,7 +1501,7 @@ class View3D extends Component {
...
@@ -1428,7 +1501,7 @@ class View3D extends Component {
headerName
,
headerName
,
errorAreaId
,
errorAreaId
,
positionxyz
,
positionxyz
,
rightHeight
rightHeight
,
}
=
this
.
state
;
}
=
this
.
state
;
const
{
dimension
,
hiddenScreenSaver
,
editModelChange
}
=
this
.
props
;
const
{
dimension
,
hiddenScreenSaver
,
editModelChange
}
=
this
.
props
;
const
graphicProps
=
{
const
graphicProps
=
{
...
@@ -1513,7 +1586,8 @@ class View3D extends Component {
...
@@ -1513,7 +1586,8 @@ class View3D extends Component {
onCreated
=
{
this
.
onGraphCreated
}
onCreated
=
{
this
.
onGraphCreated
}
>
>
{
startAsyncLoad
&&
<
WorkerObjContent
objs
=
{
asyncModels
}
onWorkerMessage
=
{
this
.
onWorkerLoading
}
enableLoading
afterInit
=
{
this
.
onAfterWorkerInit
}
/>
}
{
startAsyncLoad
&&
<
WorkerObjContent
objs
=
{
asyncModels
}
onWorkerMessage
=
{
this
.
onWorkerLoading
}
enableLoading
afterInit
=
{
this
.
onAfterWorkerInit
}
/>
}
{
editFlag
&&
pageType
===
'region'
?
''
:
<
PointsPool
markers
=
{
markers
}
updateMarker
=
{
this
.
updateMarker
}
planStarted
=
{
alarmStarted
}
stagePilot
=
{
this
.
stagePilot
}
positionCtl
=
{
this
.
positionCtl
}
addMarker
=
{
this
.
addMarker
}
/>
}
{
editFlag
&&
pageType
===
'region'
?
''
:
<
PointsPool
markers
=
{
markers
}
editFlag
=
{
editFlag
}
selectPoints
=
{
selectPoints
}
updateMarker
=
{
this
.
updateMarker
}
planStarted
=
{
alarmStarted
}
stagePilot
=
{
this
.
stagePilot
}
positionCtl
=
{
this
.
positionCtl
}
addMarker
=
{
this
.
addMarker
}
/>
}
{
fireTruckRoute
&&
<
FatLine
{...
lineData
.
fatLineConf
}
linePath
=
{
JSON
.
parse
(
fireTruckRoute
)}
visible
=
{
showFireTruckRoute
}
/>
}
{
fireTruckRoute
&&
<
FatLine
{...
lineData
.
fatLineConf
}
linePath
=
{
JSON
.
parse
(
fireTruckRoute
)}
visible
=
{
showFireTruckRoute
}
/>
}
<
FlameFire
position
=
{
firePosition
}
width
=
{
10
}
height
=
{
20
}
depth
=
{
8
}
sliceSpacing
=
{
1
}
visible
=
{
planStarted
}
/
>
<
FlameFire
position
=
{
firePosition
}
width
=
{
10
}
height
=
{
20
}
depth
=
{
8
}
sliceSpacing
=
{
1
}
visible
=
{
planStarted
}
/
>
{
editFlag
&&
this
.
renderAreas
()}
{
editFlag
&&
this
.
renderAreas
()}
...
...
mods/components/3dviewConvertor/view/moduleEditComponent/AreaLeftTree.js
View file @
c07698bf
...
@@ -190,7 +190,7 @@ class AreaLeftTree extends Component {
...
@@ -190,7 +190,7 @@ class AreaLeftTree extends Component {
<
div
className
=
"leftTree"
>
<
div
className
=
"leftTree"
>
<
div
className
=
'leftContainer'
>
<
div
className
=
'leftContainer'
>
<
div
className
=
'topForm'
>
<
div
className
=
'topForm'
>
<
Search
className
=
'leftSearch'
icon
=
"search"
value
=
{
''
}
onChange
=
{
this
.
onSearchChange
}
onIconClick
=
{
this
.
onSearchChange
}
/
>
<
Search
className
=
'leftSearch'
icon
=
"search"
onChange
=
{
this
.
onSearchChange
}
onIconClick
=
{
this
.
onSearchChange
}
/
>
<
/div
>
<
/div
>
<
div
className
=
'treeBox'
>
<
div
className
=
'treeBox'
>
<
Tree
<
Tree
...
...
mods/components/3dviewConvertor/view/moduleEditComponent/RightEditRegionPanel.js
View file @
c07698bf
...
@@ -174,7 +174,7 @@ class RightEditRegionPanel extends Component {
...
@@ -174,7 +174,7 @@ class RightEditRegionPanel extends Component {
</div> */
}
</div> */
}
<
div
className
=
'positionItem'
>
<
div
className
=
'positionItem'
>
<
FormItem
label
=
"高"
field
=
"positionZ"
{...
formItemLayout
}
>
<
FormItem
label
=
"高"
field
=
"positionZ"
{...
formItemLayout
}
>
<
Input
value
=
{
rightHeight
}
onChange
=
{(
e
)
=>
this
.
onChange
(
'positionZ'
,
e
)}
/
>
<
Input
placeholder
=
{
rightHeight
}
onChange
=
{(
e
)
=>
this
.
onChange
(
'positionZ'
,
e
)}
/
>
{
/* <Input value={detailData.ue4Location && detailData.ue4Location[2]} /> */
}
{
/* <Input value={detailData.ue4Location && detailData.ue4Location[2]} /> */
}
<
/FormItem
>
<
/FormItem
>
<
/div
>
<
/div
>
...
...
mods/components/3dviewConvertor/view/points/marker3DFactory.js
View file @
c07698bf
import
React
,
{
Component
}
from
'react'
;
import
React
,
{
Component
}
from
'react'
;
import
PropTypes
from
'prop-types'
;
import
PropTypes
from
'prop-types'
;
import
{
utils
}
from
'amos-tool'
;
import
{
utils
,
deepCopy
}
from
'amos-tool'
;
import
{
Markers
}
from
'amos-3d/lib/designer'
;
import
{
Markers
}
from
'amos-3d/lib/designer'
;
import
{
BaseObjHelper
}
from
'base-r3d/lib/factory'
;
import
{
BaseObjHelper
}
from
'base-r3d/lib/factory'
;
import
{
CONSTS
}
from
'./../../consts/storageConsts'
;
import
{
CONSTS
}
from
'./../../consts/storageConsts'
;
...
@@ -99,15 +99,22 @@ export default function marker3DFactory(WrappedComponent = 'div', options){
...
@@ -99,15 +99,22 @@ export default function marker3DFactory(WrappedComponent = 'div', options){
}
}
componentWillReceiveProps
=
nextProps
=>
{
componentWillReceiveProps
=
nextProps
=>
{
// if(nextProps.editFlag){
// this.markersCache.eachValue(obj=>{
// if(nextProps.selectPoints.type == obj.extData.type && nextProps.selectPoints.id ==obj.extData.id ){
// this.setTwinkleConf(obj);
// }
// });
// }
this
.
setState
({
planStarted
:
nextProps
.
planStarted
});
this
.
setState
({
planStarted
:
nextProps
.
planStarted
});
}
}
onEditorChangeDone
=
(
evt
)
=>
{
//
onEditorChangeDone = (evt) => {
if
(
evt
&&
evt
.
target
&&
evt
.
target
.
object
){
//
if (evt && evt.target && evt.target.object){
const
marker
=
evt
.
target
.
object
;
//
const marker = evt.target.object;
//alert(marker.position.toArray());//(marker.extData
//
//alert(marker.position.toArray());//(marker.extData
this
.
props
.
addMarker
(
marker
)
//
this.props.addMarker(marker)
}
//
}
}
//
}
componentWillUnmount
()
{
componentWillUnmount
()
{
this
.
objAnchorHelper
&&
this
.
objAnchorHelper
.
destroy
();
this
.
objAnchorHelper
&&
this
.
objAnchorHelper
.
destroy
();
}
}
...
@@ -128,6 +135,9 @@ export default function marker3DFactory(WrappedComponent = 'div', options){
...
@@ -128,6 +135,9 @@ export default function marker3DFactory(WrappedComponent = 'div', options){
onMarkerClick
=
(
marker
,
e
)
=>
{
onMarkerClick
=
(
marker
,
e
)
=>
{
const
{
isClick
}
=
this
.
state
;
const
{
isClick
}
=
this
.
state
;
if
(
this
.
props
.
editFlag
){
return
false
}
if
(
this
.
props
.
isEditMode
)
{
if
(
this
.
props
.
isEditMode
)
{
return
false
return
false
}
}
...
@@ -146,21 +156,21 @@ export default function marker3DFactory(WrappedComponent = 'div', options){
...
@@ -146,21 +156,21 @@ export default function marker3DFactory(WrappedComponent = 'div', options){
that
.
setState
({
isClick
:
true
});
// 将isClick设置为true
that
.
setState
({
isClick
:
true
});
// 将isClick设置为true
},
1000
);
},
1000
);
}
}
markerDragend
=
(
marker
,
evt
)
=>
{
if
(
marker
){
console
.
log
(
marker
.
position
);
console
.
log
(
marker
.
extData
);
this
.
props
.
addMarker
(
marker
)
}
}
markerCreated
=
({
markersCache
})
=>
{
markerCreated
=
({
markersCache
})
=>
{
let
{
editFlag
,
selectKey
}
=
this
.
props
this
.
markersCache
=
markersCache
;
this
.
markersCache
=
markersCache
;
this
.
props
.
positionCtl
&&
this
.
props
.
positionCtl
.
addListener
(
'changeDone'
,
this
.
onEditorChangeDone
);
//this.outlineHelper = this.stagePilot ? this.stagePilot.outlineHelper : undefined;
// 拖拽过程即刻改变line
this
.
props
.
positionCtl
&&
this
.
props
.
positionCtl
.
addListener
(
'objectChange'
,
this
.
onEditorChange
);
// 绑定 positionCtl
this
.
props
.
positionCtl
&&
this
.
markersCache
.
eachValue
(
item
=>
{
this
.
props
.
positionCtl
.
addObjects
(
item
.
node
);
});
this
.
stagePilot
=
this
.
props
.
stagePilot
;
this
.
outlineHelper
=
this
.
stagePilot
?
this
.
stagePilot
.
outlineHelper
:
undefined
;
markersCache
.
eachValue
(
obj
=>
{
markersCache
.
eachValue
(
obj
=>
{
this
.
setTopCardConf
(
obj
,
obj
.
extData
);
this
.
setTopCardConf
(
obj
,
obj
.
extData
);
if
(
obj
.
extData
.
type
===
"riskSource"
&&
markerType
!=
'impEquipmentMode'
){
if
(
obj
.
extData
.
type
===
"riskSource"
&&
markerType
!=
'impEquipmentMode'
&&
!
editFlag
){
this
.
setTwinkleConf
(
obj
);
this
.
setTwinkleConf
(
obj
);
}
}
});
});
...
@@ -215,13 +225,18 @@ export default function marker3DFactory(WrappedComponent = 'div', options){
...
@@ -215,13 +225,18 @@ export default function marker3DFactory(WrappedComponent = 'div', options){
const
{
markers
,
...
rest
}
=
this
.
props
;
const
{
markers
,
...
rest
}
=
this
.
props
;
const
{
planStarted
}
=
this
.
state
;
const
{
planStarted
}
=
this
.
state
;
let
dialogStyle
=
{
zIndex
:
1000
};
let
dialogStyle
=
{
zIndex
:
1000
};
const
events
=
{
dragend
:
this
.
markerDragend
,
};
const
result
=
buildMarkerOptions
(
markers
,
markerType
,
markerParams
);
const
result
=
buildMarkerOptions
(
markers
,
markerType
,
markerParams
);
return
(
return
(
<
WrappedComponent
>
<
WrappedComponent
>
<
Markers
<
Markers
{...
rest
}
{...
rest
}
markers
=
{
result
}
draggable
events
=
{
this
.
markerEvents
}
markers
=
{
deepCopy
(
result
)}
//events={this.markerEvents}
events
=
{
events
}
onCreated
=
{
this
.
markerCreated
}
onCreated
=
{
this
.
markerCreated
}
/
>
/
>
{
!
planStarted
&&
<
PointDialog
style
=
{
dialogStyle
}
ref
=
{
node
=>
this
.
pdRef
=
node
}
/>
}
{
!
planStarted
&&
<
PointDialog
style
=
{
dialogStyle
}
ref
=
{
node
=>
this
.
pdRef
=
node
}
/>
}
...
...
mods/components/3dviewConvertor/view/points/markerFactory.js
View file @
c07698bf
...
@@ -106,7 +106,7 @@ export default function markerFactory(WrappedComponent = 'div', options){
...
@@ -106,7 +106,7 @@ export default function markerFactory(WrappedComponent = 'div', options){
<
WrappedComponent
>
<
WrappedComponent
>
<
Markers
<
Markers
{...
this
.
props
}
{...
this
.
props
}
markers
=
{
deepCopy
(
markers
)
}
markers
=
{
markers
}
events
=
{
this
.
markerEvents
}
events
=
{
this
.
markerEvents
}
render
=
{
this
.
renderMarker
}
render
=
{
this
.
renderMarker
}
onCreated
=
{
this
.
markerCreated
}
onCreated
=
{
this
.
markerCreated
}
...
...
report.20200603.100305.36296.0.001.json
0 → 100644
View file @
c07698bf
{
"header"
:
{
"reportVersion"
:
1
,
"event"
:
"Allocation failed - JavaScript heap out of memory"
,
"trigger"
:
"FatalError"
,
"filename"
:
"report.20200603.100305.36296.0.001.json"
,
"dumpEventTime"
:
"2020-06-03T10:03:05Z"
,
"dumpEventTimeStamp"
:
"1591149785300"
,
"processId"
:
36296
,
"cwd"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"commandLine"
:
[
"node"
,
"G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin
\\\\
..
\\
webpack-dev-server
\\
bin
\\
webpack-dev-server.js"
],
"nodejsVersion"
:
"v12.16.1"
,
"wordSize"
:
64
,
"arch"
:
"x64"
,
"platform"
:
"win32"
,
"componentVersions"
:
{
"node"
:
"12.16.1"
,
"v8"
:
"7.8.279.23-node.31"
,
"uv"
:
"1.34.0"
,
"zlib"
:
"1.2.11"
,
"brotli"
:
"1.0.7"
,
"ares"
:
"1.15.0"
,
"modules"
:
"72"
,
"nghttp2"
:
"1.40.0"
,
"napi"
:
"5"
,
"llhttp"
:
"2.0.4"
,
"http_parser"
:
"2.9.3"
,
"openssl"
:
"1.1.1d"
,
"cldr"
:
"35.1"
,
"icu"
:
"64.2"
,
"tz"
:
"2019c"
,
"unicode"
:
"12.1"
},
"release"
:
{
"name"
:
"node"
,
"lts"
:
"Erbium"
,
"headersUrl"
:
"https://nodejs.org/download/release/v12.16.1/node-v12.16.1-headers.tar.gz"
,
"sourceUrl"
:
"https://nodejs.org/download/release/v12.16.1/node-v12.16.1.tar.gz"
,
"libUrl"
:
"https://nodejs.org/download/release/v12.16.1/win-x64/node.lib"
},
"osName"
:
"Windows_NT"
,
"osRelease"
:
"10.0.18362"
,
"osVersion"
:
"Windows 10 Pro"
,
"osMachine"
:
"x86_64"
,
"cpus"
:
[
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
44378250
,
"nice"
:
0
,
"sys"
:
47512359
,
"idle"
:
707456187
,
"irq"
:
28162718
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
107269312
,
"nice"
:
0
,
"sys"
:
17633921
,
"idle"
:
674443171
,
"irq"
:
656828
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
64093234
,
"nice"
:
0
,
"sys"
:
11438468
,
"idle"
:
723814718
,
"irq"
:
268906
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
54161265
,
"nice"
:
0
,
"sys"
:
10061125
,
"idle"
:
735124031
,
"irq"
:
215437
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
39057609
,
"nice"
:
0
,
"sys"
:
10471234
,
"idle"
:
749817546
,
"irq"
:
173312
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
42819984
,
"nice"
:
0
,
"sys"
:
11931328
,
"idle"
:
744595093
,
"irq"
:
261687
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
47849203
,
"nice"
:
0
,
"sys"
:
14000468
,
"idle"
:
737496734
,
"irq"
:
190562
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
55628500
,
"nice"
:
0
,
"sys"
:
18872906
,
"idle"
:
724845000
,
"irq"
:
214546
}
],
"networkInterfaces"
:
[
{
"name"
:
"以太网"
,
"internal"
:
false
,
"mac"
:
"e4:54:e8:bc:0c:f8"
,
"address"
:
"fe80::fc0b:6bad:6f5:3715"
,
"netmask"
:
"ffff:ffff:ffff:ffff::"
,
"family"
:
"IPv6"
,
"scopeid"
:
9
},
{
"name"
:
"以太网"
,
"internal"
:
false
,
"mac"
:
"e4:54:e8:bc:0c:f8"
,
"address"
:
"172.16.3.26"
,
"netmask"
:
"255.255.0.0"
,
"family"
:
"IPv4"
},
{
"name"
:
"Loopback Pseudo-Interface 1"
,
"internal"
:
true
,
"mac"
:
"00:00:00:00:00:00"
,
"address"
:
"::1"
,
"netmask"
:
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"
,
"family"
:
"IPv6"
,
"scopeid"
:
0
},
{
"name"
:
"Loopback Pseudo-Interface 1"
,
"internal"
:
true
,
"mac"
:
"00:00:00:00:00:00"
,
"address"
:
"127.0.0.1"
,
"netmask"
:
"255.0.0.0"
,
"family"
:
"IPv4"
}
],
"host"
:
"DESKTOP-KKH52JE"
},
"javascriptStack"
:
{
"message"
:
"No stack."
,
"stack"
:
[
"Unavailable."
]
},
"nativeStack"
:
[
{
"pc"
:
"0x00007ff7657119f9"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+10873"
},
{
"pc"
:
"0x00007ff765715e1c"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+28316"
},
{
"pc"
:
"0x00007ff765714dd8"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+24152"
},
{
"pc"
:
"0x00007ff7658134cb"
,
"symbol"
:
"v8::base::CPU::has_sse+38363"
},
{
"pc"
:
"0x00007ff766029f4e"
,
"symbol"
:
"v8::Isolate::ReportExternalAllocationLimitReached+94"
},
{
"pc"
:
"0x00007ff766012021"
,
"symbol"
:
"v8::SharedArrayBuffer::Externalize+833"
},
{
"pc"
:
"0x00007ff765ede57c"
,
"symbol"
:
"v8::internal::Heap::EphemeronKeyWriteBarrierFromCode+1436"
},
{
"pc"
:
"0x00007ff765ee97d0"
,
"symbol"
:
"v8::internal::Heap::ProtectUnprotectedMemoryChunks+1312"
},
{
"pc"
:
"0x00007ff765ee62f4"
,
"symbol"
:
"v8::internal::Heap::PageFlagsAreConsistent+3204"
},
{
"pc"
:
"0x00007ff765edbb13"
,
"symbol"
:
"v8::internal::Heap::CollectGarbage+1283"
},
{
"pc"
:
"0x00007ff765eda184"
,
"symbol"
:
"v8::internal::Heap::AddRetainedMap+2452"
},
{
"pc"
:
"0x00007ff765efb36d"
,
"symbol"
:
"v8::internal::Factory::NewFillerObject+61"
},
{
"pc"
:
"0x00007ff765c60c51"
,
"symbol"
:
"v8::internal::interpreter::JumpTableTargetOffsets::iterator::operator=+1665"
},
{
"pc"
:
"0x00007ff766474ddd"
,
"symbol"
:
"v8::internal::SetupIsolateDelegate::SetupHeap+546637"
},
{
"pc"
:
"0x000001d18ac04f59"
,
"symbol"
:
""
}
],
"javascriptHeap"
:
{
"totalMemory"
:
2160701440
,
"totalCommittedMemory"
:
2160701440
,
"usedMemory"
:
2146829480
,
"availableMemory"
:
39208736
,
"memoryLimit"
:
2197815296
,
"heapSpaces"
:
{
"read_only_space"
:
{
"memorySize"
:
262144
,
"committedMemory"
:
262144
,
"capacity"
:
32808
,
"used"
:
32808
,
"available"
:
0
},
"new_space"
:
{
"memorySize"
:
2097152
,
"committedMemory"
:
2097152
,
"capacity"
:
1047456
,
"used"
:
32
,
"available"
:
1047424
},
"old_space"
:
{
"memorySize"
:
307118080
,
"committedMemory"
:
307118080
,
"capacity"
:
305503624
,
"used"
:
305503624
,
"available"
:
0
},
"code_space"
:
{
"memorySize"
:
2265088
,
"committedMemory"
:
2265088
,
"capacity"
:
2042784
,
"used"
:
2042784
,
"available"
:
0
},
"map_space"
:
{
"memorySize"
:
11538432
,
"committedMemory"
:
11538432
,
"capacity"
:
2572480
,
"used"
:
2572480
,
"available"
:
0
},
"large_object_space"
:
{
"memorySize"
:
1836797952
,
"committedMemory"
:
1836797952
,
"capacity"
:
1836133464
,
"used"
:
1836133464
,
"available"
:
0
},
"code_large_object_space"
:
{
"memorySize"
:
622592
,
"committedMemory"
:
622592
,
"capacity"
:
544288
,
"used"
:
544288
,
"available"
:
0
},
"new_large_object_space"
:
{
"memorySize"
:
0
,
"committedMemory"
:
0
,
"capacity"
:
1047456
,
"used"
:
0
,
"available"
:
1047456
}
}
},
"resourceUsage"
:
{
"userCpuSeconds"
:
699.062
,
"kernelCpuSeconds"
:
76.453
,
"cpuConsumptionPercent"
:
0.932894
,
"maxRss"
:
2090557440
,
"pageFaults"
:
{
"IORequired"
:
45884405
,
"IONotRequired"
:
0
},
"fsActivity"
:
{
"reads"
:
10989
,
"writes"
:
321
}
},
"libuv"
:
[
],
"environmentVariables"
:
{
"=G:"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"ALLUSERSPROFILE"
:
"C:
\\
ProgramData"
,
"APPDATA"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming"
,
"ChocolateyInstall"
:
"C:
\\
ProgramData
\\
chocolatey"
,
"ChocolateyLastPathUpdate"
:
"132289007529906412"
,
"CLASSPATH"
:
".;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
lib
\\
dt.jar;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
lib
\\
tools.jar;"
,
"COLORTERM"
:
"truecolor"
,
"CommonProgramFiles"
:
"C:
\\
Program Files
\\
Common Files"
,
"CommonProgramFiles(x86)"
:
"C:
\\
Program Files (x86)
\\
Common Files"
,
"CommonProgramW6432"
:
"C:
\\
Program Files
\\
Common Files"
,
"COMPUTERNAME"
:
"DESKTOP-KKH52JE"
,
"ComSpec"
:
"C:
\\
Windows
\\
system32
\\
cmd.exe"
,
"dp0"
:
"G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin
\\
"
,
"DriverData"
:
"C:
\\
Windows
\\
System32
\\
Drivers
\\
DriverData"
,
"FPS_BROWSER_APP_PROFILE_STRING"
:
"Internet Explorer"
,
"FPS_BROWSER_USER_PROFILE_STRING"
:
"Default"
,
"GIT_ASKPASS"
:
"c:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
resources
\\
app
\\
extensions
\\
git
\\
dist
\\
askpass.sh"
,
"HOME"
:
"C:
\\
Users
\\
DELL"
,
"HOMEDRIVE"
:
"C:"
,
"HOMEPATH"
:
"
\\
Users
\\
DELL"
,
"INIT_CWD"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"JAVA_HOME"
:
"C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201"
,
"LANG"
:
"zh_CN.UTF-8"
,
"LOCALAPPDATA"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local"
,
"LOGONSERVER"
:
"
\\\\
DESKTOP-KKH52JE"
,
"NODE"
:
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"NODE_ENV"
:
"development "
,
"NODE_EXE"
:
"F:
\\
install
\\
nodejs
\\\\
node.exe"
,
"NODE_PATH"
:
"F:
\\
install
\\
nodejs
\\
node_modules"
,
"NPM_CLI_JS"
:
"F:
\\
install
\\
nodejs
\\\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"npm_config_access"
:
""
,
"npm_config_allow_same_version"
:
""
,
"npm_config_also"
:
""
,
"npm_config_always_auth"
:
""
,
"npm_config_argv"
:
"{
\"
remain
\"
:[],
\"
cooked
\"
:[
\"
start
\"
],
\"
original
\"
:[
\"
start
\"
]}"
,
"npm_config_audit"
:
"true"
,
"npm_config_audit_level"
:
"low"
,
"npm_config_auth_type"
:
"legacy"
,
"npm_config_before"
:
""
,
"npm_config_bin_links"
:
"true"
,
"npm_config_browser"
:
""
,
"npm_config_ca"
:
""
,
"npm_config_cache"
:
"F:
\\
install
\\
nodejs
\\
node_cache"
,
"npm_config_cache_lock_retries"
:
"10"
,
"npm_config_cache_lock_stale"
:
"60000"
,
"npm_config_cache_lock_wait"
:
"10000"
,
"npm_config_cache_max"
:
"Infinity"
,
"npm_config_cache_min"
:
"10"
,
"npm_config_cafile"
:
""
,
"npm_config_cert"
:
""
,
"npm_config_cidr"
:
""
,
"npm_config_color"
:
"true"
,
"npm_config_commit_hooks"
:
"true"
,
"npm_config_depth"
:
"Infinity"
,
"npm_config_description"
:
"true"
,
"npm_config_dev"
:
""
,
"npm_config_dry_run"
:
""
,
"npm_config_editor"
:
"notepad.exe"
,
"npm_config_engine_strict"
:
""
,
"npm_config_fetch_retries"
:
"2"
,
"npm_config_fetch_retry_factor"
:
"10"
,
"npm_config_fetch_retry_maxtimeout"
:
"60000"
,
"npm_config_fetch_retry_mintimeout"
:
"10000"
,
"npm_config_force"
:
""
,
"npm_config_format_package_lock"
:
"true"
,
"npm_config_fund"
:
"true"
,
"npm_config_git"
:
"git"
,
"npm_config_git_tag_version"
:
"true"
,
"npm_config_global"
:
""
,
"npm_config_globalconfig"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
etc
\\
npmrc"
,
"npm_config_globalignorefile"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
etc
\\
npmignore"
,
"npm_config_global_style"
:
""
,
"npm_config_group"
:
""
,
"npm_config_ham_it_up"
:
""
,
"npm_config_heading"
:
"npm"
,
"npm_config_https_proxy"
:
""
,
"npm_config_if_present"
:
""
,
"npm_config_ignore_prepublish"
:
""
,
"npm_config_ignore_scripts"
:
""
,
"npm_config_init_author_email"
:
""
,
"npm_config_init_author_name"
:
""
,
"npm_config_init_author_url"
:
""
,
"npm_config_init_license"
:
"ISC"
,
"npm_config_init_module"
:
"C:
\\
Users
\\
DELL
\\
.npm-init.js"
,
"npm_config_init_version"
:
"1.0.0"
,
"npm_config_json"
:
""
,
"npm_config_key"
:
""
,
"npm_config_legacy_bundling"
:
""
,
"npm_config_link"
:
""
,
"npm_config_local_address"
:
""
,
"npm_config_loglevel"
:
"notice"
,
"npm_config_logs_max"
:
"10"
,
"npm_config_long"
:
""
,
"npm_config_maxsockets"
:
"50"
,
"npm_config_message"
:
"%s"
,
"npm_config_metrics_registry"
:
"http://172.16.11.26:9696/"
,
"npm_config_node_gyp"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
node_modules
\\
node-gyp
\\
bin
\\
node-gyp.js"
,
"npm_config_node_options"
:
""
,
"npm_config_node_version"
:
"12.16.1"
,
"npm_config_noproxy"
:
""
,
"npm_config_npm_set_registry_http___registry_npm_taobao_org_"
:
"true"
,
"npm_config_offline"
:
""
,
"npm_config_onload_script"
:
""
,
"npm_config_only"
:
""
,
"npm_config_optional"
:
"true"
,
"npm_config_otp"
:
""
,
"npm_config_package_lock"
:
""
,
"npm_config_package_lock_only"
:
""
,
"npm_config_parseable"
:
""
,
"npm_config_prefer_offline"
:
""
,
"npm_config_prefer_online"
:
""
,
"npm_config_prefix"
:
"F:
\\
install
\\
nodejs
\\
node_global"
,
"npm_config_preid"
:
""
,
"npm_config_production"
:
""
,
"npm_config_progress"
:
"true"
,
"npm_config_proxy"
:
""
,
"npm_config_read_only"
:
""
,
"npm_config_rebuild_bundle"
:
"true"
,
"npm_config_registry"
:
"http://172.16.11.26:9696/"
,
"npm_config_rollback"
:
"true"
,
"npm_config_sass_binary_site"
:
"http://172.16.11.26:8888/node-sass"
,
"npm_config_save"
:
""
,
"npm_config_save_bundle"
:
""
,
"npm_config_save_dev"
:
""
,
"npm_config_save_exact"
:
""
,
"npm_config_save_optional"
:
""
,
"npm_config_save_prefix"
:
"^"
,
"npm_config_save_prod"
:
""
,
"npm_config_scope"
:
""
,
"npm_config_scripts_prepend_node_path"
:
"warn-only"
,
"npm_config_script_shell"
:
""
,
"npm_config_searchexclude"
:
""
,
"npm_config_searchlimit"
:
"20"
,
"npm_config_searchopts"
:
""
,
"npm_config_searchstaleness"
:
"900"
,
"npm_config_send_metrics"
:
""
,
"npm_config_shell"
:
"C:
\\
Windows
\\
system32
\\
cmd.exe"
,
"npm_config_shrinkwrap"
:
"true"
,
"npm_config_sign_git_commit"
:
""
,
"npm_config_sign_git_tag"
:
""
,
"npm_config_sso_poll_frequency"
:
"500"
,
"npm_config_sso_type"
:
"oauth"
,
"npm_config_strict_ssl"
:
"true"
,
"npm_config_tag"
:
"latest"
,
"npm_config_tag_version_prefix"
:
"v"
,
"npm_config_timing"
:
""
,
"npm_config_tmp"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"npm_config_umask"
:
"0000"
,
"npm_config_unicode"
:
""
,
"npm_config_unsafe_perm"
:
"true"
,
"npm_config_update_notifier"
:
"true"
,
"npm_config_usage"
:
""
,
"npm_config_user"
:
""
,
"npm_config_userconfig"
:
"C:
\\
Users
\\
DELL
\\
.npmrc"
,
"npm_config_user_agent"
:
"npm/6.13.4 node/v12.16.1 win32 x64"
,
"npm_config_version"
:
""
,
"npm_config_versions"
:
""
,
"npm_config_viewer"
:
"browser"
,
"npm_execpath"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"npm_lifecycle_event"
:
"start"
,
"npm_lifecycle_script"
:
"set NODE_ENV=development && webpack-dev-server"
,
"npm_node_execpath"
:
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"npm_package_author_name"
:
"ilex.h"
,
"npm_package_dependencies_amos_3d"
:
"^2.x"
,
"npm_package_dependencies_amos_designer"
:
"^1.x"
,
"npm_package_dependencies_amos_viz"
:
"^1.x"
,
"npm_package_dependencies_amos_websocket"
:
"^1.0.3"
,
"npm_package_dependencies_ray_hotkeys"
:
"^1.0.0"
,
"npm_package_devDependencies_amos_build"
:
"^3.x"
,
"npm_package_devDependencies_amos_framework"
:
"^1.x"
,
"npm_package_devDependencies_amos_iot_3dgraph"
:
"^1.0.3"
,
"npm_package_devDependencies_amos_iot_webstudio"
:
"^1.x"
,
"npm_package_devDependencies_amos_processor"
:
"^2.x"
,
"npm_package_devDependencies_amos_security"
:
"^2.x"
,
"npm_package_devDependencies_eslint_config_ray"
:
"^1.0.25"
,
"npm_package_devDependencies_ray_code_split"
:
"^1.0.1"
,
"npm_package_devDependencies_ray_mediaquery"
:
"^1.0.0"
,
"npm_package_devDependencies_ray_progress"
:
"^1.0.0"
,
"npm_package_devDependencies_react"
:
"~16.0.0"
,
"npm_package_devDependencies_react_dom"
:
"~16.0.0"
,
"npm_package_devDependencies_stylelint_config_ray"
:
"^2.0.0"
,
"npm_package_gitHead"
:
"0cd8530ba12205aad17f7495c945a830cf3c540f"
,
"npm_package_main"
:
"./lib/index.js"
,
"npm_package_name"
:
"amos-station-module-view"
,
"npm_package_publishConfig_registry"
:
"http://172.16.11.26:9696"
,
"npm_package_readmeFilename"
:
"readme.md"
,
"npm_package_scripts_build"
:
"ray-build react && ray-build stylescss"
,
"npm_package_scripts_clean"
:
"rimraf lib dist released"
,
"npm_package_scripts_lint"
:
"eslint src tests"
,
"npm_package_scripts_lint_fix"
:
"npm run lint -- --fix"
,
"npm_package_scripts_pub"
:
"npm run build && amos-run dllreleased"
,
"npm_package_scripts_start"
:
"set NODE_ENV=development && webpack-dev-server"
,
"npm_package_scripts_stylelint"
:
"stylelint src"
,
"npm_package_scripts_watch"
:
"webpack -w"
,
"npm_package_version"
:
"1.0.0"
,
"NPM_PREFIX_NPM_CLI_JS"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"NUMBER_OF_PROCESSORS"
:
"8"
,
"NVM_HOME"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm"
,
"NVM_SYMLINK"
:
"C:
\\
Program Files
\\
nodejs"
,
"OneDrive"
:
"C:
\\
Users
\\
DELL
\\
OneDrive"
,
"OS"
:
"Windows_NT"
,
"Path"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
node_modules
\\
npm-lifecycle
\\
node-gyp-bin;G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin;C:
\\
Program Files (x86)
\\
Common Files
\\
Oracle
\\
Java
\\
javapath;C:
\\
Windows
\\
system32;C:
\\
Windows;C:
\\
Windows
\\
System32
\\
Wbem;C:
\\
Windows
\\
System32
\\
WindowsPowerShell
\\
v1.0
\\
;C:
\\
Windows
\\
System32
\\
OpenSSH
\\
;C:
\\
Program Files (x86)
\\
NVIDIA Corporation
\\
PhysX
\\
Common;D:
\\
Program Files
\\
Git
\\
cmd;C:
\\
Program Files
\\
TortoiseGit
\\
bin;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm;C:
\\
Program Files
\\
NVIDIA Corporation
\\
NVIDIA NvDLISR;C:
\\
Program Files
\\
TortoiseSVN
\\
bin;C:
\\
ProgramData
\\
chocolatey
\\
bin;F:
\\
install
\\
nodejs
\\
node_global;F:
\\
install
\\
Python27;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
bin;F:
\\
install
\\
nodejs
\\
;C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Microsoft
\\
WindowsApps;
\"
C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
bin;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
jre
\\
bin
\"
;C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
bin;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm;C:
\\
Program Files
\\
nodejs;D:
\\
develop
\\
nodejs
\\
node_global;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
npm"
,
"PATHEXT"
:
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JSE;.WSF;.WSH;.MSC;.CPL"
,
"PROCESSOR_ARCHITECTURE"
:
"AMD64"
,
"PROCESSOR_IDENTIFIER"
:
"Intel64 Family 6 Model 158 Stepping 13, GenuineIntel"
,
"PROCESSOR_LEVEL"
:
"6"
,
"PROCESSOR_REVISION"
:
"9e0d"
,
"ProgramData"
:
"C:
\\
ProgramData"
,
"ProgramFiles"
:
"C:
\\
Program Files"
,
"ProgramFiles(x86)"
:
"C:
\\
Program Files (x86)"
,
"ProgramW6432"
:
"C:
\\
Program Files"
,
"PROMPT"
:
"$P$G"
,
"PSModulePath"
:
"C:
\\
Users
\\
DELL
\\
Documents
\\
WindowsPowerShell
\\
Modules;C:
\\
Program Files
\\
WindowsPowerShell
\\
Modules;C:
\\
Windows
\\
system32
\\
WindowsPowerShell
\\
v1.0
\\
Modules"
,
"PUBLIC"
:
"C:
\\
Users
\\
Public"
,
"SESSIONNAME"
:
"Console"
,
"SystemDrive"
:
"C:"
,
"SystemRoot"
:
"C:
\\
Windows"
,
"TEMP"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"TERM_PROGRAM"
:
"vscode"
,
"TERM_PROGRAM_VERSION"
:
"1.45.1"
,
"TMP"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"USERDOMAIN"
:
"DESKTOP-KKH52JE"
,
"USERDOMAIN_ROAMINGPROFILE"
:
"DESKTOP-KKH52JE"
,
"USERNAME"
:
"DELL"
,
"USERPROFILE"
:
"C:
\\
Users
\\
DELL"
,
"VSCODE_GIT_ASKPASS_MAIN"
:
"c:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
resources
\\
app
\\
extensions
\\
git
\\
dist
\\
askpass-main.js"
,
"VSCODE_GIT_ASKPASS_NODE"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
Code.exe"
,
"VSCODE_GIT_IPC_HANDLE"
:
"
\\\\
.
\\
pipe
\\
vscode-git-11879c72ba-sock"
,
"windir"
:
"C:
\\
Windows"
,
"_prog"
:
"node"
},
"sharedObjects"
:
[
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"C:
\\
Windows
\\
SYSTEM32
\\
ntdll.dll"
,
"C:
\\
Windows
\\
System32
\\
KERNEL32.DLL"
,
"C:
\\
Windows
\\
System32
\\
KERNELBASE.dll"
,
"C:
\\
Windows
\\
System32
\\
WS2_32.dll"
,
"C:
\\
Windows
\\
System32
\\
RPCRT4.dll"
,
"C:
\\
Windows
\\
System32
\\
PSAPI.DLL"
,
"C:
\\
Windows
\\
System32
\\
ADVAPI32.dll"
,
"C:
\\
Windows
\\
System32
\\
msvcrt.dll"
,
"C:
\\
Windows
\\
System32
\\
sechost.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dbghelp.dll"
,
"C:
\\
Windows
\\
System32
\\
USER32.dll"
,
"C:
\\
Windows
\\
System32
\\
ucrtbase.dll"
,
"C:
\\
Windows
\\
System32
\\
win32u.dll"
,
"C:
\\
Windows
\\
System32
\\
GDI32.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
IPHLPAPI.DLL"
,
"C:
\\
Windows
\\
System32
\\
gdi32full.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
USERENV.dll"
,
"C:
\\
Windows
\\
System32
\\
msvcp_win.dll"
,
"C:
\\
Windows
\\
System32
\\
profapi.dll"
,
"C:
\\
Windows
\\
System32
\\
CRYPT32.dll"
,
"C:
\\
Windows
\\
System32
\\
MSASN1.dll"
,
"C:
\\
Windows
\\
System32
\\
bcrypt.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
WINMM.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
winmmbase.dll"
,
"C:
\\
Windows
\\
System32
\\
cfgmgr32.dll"
,
"C:
\\
Windows
\\
System32
\\
bcryptPrimitives.dll"
,
"C:
\\
Windows
\\
System32
\\
IMM32.DLL"
,
"C:
\\
Windows
\\
System32
\\
powrprof.dll"
,
"C:
\\
Windows
\\
System32
\\
UMPDC.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
CRYPTBASE.DLL"
,
"C:
\\
Windows
\\
system32
\\
uxtheme.dll"
,
"C:
\\
Windows
\\
System32
\\
combase.dll"
,
"C:
\\
Windows
\\
system32
\\
mswsock.dll"
,
"C:
\\
Windows
\\
System32
\\
kernel.appcore.dll"
,
"C:
\\
Windows
\\
System32
\\
NSI.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dhcpcsvc6.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dhcpcsvc.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
DNSAPI.dll"
,
"
\\\\
?
\\
G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
node-sass
\\
vendor
\\
win32-x64-72
\\
binding.node"
,
"C:
\\
Windows
\\
system32
\\
napinsp.dll"
,
"C:
\\
Windows
\\
system32
\\
pnrpnsp.dll"
,
"C:
\\
Windows
\\
System32
\\
winrnr.dll"
,
"C:
\\
Windows
\\
system32
\\
NLAapi.dll"
,
"C:
\\
Windows
\\
system32
\\
wshbth.dll"
]
}
\ No newline at end of file
report.20200603.124619.46952.0.001.json
0 → 100644
View file @
c07698bf
{
"header"
:
{
"reportVersion"
:
1
,
"event"
:
"Allocation failed - JavaScript heap out of memory"
,
"trigger"
:
"FatalError"
,
"filename"
:
"report.20200603.124619.46952.0.001.json"
,
"dumpEventTime"
:
"2020-06-03T12:46:19Z"
,
"dumpEventTimeStamp"
:
"1591159579051"
,
"processId"
:
46952
,
"cwd"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"commandLine"
:
[
"node"
,
"G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin
\\\\
..
\\
webpack-dev-server
\\
bin
\\
webpack-dev-server.js"
],
"nodejsVersion"
:
"v12.16.1"
,
"wordSize"
:
64
,
"arch"
:
"x64"
,
"platform"
:
"win32"
,
"componentVersions"
:
{
"node"
:
"12.16.1"
,
"v8"
:
"7.8.279.23-node.31"
,
"uv"
:
"1.34.0"
,
"zlib"
:
"1.2.11"
,
"brotli"
:
"1.0.7"
,
"ares"
:
"1.15.0"
,
"modules"
:
"72"
,
"nghttp2"
:
"1.40.0"
,
"napi"
:
"5"
,
"llhttp"
:
"2.0.4"
,
"http_parser"
:
"2.9.3"
,
"openssl"
:
"1.1.1d"
,
"cldr"
:
"35.1"
,
"icu"
:
"64.2"
,
"tz"
:
"2019c"
,
"unicode"
:
"12.1"
},
"release"
:
{
"name"
:
"node"
,
"lts"
:
"Erbium"
,
"headersUrl"
:
"https://nodejs.org/download/release/v12.16.1/node-v12.16.1-headers.tar.gz"
,
"sourceUrl"
:
"https://nodejs.org/download/release/v12.16.1/node-v12.16.1.tar.gz"
,
"libUrl"
:
"https://nodejs.org/download/release/v12.16.1/win-x64/node.lib"
},
"osName"
:
"Windows_NT"
,
"osRelease"
:
"10.0.18362"
,
"osVersion"
:
"Windows 10 Pro"
,
"osMachine"
:
"x86_64"
,
"cpus"
:
[
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
45508718
,
"nice"
:
0
,
"sys"
:
48253234
,
"idle"
:
715378609
,
"irq"
:
28506750
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
109620375
,
"nice"
:
0
,
"sys"
:
17963437
,
"idle"
:
681556359
,
"irq"
:
667906
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
65607062
,
"nice"
:
0
,
"sys"
:
11657625
,
"idle"
:
731875500
,
"irq"
:
274812
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
55640843
,
"nice"
:
0
,
"sys"
:
10258171
,
"idle"
:
743241171
,
"irq"
:
221093
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
40760687
,
"nice"
:
0
,
"sys"
:
10698593
,
"idle"
:
757680875
,
"irq"
:
177984
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
45669390
,
"nice"
:
0
,
"sys"
:
12177000
,
"idle"
:
751293781
,
"irq"
:
266281
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
51325609
,
"nice"
:
0
,
"sys"
:
14249203
,
"idle"
:
743565359
,
"irq"
:
194250
},
{
"model"
:
"Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz"
,
"speed"
:
3000
,
"user"
:
60047203
,
"nice"
:
0
,
"sys"
:
19209968
,
"idle"
:
729883000
,
"irq"
:
218093
}
],
"networkInterfaces"
:
[
{
"name"
:
"以太网"
,
"internal"
:
false
,
"mac"
:
"e4:54:e8:bc:0c:f8"
,
"address"
:
"fe80::fc0b:6bad:6f5:3715"
,
"netmask"
:
"ffff:ffff:ffff:ffff::"
,
"family"
:
"IPv6"
,
"scopeid"
:
9
},
{
"name"
:
"以太网"
,
"internal"
:
false
,
"mac"
:
"e4:54:e8:bc:0c:f8"
,
"address"
:
"172.16.3.26"
,
"netmask"
:
"255.255.0.0"
,
"family"
:
"IPv4"
},
{
"name"
:
"Loopback Pseudo-Interface 1"
,
"internal"
:
true
,
"mac"
:
"00:00:00:00:00:00"
,
"address"
:
"::1"
,
"netmask"
:
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"
,
"family"
:
"IPv6"
,
"scopeid"
:
0
},
{
"name"
:
"Loopback Pseudo-Interface 1"
,
"internal"
:
true
,
"mac"
:
"00:00:00:00:00:00"
,
"address"
:
"127.0.0.1"
,
"netmask"
:
"255.0.0.0"
,
"family"
:
"IPv4"
}
],
"host"
:
"DESKTOP-KKH52JE"
},
"javascriptStack"
:
{
"message"
:
"No stack."
,
"stack"
:
[
"Unavailable."
]
},
"nativeStack"
:
[
{
"pc"
:
"0x00007ff7657119f9"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+10873"
},
{
"pc"
:
"0x00007ff765715e1c"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+28316"
},
{
"pc"
:
"0x00007ff765714dd8"
,
"symbol"
:
"std::basic_ostream<char,std::char_traits<char> >::operator<<+24152"
},
{
"pc"
:
"0x00007ff7658134cb"
,
"symbol"
:
"v8::base::CPU::has_sse+38363"
},
{
"pc"
:
"0x00007ff766029f4e"
,
"symbol"
:
"v8::Isolate::ReportExternalAllocationLimitReached+94"
},
{
"pc"
:
"0x00007ff766012021"
,
"symbol"
:
"v8::SharedArrayBuffer::Externalize+833"
},
{
"pc"
:
"0x00007ff765ede57c"
,
"symbol"
:
"v8::internal::Heap::EphemeronKeyWriteBarrierFromCode+1436"
},
{
"pc"
:
"0x00007ff765ee97d0"
,
"symbol"
:
"v8::internal::Heap::ProtectUnprotectedMemoryChunks+1312"
},
{
"pc"
:
"0x00007ff765ee62f4"
,
"symbol"
:
"v8::internal::Heap::PageFlagsAreConsistent+3204"
},
{
"pc"
:
"0x00007ff765edbb13"
,
"symbol"
:
"v8::internal::Heap::CollectGarbage+1283"
},
{
"pc"
:
"0x00007ff765eda184"
,
"symbol"
:
"v8::internal::Heap::AddRetainedMap+2452"
},
{
"pc"
:
"0x00007ff765efb36d"
,
"symbol"
:
"v8::internal::Factory::NewFillerObject+61"
},
{
"pc"
:
"0x00007ff765c60c51"
,
"symbol"
:
"v8::internal::interpreter::JumpTableTargetOffsets::iterator::operator=+1665"
},
{
"pc"
:
"0x00007ff766474ddd"
,
"symbol"
:
"v8::internal::SetupIsolateDelegate::SetupHeap+546637"
},
{
"pc"
:
"0x0000020c19130a60"
,
"symbol"
:
""
}
],
"javascriptHeap"
:
{
"totalMemory"
:
2157465600
,
"totalCommittedMemory"
:
2157465600
,
"usedMemory"
:
2144062520
,
"availableMemory"
:
42444544
,
"memoryLimit"
:
2197815296
,
"heapSpaces"
:
{
"read_only_space"
:
{
"memorySize"
:
262144
,
"committedMemory"
:
262144
,
"capacity"
:
32808
,
"used"
:
32808
,
"available"
:
0
},
"new_space"
:
{
"memorySize"
:
2097152
,
"committedMemory"
:
2097152
,
"capacity"
:
1047456
,
"used"
:
64
,
"available"
:
1047392
},
"old_space"
:
{
"memorySize"
:
331235328
,
"committedMemory"
:
331235328
,
"capacity"
:
329607320
,
"used"
:
329607320
,
"available"
:
0
},
"code_space"
:
{
"memorySize"
:
2265088
,
"committedMemory"
:
2265088
,
"capacity"
:
1925408
,
"used"
:
1925408
,
"available"
:
0
},
"map_space"
:
{
"memorySize"
:
11014144
,
"committedMemory"
:
11014144
,
"capacity"
:
2550160
,
"used"
:
2550160
,
"available"
:
0
},
"large_object_space"
:
{
"memorySize"
:
1809969152
,
"committedMemory"
:
1809969152
,
"capacity"
:
1809402472
,
"used"
:
1809402472
,
"available"
:
0
},
"code_large_object_space"
:
{
"memorySize"
:
622592
,
"committedMemory"
:
622592
,
"capacity"
:
544288
,
"used"
:
544288
,
"available"
:
0
},
"new_large_object_space"
:
{
"memorySize"
:
0
,
"committedMemory"
:
0
,
"capacity"
:
1047456
,
"used"
:
0
,
"available"
:
1047456
}
}
},
"resourceUsage"
:
{
"userCpuSeconds"
:
482.484
,
"kernelCpuSeconds"
:
52.875
,
"cpuConsumptionPercent"
:
5.50328
,
"maxRss"
:
2187206656
,
"pageFaults"
:
{
"IORequired"
:
30174272
,
"IONotRequired"
:
0
},
"fsActivity"
:
{
"reads"
:
10005
,
"writes"
:
277
}
},
"libuv"
:
[
],
"environmentVariables"
:
{
"=G:"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"ALLUSERSPROFILE"
:
"C:
\\
ProgramData"
,
"APPDATA"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming"
,
"ChocolateyInstall"
:
"C:
\\
ProgramData
\\
chocolatey"
,
"ChocolateyLastPathUpdate"
:
"132289007529906412"
,
"CLASSPATH"
:
".;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
lib
\\
dt.jar;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
lib
\\
tools.jar;"
,
"COLORTERM"
:
"truecolor"
,
"CommonProgramFiles"
:
"C:
\\
Program Files
\\
Common Files"
,
"CommonProgramFiles(x86)"
:
"C:
\\
Program Files (x86)
\\
Common Files"
,
"CommonProgramW6432"
:
"C:
\\
Program Files
\\
Common Files"
,
"COMPUTERNAME"
:
"DESKTOP-KKH52JE"
,
"ComSpec"
:
"C:
\\
Windows
\\
system32
\\
cmd.exe"
,
"dp0"
:
"G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin
\\
"
,
"DriverData"
:
"C:
\\
Windows
\\
System32
\\
Drivers
\\
DriverData"
,
"FPS_BROWSER_APP_PROFILE_STRING"
:
"Internet Explorer"
,
"FPS_BROWSER_USER_PROFILE_STRING"
:
"Default"
,
"GIT_ASKPASS"
:
"c:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
resources
\\
app
\\
extensions
\\
git
\\
dist
\\
askpass.sh"
,
"HOME"
:
"C:
\\
Users
\\
DELL"
,
"HOMEDRIVE"
:
"C:"
,
"HOMEPATH"
:
"
\\
Users
\\
DELL"
,
"INIT_CWD"
:
"G:
\\
workSpace
\\
amos-station-module-view"
,
"JAVA_HOME"
:
"C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201"
,
"LANG"
:
"zh_CN.UTF-8"
,
"LOCALAPPDATA"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local"
,
"LOGONSERVER"
:
"
\\\\
DESKTOP-KKH52JE"
,
"NODE"
:
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"NODE_ENV"
:
"development "
,
"NODE_EXE"
:
"F:
\\
install
\\
nodejs
\\\\
node.exe"
,
"NODE_PATH"
:
"F:
\\
install
\\
nodejs
\\
node_modules"
,
"NPM_CLI_JS"
:
"F:
\\
install
\\
nodejs
\\\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"npm_config_access"
:
""
,
"npm_config_allow_same_version"
:
""
,
"npm_config_also"
:
""
,
"npm_config_always_auth"
:
""
,
"npm_config_argv"
:
"{
\"
remain
\"
:[],
\"
cooked
\"
:[
\"
start
\"
],
\"
original
\"
:[
\"
start
\"
]}"
,
"npm_config_audit"
:
"true"
,
"npm_config_audit_level"
:
"low"
,
"npm_config_auth_type"
:
"legacy"
,
"npm_config_before"
:
""
,
"npm_config_bin_links"
:
"true"
,
"npm_config_browser"
:
""
,
"npm_config_ca"
:
""
,
"npm_config_cache"
:
"F:
\\
install
\\
nodejs
\\
node_cache"
,
"npm_config_cache_lock_retries"
:
"10"
,
"npm_config_cache_lock_stale"
:
"60000"
,
"npm_config_cache_lock_wait"
:
"10000"
,
"npm_config_cache_max"
:
"Infinity"
,
"npm_config_cache_min"
:
"10"
,
"npm_config_cafile"
:
""
,
"npm_config_cert"
:
""
,
"npm_config_cidr"
:
""
,
"npm_config_color"
:
"true"
,
"npm_config_commit_hooks"
:
"true"
,
"npm_config_depth"
:
"Infinity"
,
"npm_config_description"
:
"true"
,
"npm_config_dev"
:
""
,
"npm_config_dry_run"
:
""
,
"npm_config_editor"
:
"notepad.exe"
,
"npm_config_engine_strict"
:
""
,
"npm_config_fetch_retries"
:
"2"
,
"npm_config_fetch_retry_factor"
:
"10"
,
"npm_config_fetch_retry_maxtimeout"
:
"60000"
,
"npm_config_fetch_retry_mintimeout"
:
"10000"
,
"npm_config_force"
:
""
,
"npm_config_format_package_lock"
:
"true"
,
"npm_config_fund"
:
"true"
,
"npm_config_git"
:
"git"
,
"npm_config_git_tag_version"
:
"true"
,
"npm_config_global"
:
""
,
"npm_config_globalconfig"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
etc
\\
npmrc"
,
"npm_config_globalignorefile"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
etc
\\
npmignore"
,
"npm_config_global_style"
:
""
,
"npm_config_group"
:
""
,
"npm_config_ham_it_up"
:
""
,
"npm_config_heading"
:
"npm"
,
"npm_config_https_proxy"
:
""
,
"npm_config_if_present"
:
""
,
"npm_config_ignore_prepublish"
:
""
,
"npm_config_ignore_scripts"
:
""
,
"npm_config_init_author_email"
:
""
,
"npm_config_init_author_name"
:
""
,
"npm_config_init_author_url"
:
""
,
"npm_config_init_license"
:
"ISC"
,
"npm_config_init_module"
:
"C:
\\
Users
\\
DELL
\\
.npm-init.js"
,
"npm_config_init_version"
:
"1.0.0"
,
"npm_config_json"
:
""
,
"npm_config_key"
:
""
,
"npm_config_legacy_bundling"
:
""
,
"npm_config_link"
:
""
,
"npm_config_local_address"
:
""
,
"npm_config_loglevel"
:
"notice"
,
"npm_config_logs_max"
:
"10"
,
"npm_config_long"
:
""
,
"npm_config_maxsockets"
:
"50"
,
"npm_config_message"
:
"%s"
,
"npm_config_metrics_registry"
:
"http://172.16.11.26:9696/"
,
"npm_config_node_gyp"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
node_modules
\\
node-gyp
\\
bin
\\
node-gyp.js"
,
"npm_config_node_options"
:
""
,
"npm_config_node_version"
:
"12.16.1"
,
"npm_config_noproxy"
:
""
,
"npm_config_npm_set_registry_http___registry_npm_taobao_org_"
:
"true"
,
"npm_config_offline"
:
""
,
"npm_config_onload_script"
:
""
,
"npm_config_only"
:
""
,
"npm_config_optional"
:
"true"
,
"npm_config_otp"
:
""
,
"npm_config_package_lock"
:
""
,
"npm_config_package_lock_only"
:
""
,
"npm_config_parseable"
:
""
,
"npm_config_prefer_offline"
:
""
,
"npm_config_prefer_online"
:
""
,
"npm_config_prefix"
:
"F:
\\
install
\\
nodejs
\\
node_global"
,
"npm_config_preid"
:
""
,
"npm_config_production"
:
""
,
"npm_config_progress"
:
"true"
,
"npm_config_proxy"
:
""
,
"npm_config_read_only"
:
""
,
"npm_config_rebuild_bundle"
:
"true"
,
"npm_config_registry"
:
"http://172.16.11.26:9696/"
,
"npm_config_rollback"
:
"true"
,
"npm_config_sass_binary_site"
:
"http://172.16.11.26:8888/node-sass"
,
"npm_config_save"
:
""
,
"npm_config_save_bundle"
:
""
,
"npm_config_save_dev"
:
""
,
"npm_config_save_exact"
:
""
,
"npm_config_save_optional"
:
""
,
"npm_config_save_prefix"
:
"^"
,
"npm_config_save_prod"
:
""
,
"npm_config_scope"
:
""
,
"npm_config_scripts_prepend_node_path"
:
"warn-only"
,
"npm_config_script_shell"
:
""
,
"npm_config_searchexclude"
:
""
,
"npm_config_searchlimit"
:
"20"
,
"npm_config_searchopts"
:
""
,
"npm_config_searchstaleness"
:
"900"
,
"npm_config_send_metrics"
:
""
,
"npm_config_shell"
:
"C:
\\
Windows
\\
system32
\\
cmd.exe"
,
"npm_config_shrinkwrap"
:
"true"
,
"npm_config_sign_git_commit"
:
""
,
"npm_config_sign_git_tag"
:
""
,
"npm_config_sso_poll_frequency"
:
"500"
,
"npm_config_sso_type"
:
"oauth"
,
"npm_config_strict_ssl"
:
"true"
,
"npm_config_tag"
:
"latest"
,
"npm_config_tag_version_prefix"
:
"v"
,
"npm_config_timing"
:
""
,
"npm_config_tmp"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"npm_config_umask"
:
"0000"
,
"npm_config_unicode"
:
""
,
"npm_config_unsafe_perm"
:
"true"
,
"npm_config_update_notifier"
:
"true"
,
"npm_config_usage"
:
""
,
"npm_config_user"
:
""
,
"npm_config_userconfig"
:
"C:
\\
Users
\\
DELL
\\
.npmrc"
,
"npm_config_user_agent"
:
"npm/6.13.4 node/v12.16.1 win32 x64"
,
"npm_config_version"
:
""
,
"npm_config_versions"
:
""
,
"npm_config_viewer"
:
"browser"
,
"npm_execpath"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"npm_lifecycle_event"
:
"start"
,
"npm_lifecycle_script"
:
"set NODE_ENV=development && webpack-dev-server"
,
"npm_node_execpath"
:
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"npm_package_author_name"
:
"ilex.h"
,
"npm_package_dependencies_amos_3d"
:
"^2.x"
,
"npm_package_dependencies_amos_designer"
:
"^1.x"
,
"npm_package_dependencies_amos_viz"
:
"^1.x"
,
"npm_package_dependencies_amos_websocket"
:
"^1.0.3"
,
"npm_package_dependencies_ray_hotkeys"
:
"^1.0.0"
,
"npm_package_devDependencies_amos_build"
:
"^3.x"
,
"npm_package_devDependencies_amos_framework"
:
"^1.x"
,
"npm_package_devDependencies_amos_iot_3dgraph"
:
"^1.0.3"
,
"npm_package_devDependencies_amos_iot_webstudio"
:
"^1.x"
,
"npm_package_devDependencies_amos_processor"
:
"^2.x"
,
"npm_package_devDependencies_amos_security"
:
"^2.x"
,
"npm_package_devDependencies_eslint_config_ray"
:
"^1.0.25"
,
"npm_package_devDependencies_ray_code_split"
:
"^1.0.1"
,
"npm_package_devDependencies_ray_mediaquery"
:
"^1.0.0"
,
"npm_package_devDependencies_ray_progress"
:
"^1.0.0"
,
"npm_package_devDependencies_react"
:
"~16.0.0"
,
"npm_package_devDependencies_react_dom"
:
"~16.0.0"
,
"npm_package_devDependencies_stylelint_config_ray"
:
"^2.0.0"
,
"npm_package_gitHead"
:
"0cd8530ba12205aad17f7495c945a830cf3c540f"
,
"npm_package_main"
:
"./lib/index.js"
,
"npm_package_name"
:
"amos-station-module-view"
,
"npm_package_publishConfig_registry"
:
"http://172.16.11.26:9696"
,
"npm_package_readmeFilename"
:
"readme.md"
,
"npm_package_scripts_build"
:
"ray-build react && ray-build stylescss"
,
"npm_package_scripts_clean"
:
"rimraf lib dist released"
,
"npm_package_scripts_lint"
:
"eslint src tests"
,
"npm_package_scripts_lint_fix"
:
"npm run lint -- --fix"
,
"npm_package_scripts_pub"
:
"npm run build && amos-run dllreleased"
,
"npm_package_scripts_start"
:
"set NODE_ENV=development && webpack-dev-server"
,
"npm_package_scripts_stylelint"
:
"stylelint src"
,
"npm_package_scripts_watch"
:
"webpack -w"
,
"npm_package_version"
:
"1.0.0"
,
"NPM_PREFIX_NPM_CLI_JS"
:
"F:
\\
install
\\
nodejs
\\
node_global
\\
node_modules
\\
npm
\\
bin
\\
npm-cli.js"
,
"NUMBER_OF_PROCESSORS"
:
"8"
,
"NVM_HOME"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm"
,
"NVM_SYMLINK"
:
"C:
\\
Program Files
\\
nodejs"
,
"OneDrive"
:
"C:
\\
Users
\\
DELL
\\
OneDrive"
,
"OS"
:
"Windows_NT"
,
"Path"
:
"F:
\\
install
\\
nodejs
\\
node_modules
\\
npm
\\
node_modules
\\
npm-lifecycle
\\
node-gyp-bin;G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
.bin;C:
\\
Program Files (x86)
\\
Common Files
\\
Oracle
\\
Java
\\
javapath;C:
\\
Windows
\\
system32;C:
\\
Windows;C:
\\
Windows
\\
System32
\\
Wbem;C:
\\
Windows
\\
System32
\\
WindowsPowerShell
\\
v1.0
\\
;C:
\\
Windows
\\
System32
\\
OpenSSH
\\
;C:
\\
Program Files (x86)
\\
NVIDIA Corporation
\\
PhysX
\\
Common;D:
\\
Program Files
\\
Git
\\
cmd;C:
\\
Program Files
\\
TortoiseGit
\\
bin;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm;C:
\\
Program Files
\\
NVIDIA Corporation
\\
NVIDIA NvDLISR;C:
\\
Program Files
\\
TortoiseSVN
\\
bin;C:
\\
ProgramData
\\
chocolatey
\\
bin;F:
\\
install
\\
nodejs
\\
node_global;F:
\\
install
\\
Python27;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
bin;F:
\\
install
\\
nodejs
\\
;C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Microsoft
\\
WindowsApps;
\"
C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
bin;C:
\\
Program Files
\\
Java
\\
jdk1.8.0_201
\\
jre
\\
bin
\"
;C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
bin;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
nvm;C:
\\
Program Files
\\
nodejs;D:
\\
develop
\\
nodejs
\\
node_global;C:
\\
Users
\\
DELL
\\
AppData
\\
Roaming
\\
npm"
,
"PATHEXT"
:
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JSE;.WSF;.WSH;.MSC;.CPL"
,
"PROCESSOR_ARCHITECTURE"
:
"AMD64"
,
"PROCESSOR_IDENTIFIER"
:
"Intel64 Family 6 Model 158 Stepping 13, GenuineIntel"
,
"PROCESSOR_LEVEL"
:
"6"
,
"PROCESSOR_REVISION"
:
"9e0d"
,
"ProgramData"
:
"C:
\\
ProgramData"
,
"ProgramFiles"
:
"C:
\\
Program Files"
,
"ProgramFiles(x86)"
:
"C:
\\
Program Files (x86)"
,
"ProgramW6432"
:
"C:
\\
Program Files"
,
"PROMPT"
:
"$P$G"
,
"PSModulePath"
:
"C:
\\
Users
\\
DELL
\\
Documents
\\
WindowsPowerShell
\\
Modules;C:
\\
Program Files
\\
WindowsPowerShell
\\
Modules;C:
\\
Windows
\\
system32
\\
WindowsPowerShell
\\
v1.0
\\
Modules"
,
"PUBLIC"
:
"C:
\\
Users
\\
Public"
,
"SESSIONNAME"
:
"Console"
,
"SystemDrive"
:
"C:"
,
"SystemRoot"
:
"C:
\\
Windows"
,
"TEMP"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"TERM_PROGRAM"
:
"vscode"
,
"TERM_PROGRAM_VERSION"
:
"1.45.1"
,
"TMP"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Temp"
,
"USERDOMAIN"
:
"DESKTOP-KKH52JE"
,
"USERDOMAIN_ROAMINGPROFILE"
:
"DESKTOP-KKH52JE"
,
"USERNAME"
:
"DELL"
,
"USERPROFILE"
:
"C:
\\
Users
\\
DELL"
,
"VSCODE_GIT_ASKPASS_MAIN"
:
"c:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
resources
\\
app
\\
extensions
\\
git
\\
dist
\\
askpass-main.js"
,
"VSCODE_GIT_ASKPASS_NODE"
:
"C:
\\
Users
\\
DELL
\\
AppData
\\
Local
\\
Programs
\\
Microsoft VS Code
\\
Code.exe"
,
"VSCODE_GIT_IPC_HANDLE"
:
"
\\\\
.
\\
pipe
\\
vscode-git-11879c72ba-sock"
,
"windir"
:
"C:
\\
Windows"
,
"_prog"
:
"node"
},
"sharedObjects"
:
[
"F:
\\
install
\\
nodejs
\\
node.exe"
,
"C:
\\
Windows
\\
SYSTEM32
\\
ntdll.dll"
,
"C:
\\
Windows
\\
System32
\\
KERNEL32.DLL"
,
"C:
\\
Windows
\\
System32
\\
KERNELBASE.dll"
,
"C:
\\
Windows
\\
System32
\\
WS2_32.dll"
,
"C:
\\
Windows
\\
System32
\\
RPCRT4.dll"
,
"C:
\\
Windows
\\
System32
\\
PSAPI.DLL"
,
"C:
\\
Windows
\\
System32
\\
ADVAPI32.dll"
,
"C:
\\
Windows
\\
System32
\\
msvcrt.dll"
,
"C:
\\
Windows
\\
System32
\\
sechost.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dbghelp.dll"
,
"C:
\\
Windows
\\
System32
\\
USER32.dll"
,
"C:
\\
Windows
\\
System32
\\
win32u.dll"
,
"C:
\\
Windows
\\
System32
\\
ucrtbase.dll"
,
"C:
\\
Windows
\\
System32
\\
GDI32.dll"
,
"C:
\\
Windows
\\
System32
\\
gdi32full.dll"
,
"C:
\\
Windows
\\
System32
\\
msvcp_win.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
IPHLPAPI.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
USERENV.dll"
,
"C:
\\
Windows
\\
System32
\\
CRYPT32.dll"
,
"C:
\\
Windows
\\
System32
\\
profapi.dll"
,
"C:
\\
Windows
\\
System32
\\
MSASN1.dll"
,
"C:
\\
Windows
\\
System32
\\
bcrypt.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
WINMM.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
winmmbase.dll"
,
"C:
\\
Windows
\\
System32
\\
cfgmgr32.dll"
,
"C:
\\
Windows
\\
System32
\\
bcryptPrimitives.dll"
,
"C:
\\
Windows
\\
System32
\\
IMM32.DLL"
,
"C:
\\
Windows
\\
System32
\\
powrprof.dll"
,
"C:
\\
Windows
\\
System32
\\
UMPDC.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
CRYPTBASE.DLL"
,
"C:
\\
Windows
\\
system32
\\
uxtheme.dll"
,
"C:
\\
Windows
\\
System32
\\
combase.dll"
,
"C:
\\
Windows
\\
system32
\\
mswsock.dll"
,
"C:
\\
Windows
\\
System32
\\
kernel.appcore.dll"
,
"C:
\\
Windows
\\
System32
\\
NSI.dll"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dhcpcsvc6.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
dhcpcsvc.DLL"
,
"C:
\\
Windows
\\
SYSTEM32
\\
DNSAPI.dll"
,
"
\\\\
?
\\
G:
\\
workSpace
\\
amos-station-module-view
\\
node_modules
\\
node-sass
\\
vendor
\\
win32-x64-72
\\
binding.node"
,
"C:
\\
Windows
\\
system32
\\
napinsp.dll"
,
"C:
\\
Windows
\\
system32
\\
pnrpnsp.dll"
,
"C:
\\
Windows
\\
System32
\\
winrnr.dll"
,
"C:
\\
Windows
\\
system32
\\
NLAapi.dll"
,
"C:
\\
Windows
\\
system32
\\
wshbth.dll"
]
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment