v1 test and bug fixes

This commit is contained in:
ori
2019-07-19 01:40:06 -07:00
parent c80f0d9f4b
commit b19a34bb29
7 changed files with 41 additions and 28 deletions

View File

@@ -40,7 +40,7 @@ export const store = new Vuex.Store({
hostName:"",
//live info
streamAdress:("http://"+location.hostname + ":1181/stream.mjpg"),
isBinaryImage:0,
is_binary:0,
//camera lists
},
@@ -68,7 +68,7 @@ export const store = new Vuex.Store({
gateWay : set('gateway'),
hostName : set('hostname'),
streamAdress : set('streamAdress'),
isBinaryImage: set('isBinaryImage'),
is_binary: set('is_binary'),
cameraList : set('cameraList'),
pipelineList: set('piplineList'),
sort_mode: set('sort_mode'),
@@ -96,7 +96,7 @@ export const store = new Vuex.Store({
gateWay: state => state.gateWay,
hostName: state => state.hostName,
streamAdress: state => state.streamAdress,
isBinaryImage: state => state.isBinaryImage,
is_binary: state => state.is_binary,
cameraList: state => state.cameraList,
pipelineList: state => state.pipelineList,
sort_mode: state => state.sort_mode,