| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <template>
- <div class="popupContentClass" :style="{'height':testHeight1+'px'}">
- <p style="margin-top:20px;">
- <div style="display: flex;align-items: center;margin-bottom: 10px">
- <div style="width: 4px;height: 14px;background: rgba(44,158,255,1);border-radius: 1px;margin-right: 10px;"></div>
- <span style="font-size:14px;font-family:MicrosoftYaHei;color:rgba(51,51,51,1);">登记信息</span>
- </div>
- </p>
- <el-row class="rowClass">
- <el-col :span="6" class="nameClass">行政区名称:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.adName}}</el-col>
- <el-col :span="6" class="nameClass">行政区编码:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.adCode}}</el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="6" class="nameClass">项目名称:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{ formObj.name }}</el-col>
- <el-col :span="6" class="nameClass">所在详细位置:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.location }}</el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="6" class="nameClass">问题描述 :</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.pblmDesc}}</el-col>
- <el-col :span="6" class="nameClass">问题分类:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">
- {{formObj.pblmType}}
- <!--{{formObj.pblmType == '1' ? '乱占' :-->
- <!--formObj.pblmType == '2' ? '乱采' : formObj.pblmType == '3' ? '乱堆' : formObj.pblmType == '4' ? '乱建' :-->
- <!--formObj.pblmType == '5' ? '其他' : '' }}-->
- </el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="6" class="nameClass">核实情况:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.reviConc == '1' ? '已整改' :
- formObj.reviConc == '2' ? '部分整改' : formObj.reviConc == '3' ? '未整改' : ''}}
- </el-col>
- <el-col :span="6" class="nameClass">复查意见:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.reviOpin}}
- </el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="6" class="nameClass">省级标识:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.province }}
- </el-col>
- <el-col :span="6" class="nameClass">督查状态:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.state == '0' ? '未督查' :
- formObj.state == '1' ? '督查中' : formObj.state == '2' ? '已督查' : '' }}
- </el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="6" class="nameClass">问题整治情况:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.rectConc == '1' ? '已整改' :
- formObj.rectConc == '2' ? '整改中' : formObj.rectConc == '3' ? '未整改' : ''}}
- </el-col>
- <el-col :span="6" class="nameClass"> 河流、河段(湖泊)名称:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.rvReaLkName}}</el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="6" class="nameClass">航拍点:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{ formObj.aerialPoint}}</el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="6" class="nameClass">经度:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.centerX}}</el-col>
- <el-col :span="6" class="nameClass">纬度:</el-col>
- <el-col :span="6" class="valueClass" :style="{'height':testHeight+'px'}">{{formObj.centerY}}</el-col>
- </el-row>
- </div>
- </template>
- <script>
- import request from "@util/gw_ajax_request.js"
- export default {
- components: {},
- props: ["currentObjectRgstrId"],
- data() {
- return {
- testHeight: (window.innerHeight * 0.5 - 50) / 6,
- testHeight1: window.innerHeight * 0.5,
- dialogFormVisible: false,
- formObj: {},
- formLabelWidth: "160px",
- loading: true,
- };
- },
- computed: {
- recPersId() {
- return localStorage.getItem("userid")
- ? localStorage.getItem("userid")
- : "";
- }
- },
- mounted() {
- this.dialogFormVisible = true;
- this.getBaseInfo();
- },
- watch: {
- currentObjectId(n, o) {
- this.getBaseInfo();
- }
- },
- methods: {
- showDialog() {
- this.dialogFormVisible = true;
- },
- getBaseInfo() {
- var _self = this;
- request.get(`/att/jskejian/water/rgstr/${_self.currentObjectRgstrId}`).then(res => {
- if (res.data) {
- _self.formObj = res.data;
- } else {
- _self.formObj = {};
- }
- }).catch(err => {
- console.log(err);
- });
- }
- },
- filters: {}
- };
- </script>
- <style scoped>
- @import "../../../assets/css/popup.css";
- </style>
|