同步主线
parent
f4c03c1808
commit
0191e93768
|
@ -0,0 +1,32 @@
|
||||||
|
package com.genersoft.iot.vmp.gb28181.event.record;
|
||||||
|
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.DeviceAlarm;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.RecordInfo;
|
||||||
|
import org.springframework.context.ApplicationEvent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description: 录像查询结束时间
|
||||||
|
* @author: pan
|
||||||
|
* @data: 2022-02-23
|
||||||
|
*/
|
||||||
|
|
||||||
|
public class RecordEndEvent extends ApplicationEvent {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
public RecordEndEvent(Object source) {
|
||||||
|
super(source);
|
||||||
|
}
|
||||||
|
|
||||||
|
private RecordInfo recordInfo;
|
||||||
|
|
||||||
|
public RecordInfo getRecordInfo() {
|
||||||
|
return recordInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRecordInfo(RecordInfo recordInfo) {
|
||||||
|
this.recordInfo = recordInfo;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
package com.genersoft.iot.vmp.gb28181.event.record;
|
||||||
|
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.RecordItem;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.context.ApplicationListener;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
import org.springframework.web.servlet.mvc.method.annotation.SseEmitter;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description: 录像查询结束时间
|
||||||
|
* @author: pan
|
||||||
|
* @data: 2022-02-23
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Component
|
||||||
|
public class RecordEndEventListener implements ApplicationListener<RecordEndEvent> {
|
||||||
|
|
||||||
|
private final static Logger logger = LoggerFactory.getLogger(RecordEndEventListener.class);
|
||||||
|
|
||||||
|
private static Map<String, SseEmitter> sseEmitters = new Hashtable<>();
|
||||||
|
|
||||||
|
public void addSseEmitters(String browserId, SseEmitter sseEmitter) {
|
||||||
|
sseEmitters.put(browserId, sseEmitter);
|
||||||
|
}
|
||||||
|
|
||||||
|
public interface RecordEndEventHandler{
|
||||||
|
void handler(List<RecordItem> recordItems);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Map<String, RecordEndEventHandler> handlerMap = new HashMap<>();
|
||||||
|
@Override
|
||||||
|
public void onApplicationEvent(RecordEndEvent event) {
|
||||||
|
if (logger.isDebugEnabled()) {
|
||||||
|
logger.debug("录像查询完成事件触发,deviceId:{}, channelId: {}, 录像数量{}条", event.getRecordInfo().getDeviceId(),
|
||||||
|
event.getRecordInfo().getChannelId(), event.getRecordInfo().getRecordList().size() );
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -258,7 +258,7 @@ public interface ISIPCommander {
|
||||||
* @param endTime 结束时间,格式要求:yyyy-MM-dd HH:mm:ss
|
* @param endTime 结束时间,格式要求:yyyy-MM-dd HH:mm:ss
|
||||||
* @param sn
|
* @param sn
|
||||||
*/
|
*/
|
||||||
boolean recordInfoQuery(Device device, String channelId, String startTime, String endTime, int sn, SipSubscribe.Event errorEvent);
|
boolean recordInfoQuery(Device device, String channelId, String startTime, String endTime, int sn, Integer Secrecy, String type, SipSubscribe.Event okEvent, SipSubscribe.Event errorEvent);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询报警信息
|
* 查询报警信息
|
||||||
|
|
|
@ -1195,8 +1195,13 @@ public class SIPCommander implements ISIPCommander {
|
||||||
* @param endTime 结束时间,格式要求:yyyy-MM-dd HH:mm:ss
|
* @param endTime 结束时间,格式要求:yyyy-MM-dd HH:mm:ss
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public boolean recordInfoQuery(Device device, String channelId, String startTime, String endTime, int sn, SipSubscribe.Event errorEvent) {
|
public boolean recordInfoQuery(Device device, String channelId, String startTime, String endTime, int sn, Integer secrecy, String type, SipSubscribe.Event okEvent, SipSubscribe.Event errorEvent) {
|
||||||
|
if (secrecy == null) {
|
||||||
|
secrecy = 0;
|
||||||
|
}
|
||||||
|
if (type == null) {
|
||||||
|
type = "all";
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
StringBuffer recordInfoXml = new StringBuffer(200);
|
StringBuffer recordInfoXml = new StringBuffer(200);
|
||||||
|
@ -1207,9 +1212,9 @@ public class SIPCommander implements ISIPCommander {
|
||||||
recordInfoXml.append("<DeviceID>" + channelId + "</DeviceID>\r\n");
|
recordInfoXml.append("<DeviceID>" + channelId + "</DeviceID>\r\n");
|
||||||
recordInfoXml.append("<StartTime>" + DateUtil.yyyy_MM_dd_HH_mm_ssToISO8601(startTime) + "</StartTime>\r\n");
|
recordInfoXml.append("<StartTime>" + DateUtil.yyyy_MM_dd_HH_mm_ssToISO8601(startTime) + "</StartTime>\r\n");
|
||||||
recordInfoXml.append("<EndTime>" + DateUtil.yyyy_MM_dd_HH_mm_ssToISO8601(endTime) + "</EndTime>\r\n");
|
recordInfoXml.append("<EndTime>" + DateUtil.yyyy_MM_dd_HH_mm_ssToISO8601(endTime) + "</EndTime>\r\n");
|
||||||
recordInfoXml.append("<Secrecy>0</Secrecy>\r\n");
|
recordInfoXml.append("<Secrecy> "+ secrecy + " </Secrecy>\r\n");
|
||||||
// 大华NVR要求必须增加一个值为all的文本元素节点Type
|
// 大华NVR要求必须增加一个值为all的文本元素节点Type
|
||||||
recordInfoXml.append("<Type>all</Type>\r\n");
|
recordInfoXml.append("<Type>" + type+"</Type>\r\n");
|
||||||
recordInfoXml.append("</Query>\r\n");
|
recordInfoXml.append("</Query>\r\n");
|
||||||
|
|
||||||
String tm = Long.toString(System.currentTimeMillis());
|
String tm = Long.toString(System.currentTimeMillis());
|
||||||
|
@ -1220,7 +1225,7 @@ public class SIPCommander implements ISIPCommander {
|
||||||
Request request = headerProvider.createMessageRequest(device, recordInfoXml.toString(),
|
Request request = headerProvider.createMessageRequest(device, recordInfoXml.toString(),
|
||||||
"z9hG4bK-ViaRecordInfo-" + tm, "fromRec" + tm, null, callIdHeader);
|
"z9hG4bK-ViaRecordInfo-" + tm, "fromRec" + tm, null, callIdHeader);
|
||||||
|
|
||||||
transmitRequest(device, request, errorEvent);
|
transmitRequest(device, request, errorEvent, okEvent);
|
||||||
} catch (SipException | ParseException | InvalidArgumentException e) {
|
} catch (SipException | ParseException | InvalidArgumentException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -102,7 +102,7 @@ public class SIPCommanderFroPlatform implements ISIPCommanderForPlatform {
|
||||||
|
|
||||||
sipSubscribe.addErrorSubscribe(callIdHeader.getCallId(), (event)->{
|
sipSubscribe.addErrorSubscribe(callIdHeader.getCallId(), (event)->{
|
||||||
if (event != null) {
|
if (event != null) {
|
||||||
logger.info("向上级平台 [ {} ] 注册发生错误: {} ",
|
logger.info("向上级平台 [ {} ] 注册发上错误: {} ",
|
||||||
parentPlatform.getServerGBId(),
|
parentPlatform.getServerGBId(),
|
||||||
event.msg);
|
event.msg);
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,11 +4,14 @@ import com.genersoft.iot.vmp.conf.SipConfig;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommanderFroPlatform;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommanderFroPlatform;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.event.request.SIPRequestProcessorParent;
|
import com.genersoft.iot.vmp.gb28181.transmit.event.request.SIPRequestProcessorParent;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.IMessageHandler;
|
import com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.IMessageHandler;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.query.QueryMessageHandler;
|
import com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.query.QueryMessageHandler;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.utils.DateUtil;
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorager;
|
import com.genersoft.iot.vmp.storager.IVideoManagerStorager;
|
||||||
|
import com.genersoft.iot.vmp.storager.dao.dto.ChannelSourceInfo;
|
||||||
import com.genersoft.iot.vmp.vmanager.gb28181.platform.bean.ChannelReduce;
|
import com.genersoft.iot.vmp.vmanager.gb28181.platform.bean.ChannelReduce;
|
||||||
import org.dom4j.Element;
|
import org.dom4j.Element;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
|
@ -40,6 +43,9 @@ public class RecordInfoQueryMessageHandler extends SIPRequestProcessorParent imp
|
||||||
@Autowired
|
@Autowired
|
||||||
private SIPCommanderFroPlatform cmderFroPlatform;
|
private SIPCommanderFroPlatform cmderFroPlatform;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private SIPCommander commander;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private SipConfig config;
|
private SipConfig config;
|
||||||
|
|
||||||
|
@ -65,19 +71,36 @@ public class RecordInfoQueryMessageHandler extends SIPRequestProcessorParent imp
|
||||||
// 回复200 OK
|
// 回复200 OK
|
||||||
responseAck(evt, Response.OK);
|
responseAck(evt, Response.OK);
|
||||||
Element snElement = rootElement.element("SN");
|
Element snElement = rootElement.element("SN");
|
||||||
String sn = snElement.getText();
|
int sn = Integer.parseInt(snElement.getText());
|
||||||
Element deviceIDElement = rootElement.element("DeviceID");
|
Element deviceIDElement = rootElement.element("DeviceID");
|
||||||
String channelId = deviceIDElement.getText();
|
String channelId = deviceIDElement.getText();
|
||||||
Element startTimeElement = rootElement.element("StartTime");
|
Element startTimeElement = rootElement.element("StartTime");
|
||||||
String startTime = startTimeElement.getText();
|
String startTime = startTimeElement.getText();
|
||||||
Element endTimeElement = rootElement.element("EndTime");
|
Element endTimeElement = rootElement.element("EndTime");
|
||||||
String endTime = endTimeElement.getText();
|
String endTime = endTimeElement.getText();
|
||||||
// Element secrecyElement = rootElement.element("Secrecy");
|
Element secrecyElement = rootElement.element("Secrecy");
|
||||||
// int secrecy = Integer.parseInt(secrecyElement.getText());
|
int secrecy = Integer.parseInt(secrecyElement.getText());
|
||||||
// Element typeElement = rootElement.element("Type");
|
Element typeElement = rootElement.element("Type");
|
||||||
// String type = typeElement.getText();
|
String type = typeElement.getText();
|
||||||
// 确认是直播还是国标, 国标直接请求下级,直播请求录像管理服务
|
// 确认是直播还是国标, 国标直接请求下级,直播请求录像管理服务
|
||||||
|
List<ChannelSourceInfo> channelSources = storager.getChannelSource(parentPlatform.getServerGBId(), channelId);
|
||||||
|
if (channelSources.get(0).getCount() > 0) { // 国标
|
||||||
|
// 向国标设备请求录像数据
|
||||||
|
Device device = storager.queryVideoDeviceByPlatformIdAndChannelId(parentPlatform.getServerGBId(), channelId);
|
||||||
|
commander.recordInfoQuery(device, channelId, DateUtil.ISO8601Toyyyy_MM_dd_HH_mm_ss(startTime),
|
||||||
|
DateUtil.ISO8601Toyyyy_MM_dd_HH_mm_ss(endTime), sn, secrecy, type, (eventResult -> {
|
||||||
|
// 查询成功
|
||||||
|
|
||||||
|
}),(eventResult -> {
|
||||||
|
// 查询失败
|
||||||
|
|
||||||
|
}));
|
||||||
|
|
||||||
|
}else if (channelSources.get(0).getCount() > 0) { // 直播流
|
||||||
|
// TODO
|
||||||
|
}else { // 错误的请求
|
||||||
|
|
||||||
|
}
|
||||||
} catch (SipException e) {
|
} catch (SipException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (InvalidArgumentException e) {
|
} catch (InvalidArgumentException e) {
|
||||||
|
|
|
@ -5,6 +5,7 @@ import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
||||||
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
||||||
|
import com.genersoft.iot.vmp.storager.dao.dto.ChannelSourceInfo;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.DeviceChannelTree;
|
import com.genersoft.iot.vmp.vmanager.bean.DeviceChannelTree;
|
||||||
import com.genersoft.iot.vmp.vmanager.gb28181.platform.bean.ChannelReduce;
|
import com.genersoft.iot.vmp.vmanager.gb28181.platform.bean.ChannelReduce;
|
||||||
import com.github.pagehelper.PageInfo;
|
import com.github.pagehelper.PageInfo;
|
||||||
|
@ -475,4 +476,6 @@ public interface IVideoManagerStorager {
|
||||||
void delRelationByPlatformId(String serverGBId);
|
void delRelationByPlatformId(String serverGBId);
|
||||||
|
|
||||||
PlatformCatalog queryDefaultCatalogInPlatform(String platformId);
|
PlatformCatalog queryDefaultCatalogInPlatform(String platformId);
|
||||||
|
|
||||||
|
List<ChannelSourceInfo> getChannelSource(String platformId, String gbId);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.genersoft.iot.vmp.storager.dao;
|
package com.genersoft.iot.vmp.storager.dao;
|
||||||
|
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
|
import com.genersoft.iot.vmp.storager.dao.dto.ChannelSourceInfo;
|
||||||
import org.apache.ibatis.annotations.*;
|
import org.apache.ibatis.annotations.*;
|
||||||
import org.springframework.stereotype.Repository;
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
@ -86,4 +87,9 @@ public interface ParentPlatformMapper {
|
||||||
"WHERE serverGBId=#{platformId}"+
|
"WHERE serverGBId=#{platformId}"+
|
||||||
"</script>"})
|
"</script>"})
|
||||||
int setDefaultCatalog(String platformId, String catalogId);
|
int setDefaultCatalog(String platformId, String catalogId);
|
||||||
|
|
||||||
|
@Select("select 'channel' as name, count(pgc.platformId) count from platform_gb_channel pgc where pgc.platformId=#{platformId} and pgc.channelId =#{gbId} " +
|
||||||
|
"union " +
|
||||||
|
"select 'stream' as name, count(pgs.platformId) count from platform_gb_stream pgs left join gb_stream gs on pgs.gbStreamId = gs.id where pgs.platformId=#{platformId} and gs.gbId = #{gbId}")
|
||||||
|
List<ChannelSourceInfo> getChannelSource(String platformId, String gbId);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
package com.genersoft.iot.vmp.storager.dao.dto;
|
||||||
|
|
||||||
|
public class ChannelSourceInfo {
|
||||||
|
private String name;
|
||||||
|
private int count;
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getCount() {
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCount(int count) {
|
||||||
|
this.count = count;
|
||||||
|
}
|
||||||
|
}
|
|
@ -13,6 +13,7 @@ import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorager;
|
import com.genersoft.iot.vmp.storager.IVideoManagerStorager;
|
||||||
import com.genersoft.iot.vmp.storager.dao.*;
|
import com.genersoft.iot.vmp.storager.dao.*;
|
||||||
|
import com.genersoft.iot.vmp.storager.dao.dto.ChannelSourceInfo;
|
||||||
import com.genersoft.iot.vmp.utils.node.ForestNodeMerger;
|
import com.genersoft.iot.vmp.utils.node.ForestNodeMerger;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.DeviceChannelTree;
|
import com.genersoft.iot.vmp.vmanager.bean.DeviceChannelTree;
|
||||||
import com.genersoft.iot.vmp.vmanager.gb28181.platform.bean.ChannelReduce;
|
import com.genersoft.iot.vmp.vmanager.gb28181.platform.bean.ChannelReduce;
|
||||||
|
@ -1095,4 +1096,9 @@ public class VideoManagerStoragerImpl implements IVideoManagerStorager {
|
||||||
public PlatformCatalog queryDefaultCatalogInPlatform(String platformId) {
|
public PlatformCatalog queryDefaultCatalogInPlatform(String platformId) {
|
||||||
return catalogMapper.selectDefaultByPlatFormId(platformId);
|
return catalogMapper.selectDefaultByPlatFormId(platformId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<ChannelSourceInfo> getChannelSource(String platformId, String gbId) {
|
||||||
|
return platformMapper.getChannelSource(platformId, gbId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -137,6 +137,11 @@ public class PlatformController {
|
||||||
wvpResult.setMsg("missing parameters");
|
wvpResult.setMsg("missing parameters");
|
||||||
return new ResponseEntity<>(wvpResult, HttpStatus.BAD_REQUEST);
|
return new ResponseEntity<>(wvpResult, HttpStatus.BAD_REQUEST);
|
||||||
}
|
}
|
||||||
|
if (parentPlatform.getServerPort()< 0 || parentPlatform.getServerPort() > 65535){
|
||||||
|
wvpResult.setCode(-1);
|
||||||
|
wvpResult.setMsg("error severPort");
|
||||||
|
return new ResponseEntity<>(wvpResult, HttpStatus.BAD_REQUEST);
|
||||||
|
}
|
||||||
|
|
||||||
ParentPlatform parentPlatformOld = storager.queryParentPlatByServerGBId(parentPlatform.getServerGBId());
|
ParentPlatform parentPlatformOld = storager.queryParentPlatByServerGBId(parentPlatform.getServerGBId());
|
||||||
if (parentPlatformOld != null) {
|
if (parentPlatformOld != null) {
|
||||||
|
|
|
@ -64,7 +64,7 @@ public class GBRecordController {
|
||||||
RequestMessage msg = new RequestMessage();
|
RequestMessage msg = new RequestMessage();
|
||||||
msg.setId(uuid);
|
msg.setId(uuid);
|
||||||
msg.setKey(key);
|
msg.setKey(key);
|
||||||
cmder.recordInfoQuery(device, channelId, startTime, endTime, sn, (eventResult -> {
|
cmder.recordInfoQuery(device, channelId, startTime, endTime, sn, null, null, null, (eventResult -> {
|
||||||
msg.setData("查询录像失败, status: " + eventResult.statusCode + ", message: " + eventResult.msg );
|
msg.setData("查询录像失败, status: " + eventResult.statusCode + ", message: " + eventResult.msg );
|
||||||
resultHolder.invokeResult(msg);
|
resultHolder.invokeResult(msg);
|
||||||
}));
|
}));
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 此配置文件只是用作展示所有配置项, 不可不直接使用
|
# 此配置文件只是用作展示所有配置项, 不可直接使用
|
||||||
|
|
||||||
|
|
||||||
spring:
|
spring:
|
||||||
|
|
|
@ -37,8 +37,20 @@
|
||||||
</el-popover>
|
</el-popover>
|
||||||
<el-popover placement="bottom" width="900" height="300" trigger="click">
|
<el-popover placement="bottom" width="900" height="300" trigger="click">
|
||||||
<div style="height: 600px;overflow:auto; padding: 20px">
|
<div style="height: 600px;overflow:auto; padding: 20px">
|
||||||
|
<el-descriptions title="国标配置" border column="1">
|
||||||
|
<template slot="extra">
|
||||||
|
<el-button style="float: right;" type="primary" size="mini" icon="el-icon-document-copy" title="点击拷贝" v-clipboard="JSON.stringify(wvpServerConfig.sip)" @success="$message({type:'success', message:'成功拷贝到粘贴板'})"></el-button>
|
||||||
|
</template>
|
||||||
|
<el-descriptions-item v-for="(value, key, index) in wvpServerConfig.sip">
|
||||||
|
<template slot="label">
|
||||||
|
{{ getNameFromKey(key) }}
|
||||||
|
</template>
|
||||||
|
{{ value }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
|
||||||
<el-descriptions title="基础配置" border column="1">
|
<div style="margin-top: 1rem">
|
||||||
|
<el-descriptions title="基础配置" border column="1">
|
||||||
<template slot="extra">
|
<template slot="extra">
|
||||||
<el-button style="float: right;" type="primary" size="mini" icon="el-icon-document-copy" title="点击拷贝" v-clipboard="JSON.stringify(wvpServerConfig.base)" @success="$message({type:'success', message:'成功拷贝到粘贴板'})"></el-button>
|
<el-button style="float: right;" type="primary" size="mini" icon="el-icon-document-copy" title="点击拷贝" v-clipboard="JSON.stringify(wvpServerConfig.base)" @success="$message({type:'success', message:'成功拷贝到粘贴板'})"></el-button>
|
||||||
</template>
|
</template>
|
||||||
|
@ -70,18 +82,6 @@
|
||||||
|
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
<div style="margin-top: 1rem">
|
|
||||||
<el-descriptions title="国标配置" border column="1">
|
|
||||||
<template slot="extra">
|
|
||||||
<el-button style="float: right;" type="primary" size="mini" icon="el-icon-document-copy" title="点击拷贝" v-clipboard="JSON.stringify(wvpServerConfig.sip)" @success="$message({type:'success', message:'成功拷贝到粘贴板'})"></el-button>
|
|
||||||
</template>
|
|
||||||
<el-descriptions-item v-for="(value, key, index) in wvpServerConfig.sip">
|
|
||||||
<template slot="label">
|
|
||||||
{{ getNameFromKey(key) }}
|
|
||||||
</template>
|
|
||||||
{{ value }}
|
|
||||||
</el-descriptions-item>
|
|
||||||
</el-descriptions>
|
|
||||||
</div>
|
</div>
|
||||||
<div style="margin-top: 1rem">
|
<div style="margin-top: 1rem">
|
||||||
<el-descriptions title="版本信息" border column="1">
|
<el-descriptions title="版本信息" border column="1">
|
||||||
|
|
Loading…
Reference in New Issue