guanqb
2024-03-27 5799f3389538de672a92b4aee1a6559965f2e6ca
文字说明、
3 files modified
57 ■■■■■ changed files
src/views/antiFraudShow/index.vue 32 ●●●● patch | view | raw | blame | history
src/views/contradictionEventShow/index.vue 24 ●●●● patch | view | raw | blame | history
src/views/rentalInfo/index.vue 1 ●●●● patch | view | raw | blame | history
src/views/antiFraudShow/index.vue
@@ -20,18 +20,18 @@
                    :header-cell-style="{ 'text-align': 'center', 'background-color': '#203c60', 'borderColor': '#324e75' }"
                    :cell-style="{ 'text-align': 'center', 'borderColor': '#324e75', 'cursor': 'default' }"
                    :row-class-name="tableRowClassName" class="police-infor-table">
                    <el-table-column prop="address" :show-overflow-tooltip="true" label="宣传地址" v-if="chooseTab == 1"
                    <el-table-column prop="address" :show-overflow-tooltip="true" label="地址" v-if="chooseTab == 1"
                        :key="Math.random()"></el-table-column>
                    <el-table-column prop="pubContent" :show-overflow-tooltip="true" label="宣传内容" v-if="chooseTab == 1"
                    <el-table-column prop="pubContent" :show-overflow-tooltip="true" label="问卷调查问卷"
                        v-if="chooseTab == 1" :key="Math.random()"></el-table-column>
                    <el-table-column prop="createTime" :show-overflow-tooltip="true" label="时间" v-if="chooseTab == 1"
                        :key="Math.random()"></el-table-column>
                    <el-table-column prop="createTime" :show-overflow-tooltip="true" label="宣传时间" v-if="chooseTab == 1"
                    <el-table-column prop="address" :show-overflow-tooltip="true" label="地址" v-if="chooseTab == 2"
                        :key="Math.random()"></el-table-column>
                    <el-table-column prop="address" :show-overflow-tooltip="true" label="预警地址" v-if="chooseTab == 2"
                        :key="Math.random()"></el-table-column>
                    <el-table-column prop="recContent" :show-overflow-tooltip="true" label="预警核实内容"
                    <el-table-column prop="recContent" :show-overflow-tooltip="true" label="核实内容信息"
                        v-if="chooseTab == 2" :key="Math.random()"></el-table-column>
                    <el-table-column prop="createTime" :show-overflow-tooltip="true" label="预警核实时间"
                        v-if="chooseTab == 2" :key="Math.random()"></el-table-column>
                    <el-table-column prop="createTime" :show-overflow-tooltip="true" label="时间" v-if="chooseTab == 2"
                        :key="Math.random()"></el-table-column>
                    <el-table-column label="操作" align="center">
                        <template slot-scope="scope">
                            <el-button type="text" size="small" title="详情" @click="goDetail(scope.row)">
@@ -141,20 +141,20 @@
                title = '反诈宣传详情'
                detailList = [
                    {
                        label: '宣传地址',
                        label: '地址',
                        value: row.address
                    },
                    {
                        label: '宣传内容',
                        label: '问卷调查内容',
                        value: row.pubContent
                    },
                    {
                        label: '宣传图片',
                        label: '宣传佐证照片',
                        value: row.pubUrls,
                        isPic: true
                    },
                    {
                        label: '宣传时间',
                        label: '时间',
                        value: row.createTime
                    },
                    {
@@ -178,20 +178,20 @@
                title = '反诈预警详情'
                detailList = [
                    {
                        label: '预警地址',
                        label: '地址',
                        value: row.address
                    },
                    {
                        label: '预警核实内容',
                        label: '核实内容信息',
                        value: row.recContent
                    },
                    {
                        label: '预警核实图片',
                        label: '核实现场照片',
                        value: row.sceUrls,
                        isPic: true
                    },
                    {
                        label: '预警核实时间',
                        label: '时间',
                        value: row.createTime
                    },
                    {
src/views/contradictionEventShow/index.vue
@@ -156,6 +156,10 @@
                    value: row.injuryFlag == 1 ? '是' : '否'
                },
                {
                    label: '受伤描述',
                    value: row.injuryDesc
                },
                {
                    label: '报警次数',
                    value: row.alarmNum
                },
@@ -164,27 +168,35 @@
                    value: this.disputeSourceList.find(i => i.dictKey == row.source).dictValue
                },
                {
                    label: '纠纷人1姓名',
                    label: '当事人1姓名',
                    value: row.nameOne
                },
                {
                    label: '纠纷人1电话',
                    label: '当事人1性别',
                    value: row.genderOne == 1 ? '男' : row.genderOne == 2 ? '女' : '未知'
                },
                {
                    label: '当事人1电话',
                    value: row.phoneOne
                },
                {
                    label: '纠纷人1身份证号',
                    label: '当事人1身份证号',
                    value: row.idCardOne
                },
                {
                    label: '纠纷人2姓名',
                    label: '当事人2姓名',
                    value: row.nameTwo
                },
                {
                    label: '纠纷人2电话',
                    label: '当事人2性别',
                    value: row.genderTwo == 1 ? '男' : '女'
                },
                {
                    label: '当事人2电话',
                    value: row.phoneTwo
                },
                {
                    label: '纠纷人2身份证号',
                    label: '当事人2身份证号',
                    value: row.idCardTwo
                },
                {
src/views/rentalInfo/index.vue
@@ -201,6 +201,7 @@
        resetSearch () {
            this.pages.current = 1
            this.keyword = ''
            this.keyManFlag = ''
            this.initTableList()
        },