bug
zhanghua
2024-01-03 02129858b17c1934b30d29b87805844479a32c6c
bug
4个文件已修改
49 ■■■■ 已修改文件
src/components/filePictrue/index.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/illdetail/index.vue 27 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/disposal/casepool/pool/index.vue 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
vue.config.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/filePictrue/index.vue
@@ -8,7 +8,9 @@
            <img class="img" :src="childer" alt="" />
            <div class="tip">
              <div>【图片类型】上报</div>
              <div>【上传时间】{{ changeTime(item.createTime) }}</div>
                            <div>
                                【上传时间】{{ changeTime(item.createTime) }}
                            </div>
            </div>
          </div>
        </div>
@@ -22,7 +24,9 @@
            <img class="img" :src="childer" alt="" />
            <div class="tip">
              <!-- <div>【图片类型】处置</div> -->
              <div>【上传时间】{{ changeTime(item.createTime) }}</div>
                            <div>
                                【上传时间】{{ changeTime(item.createTime) }}
                            </div>
            </div>
          </div>
        </div>
@@ -52,7 +56,9 @@
          item.url = [];
          urls.forEach((o) => {
            o = o.replace("[", "").replace("]", "");
                        if (o !== '') {
            item.url.push(`${FILE_ORIGINAL_URL}sccg/API/img?fileUrl=${o}`);
                        }
          });
        }
      } else {
src/components/illdetail/index.vue
@@ -14,7 +14,9 @@
        </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">
@@ -45,7 +47,9 @@
        </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">
@@ -74,13 +78,13 @@
          <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>
@@ -111,7 +115,7 @@
          <div
            :class="[
              'process-title',
              activeIndex === item.index ? 'title-active' : '',
                            activeIndex === item.index ? 'title-active' : ''
            ]"
          >
            {{ item.title }}
@@ -119,7 +123,7 @@
          <div
            :class="[
              'under-line',
              activeIndex === item.index ? 'line-active' : '',
                            activeIndex === item.index ? 'line-active' : ''
            ]"
          ></div>
        </div>
@@ -158,6 +162,7 @@
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,
@@ -198,6 +203,10 @@
  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;
src/views/operate/disposal/casepool/pool/index.vue
@@ -129,7 +129,12 @@
                        min-width="12"
                    >
                    </el-table-column>
                    <el-table-column prop="state" label="状态" min-width="8"  :formatter="formatPrivilegeType">
                    <el-table-column
                        prop="state"
                        label="状态"
                        min-width="8"
                        :formatter="formatPrivilegeType"
                    >
                    </el-table-column>
                    <el-table-column
                        prop="operation"
@@ -556,6 +561,8 @@
        },
        // 更改一级标签的选中
        changeNavChecked(idx) {
            this.currentPage = 1
            this.tagList.forEach((item, index) => {
                item.checked = index === idx;
            });
@@ -569,6 +576,7 @@
        },
        // 更改违规/违建
        changeTypeChecked(idx) {
            this.currentPage = 1
            this.typeList.forEach((item, index) => {
                item.checked = index === idx;
            });
vue.config.js
@@ -40,7 +40,7 @@
      // 跨域配置
      "/sccg": {
        // target: `http://42.193.1.25/`,      //测试环境
        target: `http://111.1.140.92:28081/`,
        target: `http://111.1.140.92:8082/`,
        // target: `http://10.88.10.18:8082/`,
        changeOrigin: true
      }