增加了球机通道等

兰州-麒麟
LAPTOP-S9HJSOEB\昊天 2 years ago
parent 9beeca9aef
commit 321a9860cd

Binary file not shown.

@ -4,7 +4,7 @@ server {
client_max_body_size 90m;
location /api {
proxy_pass http://192.168.77.91:8099/api;
proxy_pass http://127.0.0.1:8099/api;
}
location /{

@ -1397,7 +1397,7 @@ tr.ant-table-expanded-row:hover {background: #fbfbfb;}
.ant-tag-blue-inverse {color: #fff;background: #1890ff;border-color: #1890ff;}
.ant-tag-geekblue {color: #2f54eb;background: #f0f5ff;border-color: #adc6ff;}
.ant-tag-geekblue-inverse {color: #fff;background: #2f54eb;border-color: #2f54eb;}
.ant-tag-purple {color: #722ed1;background: #f9f0ff;border-color: #d3adf7;}
.ant-tag-purple {color: #722ed1;background: color(~`colorPalette("@{text-color-secondary}", 1)`);border-color: #d3adf7;}
.ant-tag-purple-inverse {color: #fff;background: #722ed1;border-color: #722ed1;}
.ant-time-picker-panel {color: @text-color;}
.ant-time-picker-panel-inner {background-color: #fff;background-clip: padding-box;border-radius: 4px;box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);}

@ -25,6 +25,11 @@
v-decorator="['ip', { rules: [{ required: true, message: '请输入球机ip!' }] }]"
/>
</a-form-item>
<a-form-item label="球机通道" :label-col="formItemVerticalLayout.labelCol">
<a-input placeholder="球机通道硬盘录像机由D开头如D1、D2!"
v-decorator="['channelString', { rules: [{ required: true, message: '球机通道硬盘录像机由D开头如D1、D2!' }] }]"
/>
</a-form-item>
<a-form-item label="视频流IP" :label-col="formItemVerticalLayout.labelCol">
<a-input
v-decorator="['rtcServer']"
@ -226,6 +231,7 @@ export default {
name:newVal.name,
ip:newVal.ip,
rtsp:newVal.rtsp,
channelString:newVal.channelString,
rtcServer:newVal.rtcServer,
rtcServerPort:newVal.rtcServerPort
})

@ -32,14 +32,14 @@ module.exports = {
}
},
'/api/pic': {
target: 'http://192.168.77.91:9007/api/pic',
target: 'http://127.0.0.1:9007/api/pic',
logLevel:'debug',
pathRewrite:{
'/api/pic':''
}
},
'/api/mp4': {
target: 'http://192.168.77.91:9007/api/mp4',
target: 'http://127.0.0.1:9007/api/mp4',
logLevel:'debug',
pathRewrite:{
'/api/mp4':''

Loading…
Cancel
Save