Oliver
2022-12-14 02ce22be65df8b717d5f1614e5d7dbfcdf1ce1b9
src/components/scene/index.vue
@@ -152,7 +152,7 @@
        if (invesList) {
            if (invesList) {
                this.investigation = invesList;
                this.investigation.pic = invesList.pic.split(",");
                this.investigation.pic = invesList.pic?.split(",");
                this.partyInfo = invesList.partyInfo;
            }
        }
@@ -161,10 +161,10 @@
            this.arrivalSituation.situationPic = mylist.situationPic.split(",")
        }
        this.mybaseCase = baseCase;
        if (baseCase.violations == null) {
            this.type = baseCase.illegalBuilding.categoryText
        if (baseCase.violationsVO) {
          this.type = baseCase.violationsVO.typeText;
        } else {
            this.type = baseCase.violations.typeText;
          this.type = baseCase.illegalBuilding.categoryText;
        }
    },
    methods: {