Commit 68326716f83a4e0b361d1b1d777d9a48ba7c857a

Authored by lawrencehj
1 parent 97a17d08

格式统一

src/main/java/com/genersoft/iot/vmp/common/VideoManagerConstants.java
... ... @@ -16,7 +16,7 @@ public class VideoManagerConstants {
16 16  
17 17 public static final String CACHEKEY_PREFIX = "VMP_channel_";
18 18  
19   - public static final String KEEPLIVEKEY_PREFIX = "VMP_KEEPLIVE_";
  19 + public static final String KEEPLIVEKEY_PREFIX = "VMP_keeplive_";
20 20  
21 21 public static final String PLAYER_PREFIX = "VMP_player_";
22 22  
... ...
web_src/src/components/Login.vue
... ... @@ -80,7 +80,7 @@ export default {
80 80  
81 81 this.$axios({
82 82 method: 'get',
83   - url:"/api/user/login",
  83 + url:"/api/user/login",
84 84 params: loginParam
85 85 }).then(function (res) {
86 86 console.log(JSON.stringify(res));
... ...
web_src/src/components/ParentPlatformList.vue
... ... @@ -156,7 +156,7 @@ export default {
156 156  
157 157 this.$axios({
158 158 method: 'get',
159   - url:`/api/platform/query/${that.count}/${that.currentPage}`
  159 + url:`/api/platform/query/${that.count}/${that.currentPage}`
160 160 }).then(function (res) {
161 161 that.total = res.data.total;
162 162 that.platformList = res.data.list;
... ...