648540858
2022-09-05 cfe9c762d680569136d0246ab61c79cd7e4eba50
web_src/src/components/dialog/platformEdit.vue
@@ -97,7 +97,6 @@
              <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>
@@ -159,7 +158,6 @@
        keepTimeout: 60,
        transport: "UDP",
        characterSet: "GB2312",
        shareAllLiveStream: false,
        startOfflinePush: false,
        catalogGroup: 1,
        administrativeDivision: null,
@@ -196,13 +194,16 @@
          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);
        });
@@ -225,7 +226,6 @@
        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;
@@ -268,30 +268,29 @@
      }
    },
    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);
      });
    },
@@ -320,7 +319,6 @@
        transport: "UDP",
        characterSet: "GB2312",
        treeType: "BusinessGroup",
        shareAllLiveStream: false,
        startOfflinePush: false,
        catalogGroup: 1,
      }
@@ -329,10 +327,12 @@
      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);