odc.xiaohui
2023-03-08 d24c9dde20cba23b96082b4db81b5223c75e4ea9
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: {
@@ -219,8 +219,8 @@
        padding: 20px 0px;
        ::v-deep .el-input__inner {
            background-color: #09152f;
            border: 1px solid #17324c;
            // background-color: #09152f;
            // border: 1px solid #17324c;
        }
    }