| | |
| | | </div> |
| | | <div class="data-item"> |
| | | <el-form-item label="违建类别:"> |
| | | <span class="data-detail">{{ baseCase.categoryText }}</span> |
| | | <span class="data-detail">{{ |
| | | baseCase.categoryText |
| | | }}</span> |
| | | </el-form-item> |
| | | </div> |
| | | <div class="data-item"> |
| | |
| | | </div> |
| | | <div class="data-item"> |
| | | <el-form-item label="所属社区:"> |
| | | <span class="data-detail">{{ baseCase.communityText }}</span> |
| | | <span class="data-detail">{{ |
| | | baseCase.communityText |
| | | }}</span> |
| | | </el-form-item> |
| | | </div> |
| | | <div class="data-item"> |
| | |
| | | <el-form-item label="违法建设长、宽、高:"> |
| | | <span class="data-detail">{{ |
| | | baseCase.illegalBuilding.buildingLength + |
| | | "m" + |
| | | " " + |
| | | 'm' + |
| | | ' ' + |
| | | baseCase.illegalBuilding.buildingWidth + |
| | | "m" + |
| | | " " + |
| | | 'm' + |
| | | ' ' + |
| | | baseCase.illegalBuilding.buildingHigh + |
| | | "m" |
| | | 'm' |
| | | }}</span> |
| | | </el-form-item> |
| | | </div> |
| | |
| | | <div |
| | | :class="[ |
| | | 'process-title', |
| | | activeIndex === item.index ? 'title-active' : '', |
| | | activeIndex === item.index ? 'title-active' : '' |
| | | ]" |
| | | > |
| | | {{ item.title }} |
| | |
| | | <div |
| | | :class="[ |
| | | 'under-line', |
| | | activeIndex === item.index ? 'line-active' : '', |
| | | activeIndex === item.index ? 'line-active' : '' |
| | | ]" |
| | | ></div> |
| | | </div> |
| | |
| | | import MyFilePicture from "@/components/filePictrue"; |
| | | import MySovleProblem from "@/components/solveProblem"; |
| | | import MyScene from "@/components/scene"; |
| | | import { FILE_ORIGINAL_URL } from "@/utils/index"; |
| | | export default { |
| | | components: { |
| | | MyProcess, |
| | |
| | | created() { |
| | | const { info } = this; |
| | | this.baseCase = info.baseCase; |
| | | |
| | | this.baseCase.illegalBuilding.positive = `${FILE_ORIGINAL_URL}sccg/API/img?fileUrl=${this.baseCase.illegalBuilding.positive}` |
| | | this.baseCase.illegalBuilding.negative = `${FILE_ORIGINAL_URL}sccg/API/img?fileUrl=${this.baseCase.illegalBuilding.negative}` |
| | | |
| | | this.handlePassVo = info.handlePassVo; |
| | | this.currentSitVo = info.currentSitVo; |
| | | this.filesPictureVo = info.filesPictureVo; |