Commit 0020402685c0997c0a73bc7ac90535e50e8f972a

Authored by panlinlin
1 parent 397e0c4a

完成向上级联->选择通道-001

src/main/java/com/genersoft/iot/vmp/conf/SipConfig.java
@@ -8,15 +8,15 @@ import org.springframework.context.annotation.Configuration; @@ -8,15 +8,15 @@ import org.springframework.context.annotation.Configuration;
8 public class SipConfig { 8 public class SipConfig {
9 9
10 @Value("${sip.ip}") 10 @Value("${sip.ip}")
11 - String sipIp; 11 + private String sipIp;
12 @Value("${sip.port}") 12 @Value("${sip.port}")
13 - Integer sipPort; 13 + private Integer sipPort;
14 @Value("${sip.domain}") 14 @Value("${sip.domain}")
15 - String sipDomain; 15 + private String sipDomain;
16 @Value("${sip.id}") 16 @Value("${sip.id}")
17 - String sipId; 17 + private String sipId;
18 @Value("${sip.password}") 18 @Value("${sip.password}")
19 - String sipPassword; 19 + private String sipPassword;
20 20
21 @Value("${sip.ptz.speed:50}") 21 @Value("${sip.ptz.speed:50}")
22 Integer speed; 22 Integer speed;
@@ -25,47 +25,28 @@ public class SipConfig { @@ -25,47 +25,28 @@ public class SipConfig {
25 return sipIp; 25 return sipIp;
26 } 26 }
27 27
28 - public void setSipIp(String sipIp) {  
29 - this.sipIp = sipIp;  
30 - }  
31 28
32 public Integer getSipPort() { 29 public Integer getSipPort() {
33 return sipPort; 30 return sipPort;
34 } 31 }
35 32
36 - public void setSipPort(Integer sipPort) {  
37 - this.sipPort = sipPort;  
38 - }  
39 33
40 public String getSipDomain() { 34 public String getSipDomain() {
41 return sipDomain; 35 return sipDomain;
42 } 36 }
43 37
44 - public void setSipDomain(String sipDomain) {  
45 - this.sipDomain = sipDomain;  
46 - }  
47 38
48 public String getSipId() { 39 public String getSipId() {
49 return sipId; 40 return sipId;
50 } 41 }
51 42
52 - public void setSipId(String sipId) {  
53 - this.sipId = sipId;  
54 - }  
55 -  
56 public String getSipPassword() { 43 public String getSipPassword() {
57 return sipPassword; 44 return sipPassword;
58 } 45 }
59 46
60 - public void setSipPassword(String sipPassword) {  
61 - this.sipPassword = sipPassword;  
62 - }  
63 47
64 public Integer getSpeed() { 48 public Integer getSpeed() {
65 return speed; 49 return speed;
66 } 50 }
67 51
68 - public void setSpeed(Integer speed) {  
69 - this.speed = speed;  
70 - }  
71 } 52 }
src/main/java/com/genersoft/iot/vmp/storager/dao/ParentPlatformMapper.java
@@ -45,7 +45,6 @@ public interface ParentPlatformMapper { @@ -45,7 +45,6 @@ public interface ParentPlatformMapper {
45 @Delete("DELETE FROM parent_platform WHERE deviceGBId=#{deviceGBId}") 45 @Delete("DELETE FROM parent_platform WHERE deviceGBId=#{deviceGBId}")
46 int delParentPlatform(ParentPlatform parentPlatform); 46 int delParentPlatform(ParentPlatform parentPlatform);
47 47
48 -  
49 @Select("SELECT * FROM parent_platform") 48 @Select("SELECT * FROM parent_platform")
50 List<ParentPlatform> getParentPlatformList(); 49 List<ParentPlatform> getParentPlatformList();
51 50
web_src/src/components/ParentPlatformList.vue
@@ -39,9 +39,9 @@ @@ -39,9 +39,9 @@
39 </template> 39 </template>
40 </el-table-column> 40 </el-table-column>
41 <el-table-column prop="deviceGBId" label="设备国标编号" width="240" align="center"></el-table-column> 41 <el-table-column prop="deviceGBId" label="设备国标编号" width="240" align="center"></el-table-column>
42 - <el-table-column prop="transport" label="传输模式" width="120" align="center"></el-table-column> 42 + <el-table-column prop="transport" label="信令传输模式" width="120" align="center"></el-table-column>
43 <el-table-column prop="channelCount" label="通道数" align="center"></el-table-column> 43 <el-table-column prop="channelCount" label="通道数" align="center"></el-table-column>
44 - 44 +
45 <el-table-column label="操作" width="300" align="center" fixed="right"> 45 <el-table-column label="操作" width="300" align="center" fixed="right">
46 <template slot-scope="scope"> 46 <template slot-scope="scope">
47 <el-button size="mini" icon="el-icon-edit" @click="editPlatform(scope.row)">编辑</el-button> 47 <el-button size="mini" icon="el-icon-edit" @click="editPlatform(scope.row)">编辑</el-button>
@@ -61,6 +61,7 @@ @@ -61,6 +61,7 @@
61 :total="total"> 61 :total="total">
62 </el-pagination> 62 </el-pagination>
63 <platformEdit ref="platformEdit" ></platformEdit> 63 <platformEdit ref="platformEdit" ></platformEdit>
  64 + <chooseChannelDialog ref="chooseChannelDialog" ></chooseChannelDialog>
64 </el-main> 65 </el-main>
65 </el-container> 66 </el-container>
66 </div> 67 </div>
@@ -69,11 +70,13 @@ @@ -69,11 +70,13 @@
69 <script> 70 <script>
70 import platformEdit from './platformEdit.vue' 71 import platformEdit from './platformEdit.vue'
71 import uiHeader from './UiHeader.vue' 72 import uiHeader from './UiHeader.vue'
  73 +import chooseChannelDialog from './gb28181/chooseChannel.vue'
72 export default { 74 export default {
73 name: 'app', 75 name: 'app',
74 components: { 76 components: {
75 platformEdit, 77 platformEdit,
76 - uiHeader 78 + uiHeader,
  79 + chooseChannelDialog
77 }, 80 },
78 data() { 81 data() {
79 return { 82 return {
@@ -86,11 +89,13 @@ export default { @@ -86,11 +89,13 @@ export default {
86 }; 89 };
87 }, 90 },
88 computed: { 91 computed: {
  92 +
89 getcurrentDeviceChannels: function() { 93 getcurrentDeviceChannels: function() {
90 - 94 +
91 } 95 }
92 }, 96 },
93 mounted() { 97 mounted() {
  98 + this.$refs.chooseChannelDialog.openDialog()
94 this.initData(); 99 this.initData();
95 this.updateLooper = setInterval(this.initData, 10000); 100 this.updateLooper = setInterval(this.initData, 10000);
96 }, 101 },
@@ -133,7 +138,7 @@ export default { @@ -133,7 +138,7 @@ export default {
133 }); 138 });
134 }, 139 },
135 chooseChannel: function(platform) { 140 chooseChannel: function(platform) {
136 - 141 + this.$refs.chooseChannelDialog.openDialog()
137 }, 142 },
138 initData: function() { 143 initData: function() {
139 this.getPlatformList(); 144 this.getPlatformList();
web_src/src/components/channelList.vue
@@ -31,6 +31,8 @@ @@ -31,6 +31,8 @@
31 <el-table ref="channelListTable" :data="deviceChannelList" :height="winHeight" border style="width: 100%"> 31 <el-table ref="channelListTable" :data="deviceChannelList" :height="winHeight" border style="width: 100%">
32 <el-table-column prop="channelId" label="通道编号" width="210"> 32 <el-table-column prop="channelId" label="通道编号" width="210">
33 </el-table-column> 33 </el-table-column>
  34 + <el-table-column prop="channelId" label="设备编号" width="210">
  35 + </el-table-column>
34 <el-table-column prop="name" label="通道名称"> 36 <el-table-column prop="name" label="通道名称">
35 </el-table-column> 37 </el-table-column>
36 <el-table-column prop="subCount" label="子节点数"> 38 <el-table-column prop="subCount" label="子节点数">