zengh
2021-06-11 a729411033767f37a4def031376126096611f556
src/views/realTimePolice/real.vue
@@ -464,19 +464,25 @@
    },
    methods: {
      rowSave(row, done, loading) {
        var security = "";
        row.securityArr.forEach((item) => {
          security = security + item + ",";
        });
        row.securityArr = security.substring(0, security.length - 1);
        if (typeof row.securityArr != "string") {
          var security = "";
          row.securityArr.forEach((item) => {
            security = security + item + ",";
          });
          row.securityArr = security.substring(0, security.length - 1);
        }
        var userId = JSON.parse(
          window.localStorage.getItem("群防群控后台管理系统-userInfo")
        ).content.real_name;
        if (row.securityArr == "" || row.securityArr == null) {
          row.jtype = "0";
          row.alarmPeople = "";
        }else {
          row.jtype = "1";
          //已派发保安
          row.alarmPeople = userId;
        }
        add(row).then(
@@ -494,6 +500,11 @@
        );
      },
      rowUpdate(row, index, done, loading) {
        var userId = JSON.parse(
          window.localStorage.getItem("群防群控后台管理系统-userInfo")
        ).content.real_name;
        if (typeof row.securityArr != "string") {
          var security = "";
          row.securityArr.forEach((item) => {
@@ -502,6 +513,15 @@
          row.securityArr = security.substring(0, security.length - 1);
        }
        if (row.securityArr == "" || row.securityArr == null) {
          row.jtype = "0";
          row.alarmPeople = "";
        }else {
          row.jtype = "1";
          //已派发保安
          row.alarmPeople = userId;
        }
        row.coordinate = "";
        update(row).then(
          () => {