| | |
| | | <el-form-item label="其他选项"> |
| | | <el-checkbox label="启用" v-model="platform.enable" @change="checkExpires"></el-checkbox> |
| | | <el-checkbox label="云台控制" v-model="platform.ptz"></el-checkbox> |
| | | <el-checkbox label="共享所有直播流" v-model="platform.shareAllLiveStream"></el-checkbox> |
| | | <el-checkbox label="拉起离线推流" v-model="platform.startOfflinePush"></el-checkbox> |
| | | </el-form-item> |
| | | <el-form-item> |
| | |
| | | keepTimeout: 60, |
| | | transport: "UDP", |
| | | characterSet: "GB2312", |
| | | shareAllLiveStream: false, |
| | | startOfflinePush: false, |
| | | catalogGroup: 1, |
| | | administrativeDivision: null, |
| | |
| | | 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; |
| | | that.platform.treeType = res.data.treeType; |
| | | that.platform.administrativeDivision = res.data.username.substr(0, 6); |
| | | if (res.data.code === 0) { |
| | | that.platform.deviceGBId = res.data.data.username; |
| | | that.platform.deviceIp = res.data.data.deviceIp; |
| | | that.platform.devicePort = res.data.data.devicePort; |
| | | that.platform.username = res.data.data.username; |
| | | that.platform.password = res.data.data.password; |
| | | that.platform.treeType = "BusinessGroup"; |
| | | that.platform.administrativeDivision = res.data.data.username.substr(0, 6); |
| | | } |
| | | |
| | | }).catch(function (error) { |
| | | console.log(error); |
| | | }); |
| | |
| | | this.platform.keepTimeout = platform.keepTimeout; |
| | | this.platform.transport = platform.transport; |
| | | this.platform.characterSet = platform.characterSet; |
| | | this.platform.shareAllLiveStream = platform.shareAllLiveStream; |
| | | this.platform.catalogId = platform.catalogId; |
| | | this.platform.startOfflinePush = platform.startOfflinePush; |
| | | this.platform.catalogGroup = platform.catalogGroup; |
| | |
| | | } |
| | | }, |
| | | saveForm: function (){ |
| | | var that = this; |
| | | that.$axios({ |
| | | this.$axios({ |
| | | method: 'post', |
| | | url: this.saveUrl, |
| | | data: that.platform |
| | | }).then(function (res) { |
| | | data: this.platform |
| | | }).then((res) =>{ |
| | | if (res.data.code === 0) { |
| | | that.$message({ |
| | | this.$message({ |
| | | showClose: true, |
| | | message: "保存成功", |
| | | type: "success", |
| | | }); |
| | | that.showDialog = false; |
| | | if (that.listChangeCallback != null) { |
| | | that.listChangeCallback(); |
| | | this.showDialog = false; |
| | | if (this.listChangeCallback != null) { |
| | | this.listChangeCallback(); |
| | | } |
| | | }else { |
| | | that.$message({ |
| | | this.$message({ |
| | | showClose: true, |
| | | message: res.data.msg, |
| | | type: "error", |
| | | }); |
| | | } |
| | | }).catch(function (error) { |
| | | }).catch((error)=> { |
| | | console.log(error); |
| | | }); |
| | | }, |
| | |
| | | transport: "UDP", |
| | | characterSet: "GB2312", |
| | | treeType: "BusinessGroup", |
| | | shareAllLiveStream: false, |
| | | startOfflinePush: false, |
| | | catalogGroup: 1, |
| | | } |
| | |
| | | var result = false; |
| | | var that = this; |
| | | await that.$axios({ |
| | | method: 'post', |
| | | method: 'get', |
| | | url:`/api/platform/exit/${deviceGbId}`}) |
| | | .then(function (res) { |
| | | result = res.data; |
| | | if (res.data.code === 0) { |
| | | result = res.data.data; |
| | | } |
| | | }) |
| | | .catch(function (error) { |
| | | console.log(error); |