From c8a167fd980901fb9aa83064d92ce04bbb9cd87e Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期四, 29 十二月 2022 12:10:17 +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