From d24c9dde20cba23b96082b4db81b5223c75e4ea9 Mon Sep 17 00:00:00 2001 From: odc.xiaohui <xiaohui@Q1> Date: 星期三, 08 三月 2023 09:06:28 +0800 Subject: [PATCH] 身份证正反面调整 --- src/components/scene/index.vue | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/scene/index.vue b/src/components/scene/index.vue index 303d81b..f6e14f2 100644 --- a/src/components/scene/index.vue +++ b/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; } } -- Gitblit v1.8.0