| | |
| | | <el-input v-model="platform.serverIP" clearable></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="SIP服务端口" prop="serverPort"> |
| | | <el-input v-model="platform.serverPort" clearable></el-input> |
| | | <el-input v-model="platform.serverPort" clearable type="number"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="设备国标编号" prop="deviceGBId"> |
| | | <el-input v-model="platform.deviceGBId" clearable></el-input> |
| | |
| | | <el-input v-model="platform.deviceIp" :disabled="true"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="本地端口" prop="devicePort"> |
| | | <el-input v-model="platform.devicePort" :disabled="true"></el-input> |
| | | <el-input v-model="platform.devicePort" :disabled="true" type="number"></el-input> |
| | | </el-form-item> |
| | | </el-form> |
| | | </el-col> |
| | |
| | | callback(new Error("请输入设备国标编号")); |
| | | } else { |
| | | var exit = await this.deviceGBIdExit(value); |
| | | console.log(exit); |
| | | console.log(exit == "true"); |
| | | console.log(exit === "true"); |
| | | if (exit) { |
| | | callback(new Error("设备国标编号已存在")); |
| | | } else { |
| | |
| | | onSubmit_text: "立即创建", |
| | | |
| | | platform: { |
| | | id: null, |
| | | enable: true, |
| | | ptz: true, |
| | | rtcp: false, |
| | | name: "测试001", |
| | | serverGBId: "34020000002000000001", |
| | | serverGBDomain: "3402000000", |
| | | serverIP: "192.168.1.141", |
| | | serverPort: "5060", |
| | | deviceGBId: "34020000001320001101", |
| | | deviceIp: "192.168.1.20", |
| | | devicePort: "5060", |
| | | username: "34020000001320001101", |
| | | password: "12345678", |
| | | name: null, |
| | | serverGBId: null, |
| | | serverGBDomain: null, |
| | | serverIP: null, |
| | | serverPort: null, |
| | | deviceGBId: null, |
| | | deviceIp: null, |
| | | devicePort: null, |
| | | username: null, |
| | | password: null, |
| | | expires: 300, |
| | | keepTimeout: 60, |
| | | transport: "UDP", |
| | |
| | | methods: { |
| | | openDialog: function (platform, callback) { |
| | | var that = this; |
| | | this.$axios({ |
| | | method: 'get', |
| | | url:`/api/platform/server_config` |
| | | }).then(function (res) { |
| | | if (platform == null) { |
| | | this.onSubmit_text = "立即创建"; |
| | | this.$axios({ |
| | | method: 'get', |
| | | url:`/api/platform/server_config` |
| | | }).then(function (res) { |
| | | console.log(res); |
| | | that.platform.deviceGBId = res.data.username; |
| | | that.platform.deviceIp = res.data.deviceIp; |
| | | that.platform.devicePort = res.data.devicePort; |
| | | that.platform.username = res.data.username; |
| | | that.platform.password = res.data.password; |
| | | }).catch(function (error) { |
| | | }).catch(function (error) { |
| | | console.log(error); |
| | | }); |
| | | this.showDialog = true; |
| | | this.listChangeCallback = callback; |
| | | if (platform != null) { |
| | | }else { |
| | | this.platform = platform; |
| | | this.onSubmit_text = "保存"; |
| | | } else { |
| | | this.onSubmit_text = "立即创建"; |
| | | } |
| | | this.showDialog = true; |
| | | this.listChangeCallback = callback; |
| | | }, |
| | | onSubmit: function () { |
| | | console.log("onSubmit"); |
| | |
| | | </script> |
| | | |
| | | <style> |
| | | /* 谷歌 */ |
| | | input::-webkit-outer-spin-button, |
| | | input::-webkit-inner-spin-button { |
| | | -webkit-appearance: none; |
| | | appearance: none; |
| | | margin: 0; |
| | | } |
| | | /* 火狐 */ |
| | | input{ |
| | | -moz-appearance:textfield; |
| | | } |
| | | .control-wrapper-not-used { |
| | | position: relative; |
| | | width: 6.25rem; |