| | |
| | | <el-form-item label="问题类型:"> |
| | | <span class="data-detail">违建</span> |
| | | </el-form-item> |
| | | </div> |
| | | <div class="data-item"> |
| | | <el-form-item label="违建类别:"> |
| | | <span class="data-detail">{{ baseCase.categoryText }}</span> |
| | | </el-form-item> |
| | |
| | | <el-form-item label="违建地点:"> |
| | | <span class="data-detail">{{ baseCase.site }}</span> |
| | | </el-form-item> |
| | | </div> |
| | | <div class="data-item"> |
| | | <el-form-item label="所属社区:"> |
| | | <span class="data-detail">{{ baseCase.communityText }}</span> |
| | | </el-form-item> |
| | |
| | | <MyFilePicture |
| | | v-else-if="activeIndex === 2" |
| | | :filesPictureVo="filesPictureVo" |
| | | :mycode='mycode' |
| | | :pic="pic" |
| | | :media="media" |
| | | :mycode="mycode" |
| | | ></MyFilePicture> |
| | | <MySovleProblem |
| | | v-else-if="activeIndex === 3" |
| | |
| | | handlePassVo: {}, |
| | | currentSitVo: {}, |
| | | filesPictureVo: {}, |
| | | pic: [], |
| | | media: [], |
| | | }; |
| | | }, |
| | | created() { |
| | | console.log("created"); |
| | | const { info } = this; |
| | | this.baseCase = info.baseCase; |
| | | this.handlePassVo = info.handlePassVo; |
| | | this.currentSitVo = info.currentSitVo; |
| | | this.filesPictureVo = info.filesPictureVo; |
| | | console.log(info); |
| | | }, |
| | | methods: { |
| | | changeComponent(index) { |
| | | this.activeIndex = index; |
| | | this.activeIndex = index; |
| | | }, |
| | | }, |
| | | props: ["info","mycode"], |
| | | props: ["info", "mycode"], |
| | | }; |
| | | </script> |
| | | <style lang="scss" scoped> |
| | |
| | | display: flex; |
| | | // justify-content: space-between; |
| | | line-height: 20px; |
| | | |
| | | .data-detail { |
| | | color: #333; |
| | | line-height: 1.8; |
| | | max-width: 240px; |
| | | display: inline-grid; |
| | | } |
| | | } |
| | | |
| | | border: 1px solid #17324c; |
| | |
| | | height: 600px; |
| | | position: relative; |
| | | .show-wrap { |
| | | overflow: scroll; |
| | | overflow: auto; |
| | | height: 600px; |
| | | } |
| | | } |