luobisheng
2022-12-09 873325daa14c27d05b74e1810a53ff477598f1e4
src/components/detail/index.vue
@@ -5,14 +5,14 @@
                <div class="data-item__left">
                    <label class="data-title">
                        问题类型:
                    </label>
                    <span class="data-detail">违规</span>
                    </label>
                    <span class="data-detail">{{ getCategoryLabel(baseCase.category) }}</span>
                </div>
                <div class="data-item__right">
                    <label class="data-title">
                        大类名称:
                    </label>
                    <span class="data-detail">{{baseCase.violations.categoryText}}</span>
                    <span class="data-detail">{{baseCase.violationsVO.categoryText}}</span>
                </div>
            </div>
            <div class="data-item">
@@ -20,13 +20,13 @@
                    <label class="data-title">
                        小类名称:
                    </label>
                    <span class="data-detail">{{baseCase.violations.typeText}}</span>
                    <span class="data-detail">{{baseCase.violationsVO.typeText}}</span>
                </div>
                <div class="data-item__right">
                    <label class="data-title">
                        事件等级:
                    </label>
                    <span class="data-detail">{{baseCase.violations.gradeText}}</span>
                    <span class="data-detail">{{baseCase.violationsVO.gradeText}}</span>
                </div>
            </div>
            <div class="data-item">
@@ -34,16 +34,10 @@
                    <label class="data-title">
                        案由:
                    </label>
                    <span class="data-detail">{{baseCase.violations.actionCause}}</span>
                    <span class="data-detail">{{baseCase.violationsVO.actionCause}}</span>
                </div>
            </div>
            <div class="data-item">
                <!-- <div class="data-item__left">
                    <label class="data-title">
                        所属区县:
                    </label>
                    <span class="data-detail">xxx</span>
                </div> -->
                <div class="data-item__left">
                    <label class="data-title">
                        所属街道:
@@ -57,14 +51,6 @@
                    <span class="data-detail">{{baseCase.communityText}}</span>
                </div>
            </div>
            <!-- <div class="data-item">
                <div class="data-item__left">
                    <label class="data-title">
                        所属街道:
                    </label>
                    <span class="data-detail">{{baseCase.streetText}}</span>
                </div>
            </div> -->
            <div class="data-item">
                <div class="data-item__left">
                    <label class="data-title">
@@ -78,7 +64,7 @@
                    <label class="data-title">
                        关联商铺名称:
                    </label>
                    <span class="data-detail">{{baseCase.violations.shopName}}</span>
                    <span class="data-detail">{{baseCase.violationsVO.shopName}}</span>
                </div>
            </div>
            <div class="data-item">
@@ -86,7 +72,7 @@
                    <label class="data-title">
                        问题描述:
                    </label>
                    <span class="data-detail">{{baseCase.violations.description}}</span>
                    <span class="data-detail">{{baseCase.violationsVO.description}}</span>
                </div>
            </div>
            <div class="data-user">
@@ -95,13 +81,13 @@
                        <label class="data-title">
                            反映人:
                        </label>
                        <span class="data-detail">{{baseCase.violations.informant}}</span>
                        <span class="data-detail">{{baseCase.violationsVO.informant}}</span>
                    </div>
                    <div class="data-item__right">
                        <label class="data-title">
                            联系方式:
                        </label>
                        <span class="data-detail">{{baseCase.violations.informantPhoneCode}}</span>
                        <span class="data-detail">{{baseCase.violationsVO.informantPhoneCode}}</span>
                    </div>
                </div>
                <div class="data-item">
@@ -109,7 +95,7 @@
                        <label class="data-title">
                            身份证号:
                        </label>
                        <span class="data-detail">{{baseCase.violations.informantIdCard}}</span>
                        <span class="data-detail">{{baseCase.violationsVO.informantIdCard}}</span>
                    </div>
                </div>
            </div>
@@ -138,6 +124,8 @@
import MyFilePicture from '@/components/filePictrue'
import MySovleProblem from '@/components/solveProblem'
import MyScene from '@/components/scene'
import { CATEGOTY } from "@/utils/helper";
export default {
    components: { 
        MyProcess, MyFilePicture, MySovleProblem, MyScene
@@ -169,25 +157,23 @@
            baseCase:{},
            handlePassVo:{},
            currentSitVo:{},
            // problemProVo:{},
            filesPictureVo:{}
            
        }
    },
    created() {
        console.log('created');
        const {info} = this;
        this.baseCase = info.baseCase;
        this.handlePassVo = info.handlePassVo;
        this.currentSitVo = info.currentSitVo;
        // this.problemProVo = info.problemProVo;
        this.filesPictureVo = info.filesPictureVo;
        console.log(info);
        this.baseCase = this.info.baseCase;
        this.handlePassVo = this.info.handlePassVo;
        this.currentSitVo = this.info.currentSitVo;
        this.filesPictureVo = this.info.filesPictureVo;
    },
    methods: {
        changeComponent(index) {
            this.activeIndex = index;
        },
      getCategoryLabel(category) {
          return CATEGOTY.find(item => item.value === category).label;
      }
    },
    props: ['info','mycode']
}