Commit 3aefa173 by mr.wang

feat: 案件线索比对相关详情页

parent a678e22a
<template>
<div class="rightContent" id="IdentityInfor">
<div class="Content paneDiv paneDiv2">
<div class="header">
<span class="title">{{ title }}</span>
</div>
<div class="Boxcontent">
<div class="content">
<div>
<div
class="itemBox"
v-for="(item, index) in cxQueryField"
:key="item.id" >
<div class="module">
<div class="title">{{ item.title }}</div>
<div class="rows">
<div v-if="index === 0" class="ryzp"><img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/2wBDABsSFBcUERsXFhceHBsgKEIrKCUlKFE6PTBCYFVlZF9VXVtqeJmBanGQc1tdhbWGkJ6jq62rZ4C8ybqmx5moq6T/2wBDARweHigjKE4rK06kbl1upKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKT/wAARCAAyADIDASIAAhEBAxEB/8QAGgAAAgMBAQAAAAAAAAAAAAAAAAUCAwQBBv/EAC4QAAEDAwMDAQYHAAAAAAAAAAEAAgMEERITIjEFIUFRMjM1YYGRFUJxcnOhwf/EABgBAAMBAQAAAAAAAAAAAAAAAAACAwEE/8QAHBEBAQEBAAMBAQAAAAAAAAAAAAECEQMTMSEi/9oADAMBAAIRAxEAPwD0ZIAuSlc1XNPI5lGBZvYvP+K/qEthHDlbVNu3oo0MejDg/G9/CTWuGzFcdO+aK80shJ5F0SU8kMZMU0gtwL3W4/JUVDZiWaTgADuv5CjbenjPT1czHtjqwN3Dwmg4WSVtPK3CQXC5RTB4kiyJ03Y3Poq510mpxtuhcQnIV1/xGnHjutbMfRKaqtE0ccr43RzRuvifI+S2MnsBIN0bh9lDy/erY/Y2kqJKqbMxwu14+6i+VreXAfVQp5HJMbKjp5P4nMz8paD9VLPPda0Y/tU0Eoiq5DO0sfIdp8EKvil6zyX+eHaFy6F0ucq0qyms1rWVEY8nlVRyya5Zp6bucCeU77Jd1OJwxqYxviPe3kLLJr6aXjO7RJ3sxP2XW6AOxmTkxhdFURNkABuFa2NjeGgKXqinsLxFI5hke2waLhqzTTtm6WHPIMpO0ebp32slDKOOPqp27S3Id+Cq5zM/CW9aG62I54Qt1kLSJKE3unfohC0FvQ/cyfvKZn2ShCAiz2AsA+NH+JCENMkIQgP/2Q==" width="120"/></div>
<div :class="'col' + i.col" v-for="i in item.data" :key="i.prop" >
<span class="label" :style="{ width: labelWidth }">{{ i.label }}</span>
<div v-if="item.objStr" class="cont" :style="{ width: `calc(100% - ${labelWidth})` }"> {{ (pageData[item.objStr] && pageData[item.objStr][i.prop]) || "-" }}
</div>
<div v-else class="cont" :style="{ width: `calc(100% - ${labelWidth})` }">
<!-- <span v-if="isBase64(pageData[i.prop] + '')"><img :src="'data:image/jpeg;base64,' + pageData[i.prop]" alt="" width="80"/></span>
<span v-else>{{ pageData[i.prop] || "-" }}</span> -->
<span>{{ pageData[i.prop] || "-" }}</span>
</div>
</div>
</div>
<div class="zpdb" v-if="index === 2">
<div>
<img :src="'data:image/jpeg;base64,' + bzrZp" alt="" width="280"/>
</div>
<div>
<img :src="'data:image/jpeg;base64,' + xyrZp" alt="" width="280"/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
//页面信息对象
pageData: this.pageObject,
col: 0,
bzrZp: this.pageObject.bzrZp,
xyrZp: this.pageObject.xyrZp
}
},
props: {
//详情配置
cxQueryField: {
type: Array,
default: () => [],
},
//接口请求的对象所有信息都包含的
pageObject: {
type: Object,
default: () => ({}),
},
//label的宽度默认80
labelWidth: String,
//页面标题
title: String
},
methods: {
// 判断字段返回值是否为base64字符串
isBase64(str) {
if (str ==='' || str.trim() ===''){ return false; }
try {
return btoa(atob(str)) == str
} catch (err) {
return false
}
}
},
mounted() {
},
watch: {
pageObject: {
handler: function (val) {
this.pageData = val;
console.log('this.pageData', this.pageData)
},
deep: true,
},
},
};
</script>
<style lang="scss" scoped>
@mixin pageStyle() {
padding: 13px 50px;
}
@mixin photoStyle() {
display: flex;
align-items: center;
background-color: #fcfcfd;
border: 1px solid rgba(0, 0, 0, 0.18);
}
.rightContent {
flex: 1;
height: 100%;
overflow-y: auto;
.paneDiv {
background: #ffffff;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
opacity: 1;
border-radius: 4px;
margin: 16px 20px 50px;
position: relative;
}
.paneDiv2 {
background: #ffffff;
border: 1px solid #eaeaea;
box-shadow: none;
opacity: 1;
border-radius: 8px;
}
.header {
padding: 13px 20px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #e4e4e4;
.title {
font-size: 16px;
font-family: Source Han Sans CN;
font-weight: 600;
color: #363636;
}
.iconBox {
i {
font-size: 18px;
color: #808591;
&:not(:last-of-type) {
margin-right: 15px;
}
}
}
}
.Boxcontent {
@include pageStyle();
.content {
height: auto;
display: block;
.module{
.rows{
position: relative;
.ryzp{
position: absolute;
top: 18px;
width: 200px;
background: #fff;
height: 160px;
}
}
.zpdb{
div{
width: 33%;
display: inline-block;
}
}
}
}
}
.col3,
.col6,
.col10,
.col5,
.col13 {
display: inline-block;
vertical-align: top;
padding: 5px 0;
.label {
font-size: 15px;
color: #363636;
font-weight: bold;
display: inline-block;
width: 80px;
text-align: left;
vertical-align: top;
}
.cont {
color: #808591;
font-size: 15px;
display: inline-block;
width: calc(100% - 80px);
box-sizing: border-box;
padding-right: 15px;
padding-left: 10px;
> span{
word-wrap: break-word;
}
}
}
.itemBox {
.title {
font-size: 16px;
font-family: Source Han Sans CN;
font-weight: 600;
color: #ff8d1e;
border-bottom: 1px solid #e4e4e4;
padding-bottom: 10px;
}
}
.col3 {
width: 33%;
}
.col6 {
width: 66%;
}
.col10 {
width: 100%;
}
.col5 {
width: 50%;
}
.col13 {
width: 33%;
margin-right: 33%;
}
}
</style>
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</template> </template>
<script> <script>
import rightContent from "@c/PersonInfor.vue"; import rightContent from "@c/IdentityInfor.vue";
import { rxdbDetail } from "@/api/ajxscxbd.js"; import { rxdbDetail } from "@/api/ajxscxbd.js";
import axios from "@/utils/http.js"; import axios from "@/utils/http.js";
export default { export default {
...@@ -24,206 +24,222 @@ export default { ...@@ -24,206 +24,222 @@ export default {
return { return {
cxQueryField: [ cxQueryField: [
{ {
title: "现场人像比中", //如果不分小模块就删除title title: "人员基本信息", //如果不分小模块就删除title
id: 1, id: 1,
objStr: "", //对象中的对应字段 objStr: "xyrxx", //对象中的对应字段
data: [ data: [
{ {
label: "信息主键编号:", label: "",
prop: "bzsjStr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中时间:", label: "人员编号:",
prop: "bzsjStr", prop: "asjxgrybh",
col: "3", col: "3",
}, },
{ {
label: "比中单位名称:", label: "学历:",
prop: "bzdwGajgmc", prop: "xldmStr",
col: "3", col: "3",
}, },
{ {
label: "比中人员与源图片的相似度:", label: "",
prop: "similarity", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中照片所属的人员库名:", label: "出生日期:",
prop: "repositoryName", prop: "csrq",
col: "3", col: "3",
}, },
{ {
label: "比中人员住址:", label: "民族:",
prop: "nativePlaceAddr", prop: "mzdmStr",
col: "3", col: "3",
}, },
{ {
label: "比中人照片:", label: "",
prop: "bzrZp", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中人员标签库数组:", label: "政治面貌:",
prop: "tagAry", prop: "zzmmdmStr",
col: "3", col: "3",
}, },
{ {
label: "嫌疑人照片:", label: "职业:",
prop: "xyrZp", prop: "zylbdmStr",
col: "3", col: "3",
}, },
],
},
{ {
title: "嫌疑案事件信息", //如果不分小模块就删除title label: "",
id: 2, prop: "",
objStr: "xyasjxx", //对象中的对应字段
data: [
{
label: "案件编号:",
prop: "asjbh",
col: "3", col: "3",
}, },
{ {
label: "案件名称:", label: "姓名:",
prop: "ajmc", prop: "xm",
col: "3", col: "3",
}, },
{ {
label: "案件类别:", label: "籍贯:",
prop: "ajlbdmStr", prop: "jgdmStr",
col: "3", col: "3",
}, },
{ {
label: "现勘编号:", label: "工作单位:",
prop: "xkbh", prop: "gzdw",
col: "3", col: "3",
}, },
{ {
label: "发案日期:", label: "性别:",
prop: "asjfssjfxAsjfskssjStr", prop: "xbdmStr",
col: "3", col: "3",
}, },
{ {
label: "发案地区划:", label: "国籍:",
prop: "fxasjddXzqhdmStr", prop: "gjdmStr",
col: "3", col: "3",
}, },
{ {
label: "发案地详址:", label: "别名:",
prop: "fxasjddDzmc", prop: "bmch",
col: "3", col: "3",
}, },
{ {
label: "简要案情:", label: "证件号码:",
prop: "jyaq", prop: "cyzjZjhm",
col: "3", col: "3",
}, },
],
},
{ {
title: "嫌疑人信息", //如果不分小模块就删除title label: "户籍地区划:",
id: 3, prop: "hjdzXzqhdmStr",
objStr: "xyrxx", //对象中的对应字段
data: [
{
label: "人员编号:",
prop: "asjxgrybh",
col: "3", col: "3",
}, },
{ {
label: "姓名:", label: "现住址区划:",
prop: "xm", prop: "xzzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "人员照片:", label: "证件类型:",
prop: "zp", prop: "cyzjCyzjmc",
col: "3", col: "3",
}, },
{ {
label: "别名:", label: "户籍地详址:",
prop: "bmch", prop: "hjdzDzmc",
col: "3", col: "3",
}, },
{ {
label: "证件类型:", label: "现住址详址:",
prop: "cyzjCyzjmc", prop: "xzzDzmc",
col: "3", col: "10",
},
],
}, },
{ {
label: "证件号码:", title: "案件基本信息", //如果不分小模块就删除title
prop: "cyzjZjhm", id: 2,
objStr: "xyasjxx", //对象中的对应字段
data: [
{
label: "案件名称:",
prop: "ajmc",
col: "3", col: "3",
}, },
{ {
label: "性别:", label: "案件编号:",
prop: "xbdmStr", prop: "asjbh",
col: "3", col: "3",
}, },
{ {
label: "出生日期:", label: "案件类别:",
prop: "csrq", prop: "ajlbdmStr",
col: "3", col: "3",
}, },
{ {
label: "国籍:", label: "现勘编号:",
prop: "gjdmStr", prop: "xkbh",
col: "3", col: "3",
}, },
{ {
label: "民族:", label: "发案日期:",
prop: "mzdmStr", prop: "asjfssjfxAsjfskssjStr",
col: "3", col: "3",
}, },
{ {
label: "籍贯:", label: "发案地区划:",
prop: "jgdmStr", prop: "fxasjddXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "政治面貌:", label: "发案地详址:",
prop: "zzmmdmStr", prop: "fxasjddDzmc",
col: "10",
},
{
label: "简要案情:",
prop: "jyaq",
col: "10",
},
],
},
{
title: "比中信息", //如果不分小模块就删除title
id: 3,
data: [
{
label: "信息主键编号:",
prop: "bzsjStr",
col: "3", col: "3",
}, },
{ {
label: "学历:", label: "比中时间:",
prop: "xldmStr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "职业:", label: "比中单位名称:",
prop: "zylbdmStr", prop: "bzdwGajgmc",
col: "3", col: "3",
}, },
{ {
label: "工作单位:", label: "比中人员与源图片的相似度:",
prop: "gzdw", prop: "similarity",
col: "3", col: "3",
}, },
{ {
label: "户籍地区划:", label: "比中照片所属的人员库名:",
prop: "hjdzXzqhdmStr", prop: "repositoryName",
col: "3", col: "3",
}, },
{ {
label: "户籍地详址:", label: "比中人员住址:",
prop: "hjdzDzmc", prop: "nativePlaceAddr",
col: "3", col: "3",
}, },
{ {
label: "现住址区划:", label: "比中人照片:",
prop: "xzzXzqhdmStr", // prop: "bzrZp",
prop: '',
col: "3", col: "3",
}, },
{ {
label: "现住址详址:", label: "嫌疑人照片:",
prop: "xzzDzmc", // prop: "xyrZp",
prop: "",
col: "3", col: "3",
}, },
{
label: "比中人员标签库数组:",
prop: "tagAry",
col: "3",
}
], ],
}, }
], ],
pageFooterProps: [ pageFooterProps: [
{ {
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</template> </template>
<script> <script>
import rightContent from "@c/PersonInfor.vue"; import rightContent from "@c/IdentityInfor.vue";
import { dnaDetail } from "@/api/ajxscxbd.js"; import { dnaDetail } from "@/api/ajxscxbd.js";
import axios from "@/utils/http.js"; import axios from "@/utils/http.js";
export default { export default {
...@@ -24,234 +24,174 @@ export default { ...@@ -24,234 +24,174 @@ export default {
return { return {
cxQueryField: [ cxQueryField: [
{ {
title: "人员基本信息", //如果不分小模块就删除title
id: 1, id: 1,
objStr: "dnabz", //对象中的对应字段 objStr: "xyrxx", //对象中的对应字段
data: [ data: [
{ {
label: "物证编号:", label: "",
prop: "wzbh", prop: "",
col: "3", col: "3",
}, },
{ {
label: "物证名称:", label: "人员编号:",
prop: "ajwzmc", prop: "asjxgrybh",
col: "3",
},
{
label: "实验室案件编号:",
prop: "bzajAjbh",
col: "3",
},
{
label: "案件名称:",
prop: "bzajAjmc",
col: "3",
},
{
label: "案件类别:",
prop: "bzajAjlb",
col: "3",
},
{
label: "DNA简要案情:",
prop: "bzajJyaq",
col: "3",
},
{
label: "警综案件编号:",
prop: "jzajbh",
col: "3",
},
{
label: "警综案件名称:",
prop: "jzajmc",
col: "3",
},
{
label: "警情编号:",
prop: "jqbh",
col: "3",
},
{
label: "警综简要案情:",
prop: "jzjyaq",
col: "3",
},
{
label: "现勘编号:",
prop: "xkbh",
col: "3",
},
{
label: "发案时间:",
prop: "bzajAfsj",
col: "3",
},
{
label: "案件类型:",
prop: "ajlx",
col: "3", col: "3",
}, },
{ {
label: "案件状态:", label: "学历:",
prop: "ajzt", prop: "xldmStr",
col: "3", col: "3",
}, },
{ {
label: "状态日期:", label: "",
prop: "ztrq", prop: "",
col: "3", col: "3",
}, },
{ {
label: "案件来源:", label: "出生日期:",
prop: "ajly", prop: "csrq",
col: "3", col: "3",
}, },
{ {
label: "案件所属省份:", label: "民族:",
prop: "bzajAjsssf", prop: "mzdmStr",
col: "3", col: "3",
}, },
{ {
label: "立案县市区:", label: "",
prop: "laxsq", prop: "",
col: "3", col: "3",
}, },
{ {
label: "案件对比串并类别:", label: "政治面貌:",
prop: "ajbdcblb", prop: "zzmmdmStr",
col: "3", col: "3",
}, },
{ {
label: "立案单位:", label: "职业:",
prop: "bzajLadw", prop: "zylbdmStr",
col: "3", col: "3",
}, },
{ {
label: "警综案件类别:", label: "",
prop: "jzajlb", prop: "",
col: "3", col: "3",
}, },
{ {
label: "送检时间:", label: "姓名:",
prop: "bzajSjsj", prop: "xm",
col: "3", col: "3",
}, },
{ {
label: "送检人:", label: "籍贯:",
prop: "bzajSjr", prop: "jgdmStr",
col: "3", col: "3",
}, },
{ {
label: "送检人联系方式:", label: "工作单位:",
prop: "bzajSjrlxdh", prop: "gzdw",
col: "3", col: "3",
}, },
{ {
label: "案件检出基因座数量:", label: "性别:",
prop: "bzajJcjyzsl", prop: "xbdmStr",
col: "3", col: "3",
}, },
{ {
label: "案件实验室受理编号:", label: "国籍:",
prop: "bzajSysslbh", prop: "gjdmStr",
col: "3", col: "3",
}, },
{ {
label: "案件实验室:", label: "别名:",
prop: "bzajSysdm", prop: "bmch",
col: "3", col: "3",
}, },
{ {
label: "案件实验室名称:", label: "证件号码:",
prop: "bzajSysmc", prop: "cyzjZjhm",
col: "3", col: "3",
}, },
{ {
label: "人员编号:", label: "户籍地区划:",
prop: "bzryRybh", prop: "hjdzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "姓名:", label: "现住址区划:",
prop: "bzryXm", prop: "xzzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "身份证号码:", label: "证件类型:",
prop: "bzrySfzh", prop: "cyzjCyzjmc",
col: "3", col: "3",
}, },
{ {
label: "性别:", label: "户籍地详址:",
prop: "bzryXb", prop: "hjdzDzmc",
col: "3", col: "3",
}, },
{ {
label: "民族:", label: "现住址详址:",
prop: "bzryMz", prop: "xzzDzmc",
col: "3", col: "10",
}, },
{ ],
label: "民族:",
prop: "xyrxx.mzdmStr",
col: "3",
}, },
{ {
label: "户籍地详址:", title: "案件基本信息", //如果不分小模块就删除title
prop: "bzryHjd", id: 2,
col: "3", objStr: "xyasjxx", //对象中的对应字段
}, data: [
{ {
label: "抓获状态:", label: "案件名称:",
prop: "zhzt", prop: "ajmc",
col: "3", col: "3",
}, },
{ {
label: "抓获时间:", label: "案件编号:",
prop: "zhsj", prop: "asjbh",
col: "3", col: "3",
}, },
{ {
label: "抓获单位:", label: "案件类别:",
prop: "zhdw", prop: "ajlbdmStr",
col: "3", col: "3",
}, },
{ {
label: "人员来源:", label: "现勘编号:",
prop: "ryly", prop: "xkbh",
col: "3", col: "3",
}, },
{ {
label: "人员类别:", label: "发案日期:",
prop: "rylb", prop: "asjfssjfxAsjfskssjStr",
col: "3", col: "3",
}, },
{ {
label: "人员比对串并类别:", label: "发案地区划:",
prop: "rybdcblb", prop: "fxasjddXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "人员实验室编号:", label: "发案地详址:",
prop: "bzrySysbh", prop: "fxasjddDzmc",
col: "3", col: "10",
}, },
{ {
label: "人员实验室名称:", label: "简要案情:",
prop: "bzrySysmc", prop: "jyaq",
col: "3", col: "10",
}, },
{ ],
label: "人员检出基因座数量:",
prop: "bzryJcjyzsl",
col: "3",
}, },
{ {
label: "前科情况:", id: 3,
prop: "qkqk", title: "比中信息", //如果不分小模块就删除title
col: "3", // objStr: "dnabz", //对象中的对应字段
}, data: [
{ {
label: "比中时间:", label: "比中时间:",
prop: "bzsjStr", prop: "bzsjStr",
...@@ -341,7 +281,7 @@ export default { ...@@ -341,7 +281,7 @@ export default {
dnaDetail({ dnaDetail({
xxzjbh: _this.xxzjbh, xxzjbh: _this.xxzjbh,
}).then((res) => { }).then((res) => {
var result = res.data; var result = res.data.dnabz;
this.pageObject = result; this.pageObject = result;
_this.filterTreeCode(result); _this.filterTreeCode(result);
}); });
......
...@@ -78,7 +78,7 @@ export default { ...@@ -78,7 +78,7 @@ export default {
cxDefaultFormThead: [ cxDefaultFormThead: [
{ {
label: "物证编号", label: "物证编号",
prop: "wzhm", prop: "xxzjbh",
toInfor: true, toInfor: true,
}, },
{ {
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</template> </template>
<script> <script>
import rightContent from "@c/PersonInfor.vue"; import rightContent from "@c/IdentityInfor.vue";
import { xcrxcDetail } from "@/api/ajxscxbd.js"; import { xcrxcDetail } from "@/api/ajxscxbd.js";
import axios from "@/utils/http.js"; import axios from "@/utils/http.js";
export default { export default {
...@@ -24,112 +24,103 @@ export default { ...@@ -24,112 +24,103 @@ export default {
return { return {
cxQueryField: [ cxQueryField: [
{ {
title: "人信息", //如果不分小模块就删除title title: "人员基本信息", //如果不分小模块就删除title
id: 1, id: 1,
objStr: "", //对象中的对应字段 objStr: "xyrxx", //对象中的对应字段
data: [ data: [
{ {
label: "信息主键编号:", label: "",
prop: "xxzjbh", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中人员与源图片的相似度:", label: "人员编号:",
prop: "similarity", prop: "asjxgrybh",
col: "3", col: "3",
}, },
{ {
label: "比中照片所属的人员库名:", label: "学历:",
prop: "repositoryName", prop: "xldmStr",
col: "3", col: "3",
}, },
{ {
label: "比中人员住址:", label: "",
prop: "nativePlaceAddr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中人员照片:", label: "出生日期:",
prop: "zp", prop: "csrq",
col: "3", col: "3",
}, },
{ {
label: "比中人员标签库数组:", label: "民族:",
prop: "tagAry", prop: "mzdmStr",
col: "3", col: "3",
}, },
],
},
{
title: "嫌疑案事件信息", //如果不分小模块就删除title
id: 2,
objStr: "xyasjxx", //对象中的对应字段
data: [
{ {
label: "案件编号:", label: "",
prop: "asjbh", prop: "",
col: "3", col: "3",
}, },
{ {
label: "案件名称:", label: "政治面貌:",
prop: "ajmc", prop: "zzmmdmStr",
col: "3", col: "3",
}, },
{ {
label: "案件类别:", label: "职业:",
prop: "ajlbdmStr", prop: "zylbdmStr",
col: "3", col: "3",
}, },
{ {
label: "现勘编号:", label: "",
prop: "xkbh", prop: "",
col: "3", col: "3",
}, },
{ {
label: "发案日期:", label: "姓名:",
prop: "asjfssjfxAsjfskssjStr", prop: "xm",
col: "3", col: "3",
}, },
{ {
label: "发案地区划:", label: "籍贯:",
prop: "fxasjddXzqhdmStr", prop: "jgdmStr",
col: "3", col: "3",
}, },
{ {
label: "发案地详址:", label: "工作单位:",
prop: "fxasjddDzmc", prop: "gzdw",
col: "3", col: "3",
}, },
{ {
label: "简要案情:", label: "性别:",
prop: "jyaq", prop: "xbdmStr",
col: "3", col: "3",
}, },
],
},
{ {
title: "嫌疑人信息", //如果不分小模块就删除title label: "国籍:",
id: 3, prop: "gjdmStr",
objStr: "xyrxx", //对象中的对应字段 col: "3",
data: [ },
{ {
label: "人员编号:", label: "别名:",
prop: "asjxgrybh", prop: "bmch",
col: "3", col: "3",
}, },
{ {
label: "姓名:", label: "证件号码:",
prop: "xm", prop: "cyzjZjhm",
col: "3", col: "3",
}, },
{ {
label: "人员之前登记的照片:", label: "户籍地区划:",
prop: "zp", prop: "hjdzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "别名:", label: "现住址区划:",
prop: "bmch", prop: "xzzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
...@@ -138,78 +129,101 @@ export default { ...@@ -138,78 +129,101 @@ export default {
col: "3", col: "3",
}, },
{ {
label: "证件号码:", label: "户籍地详址:",
prop: "cyzjZjhm", prop: "hjdzDzmc",
col: "3", col: "3",
}, },
{ {
label: "性别:", label: "现住址详址:",
prop: "xbdmStr", prop: "xzzDzmc",
col: "3", col: "10",
},
],
}, },
{ {
label: "出生日期:", title: "案件基本信息", //如果不分小模块就删除title
prop: "csrq", id: 2,
objStr: "asjxx", //对象中的对应字段
data: [
{
label: "案件名称:",
prop: "ajmc",
col: "3", col: "3",
}, },
{ {
label: "国籍:", label: "案件编号:",
prop: "gjdmStr", prop: "asjbh",
col: "3", col: "3",
}, },
{ {
label: "民族:", label: "案件类别:",
prop: "mzdmStr", prop: "ajlbdmStr",
col: "3", col: "3",
}, },
{ {
label: "籍贯:", label: "现勘编号:",
prop: "jgdmStr", prop: "xkbh",
col: "3", col: "3",
}, },
{ {
label: "政治面貌:", label: "发案日期:",
prop: "zzmmdmStr", prop: "asjfssjfxAsjfskssjStr",
col: "3", col: "3",
}, },
{ {
label: "学历:", label: "发案地区划:",
prop: "xldmStr", prop: "fxasjddXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "职业:", label: "发案地详址:",
prop: "zylbdmStr", prop: "fxasjddDzmc",
col: "10",
},
{
label: "简要案情:",
prop: "jyaq",
col: "10",
},
],
},
{
title: "比中信息", //如果不分小模块就删除title
id: 3,
objStr: "", //对象中的对应字段
data: [
{
label: "信息主键编号:",
prop: "xxzjbh",
col: "3", col: "3",
}, },
{ {
label: "工作单位:", label: "比中人员与源图片的相似度:",
prop: "gzdw", prop: "similarity",
col: "3", col: "3",
}, },
{ {
label: "户籍地区划:", label: "比中照片所属的人员库名:",
prop: "hjdzXzqhdmStr", prop: "repositoryName",
col: "3", col: "3",
}, },
{ {
label: "户籍地详址:", label: "比中人员住址:",
prop: "hjdzDzmc", prop: "nativePlaceAddr",
col: "3", col: "3",
}, },
{ {
label: "现住址区划:", label: "比中人员照片:",
prop: "xzzXzqhdmStr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "现住址详址:", label: "比中人员标签库数组:",
prop: "xzzDzmc", prop: "tagAry",
col: "3", col: "3",
}, },
], ],
}, }
], ],
pageFooterProps: [ pageFooterProps: [
{ {
...@@ -262,7 +276,7 @@ export default { ...@@ -262,7 +276,7 @@ export default {
xcrxcDetail({ xcrxcDetail({
xxzjbh: _this.xxzjbh, xxzjbh: _this.xxzjbh,
}).then((res) => { }).then((res) => {
var result = res.data; var result = res.data.rxdbBdzg;
this.pageObject = result; this.pageObject = result;
_this.filterTreeCode(result); _this.filterTreeCode(result);
}); });
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</template> </template>
<script> <script>
import rightContent from "@c/PersonInfor.vue"; import rightContent from "@c/IdentityInfor.vue";
import { ystrDetail } from "@/api/ajxscxbd.js"; import { ystrDetail } from "@/api/ajxscxbd.js";
import axios from "@/utils/http.js"; import axios from "@/utils/http.js";
export default { export default {
...@@ -23,109 +23,105 @@ export default { ...@@ -23,109 +23,105 @@ export default {
data() { data() {
return { return {
cxQueryField: [ cxQueryField: [
{ {
title: "YSTR比中", title: "人员基本信息",
id: 1, id: 1,
objStr: "", //对象中的对应字段 objStr: "xyrxx", //对象中的对应字段
data: [ data: [
{ {
label: "比中时间:", label: "",
prop: "bzsjStr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中单位名称:", label: "人员编号:",
prop: "bzdwGajgmc", prop: "asjxgrybh",
col: "3", col: "3",
}, },
{ {
label: "比中人:", label: "学历:",
prop: "bzrXm", prop: "xldmStr",
col: "3", col: "3",
}, },
{ {
label: "比中单位名称:", label: "",
prop: "bzdwGajgmc", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中人公民身份号码:", label: "出生日期:",
prop: "bzrLxdh", prop: "csrq",
col: "3", col: "3",
}, },
],
},
{
title: "嫌疑案事件信息",
id: 2,
objStr: "xyasjxx", //对象中的对应字段
data: [
{ {
label: "案件编号:", label: "民族:",
prop: "asjbh", prop: "mzdmStr",
col: "3", col: "3",
}, },
{ {
label: "案件名称:", label: "",
prop: "ajmc", prop: "",
col: "3", col: "3",
}, },
{ {
label: "案件类别:", label: "政治面貌:",
prop: "ajlbdmStr", prop: "zzmmdmStr",
col: "3", col: "3",
}, },
{ {
label: "现勘编号:", label: "职业:",
prop: "xkbh", prop: "zylbdmStr",
col: "3", col: "3",
}, },
{ {
label: "发案日期:", label: "",
prop: "asjfssjfxAsjfskssjStr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "发案地区划:", label: "姓名:",
prop: "fxasjddXzqhdmStr", prop: "xm",
col: "3", col: "3",
}, },
{ {
label: "发案地详址:", label: "籍贯:",
prop: "fxasjddDzmc", prop: "jgdmStr",
col: "3", col: "3",
}, },
{ {
label: "简要案情:", label: "工作单位:",
prop: "jyaq", prop: "gzdw",
col: "3", col: "3",
}, },
], {
label: "性别:",
prop: "xbdmStr",
col: "3",
}, },
{ {
title: "嫌疑人信息", label: "国籍:",
id: 3, prop: "gjdmStr",
objStr: "xyrxx", //对象中的对应字段 col: "3",
data: [ },
{ {
label: "人员编号:", label: "别名:",
prop: "asjxgrybh", prop: "bmch",
col: "3", col: "3",
}, },
{ {
label: "姓名:", label: "证件号码:",
prop: "xm", prop: "cyzjZjhm",
col: "3", col: "3",
}, },
{ {
label: "人员照片:", label: "户籍地区划:",
prop: "zp", prop: "hjdzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "别名:", label: "现住址区划:",
prop: "bmch", prop: "xzzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
...@@ -134,79 +130,96 @@ export default { ...@@ -134,79 +130,96 @@ export default {
col: "3", col: "3",
}, },
{ {
label: "证件号码:", label: "户籍地详址:",
prop: "cyzjZjhm", prop: "hjdzDzmc",
col: "3", col: "3",
}, },
{ {
label: "性别:", label: "现住址详址:",
prop: "xbdmStr", prop: "xzzDzmc",
col: "3", col: "10",
},
]
}, },
{ {
label: "出生日期:", title: "案事基本信息",
prop: "csrq", id: 2,
objStr: "xyasjxx", //对象中的对应字段
data: [
{
label: "案件名称:",
prop: "ajmc",
col: "3", col: "3",
}, },
{ {
label: "国籍:", label: "案件编号:",
prop: "gjdmStr", prop: "asjbh",
col: "3", col: "3",
}, },
{ {
label: "民族:", label: "案件类别:",
prop: "mzdmStr", prop: "ajlbdmStr",
col: "3", col: "3",
}, },
{ {
label: "籍贯:", label: "现勘编号:",
prop: "jgdmStr", prop: "xkbh",
col: "3", col: "3",
}, },
{ {
label: "政治面貌:", label: "发案日期:",
prop: "zzmmdmStr", prop: "asjfssjfxAsjfskssjStr",
col: "3", col: "3",
}, },
{ {
label: "学历:", label: "发案地区划:",
prop: "xldmStr", prop: "fxasjddXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "职业:", label: "发案地详址:",
prop: "zylbdmStr", prop: "fxasjddDzmc",
col: "3", col: "10",
}, },
{ {
label: "工作单位:", label: "简要案情:",
prop: "gzdw", prop: "jyaq",
col: "10",
},
],
},
{
title: "YSTR比中",
id: 3,
objStr: "", //对象中的对应字段
data: [
{
label: "比中时间:",
prop: "bzsjStr",
col: "3", col: "3",
}, },
{ {
label: "户籍地区划:", label: "比中单位名称:",
prop: "hjdzXzqhdmStr", prop: "bzdwGajgmc",
col: "3", col: "3",
}, },
{ {
label: "户籍地详址:", label: "比中人:",
prop: "hjdzDzmc", prop: "bzrXm",
col: "3", col: "3",
}, },
{ {
label: "现住址区划:", label: "比中单位名称:",
prop: "xzzXzqhdmStr", prop: "bzdwGajgmc",
col: "3", col: "3",
}, },
{ {
label: "现住址详址:", label: "比中人公民身份号码:",
prop: "xzzDzmc", prop: "bzrLxdh",
col: "3", col: "3",
}, },
], ],
}, }
], ],
pageFooterProps: [ pageFooterProps: [
{ {
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</template> </template>
<script> <script>
import rightContent from "@c/PersonInfor.vue"; import rightContent from "@c/IdentityInfor.vue";
import { xczjcDetail } from "@/api/ajxscxbd.js"; import { xczjcDetail } from "@/api/ajxscxbd.js";
import axios from "@/utils/http.js"; import axios from "@/utils/http.js";
export default { export default {
...@@ -24,181 +24,210 @@ export default { ...@@ -24,181 +24,210 @@ export default {
return { return {
cxQueryField: [ cxQueryField: [
{ {
title: "人员基本信息", //如果不分小模块就删除title
id: 1, id: 1,
objStr: "zjbzxx", //对象中的对应字段 objStr: "xyrxx", //对象中的对应字段
data: [ data: [
{ {
label: "信息主键编号:", label: "",
prop: "xxzjbh", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中时间:", label: "人员编号:",
prop: "bzsjStr", prop: "asjxgrybh",
col: "3", col: "3",
}, },
{ {
label: "比中单位名称:", label: "学历:",
prop: "bzdwGajgmc", prop: "xldmStr",
col: "3", col: "3",
}, },
{ {
label: "嫌疑人足迹图像:", label: "",
prop: "xyrzjtx", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中嫌疑人足迹部位:", label: "出生日期:",
prop: "bzxyrzjbw", prop: "csrq",
col: "3", col: "3",
}, },
{ {
label: "案件足迹图片:", label: "民族:",
prop: "ajzjtx", prop: "mzdmStr",
col: "3", col: "3",
}, },
{ {
label: "比中案件足迹序号:", label: "",
prop: "bzajzjxh", prop: "",
col: "3", col: "3",
}, },
{ {
label: "案件编号:", label: "政治面貌:",
prop: "xyasjxx.asjbh", prop: "zzmmdmStr",
col: "3", col: "3",
}, },
{ {
label: "案件名称:", label: "职业:",
prop: "xyasjxx.ajmc", prop: "zylbdmStr",
col: "3", col: "3",
}, },
{ {
label: "案件类别:", label: "",
prop: "xyasjxx.ajlbdmStr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "现勘编号:", label: "姓名:",
prop: "xyasjxx.xkbh", prop: "xm",
col: "3", col: "3",
}, },
{ {
label: "发案日期:", label: "籍贯:",
prop: "xyrxx.asjfssjfxAsjfskssjStr", prop: "jgdmStr",
col: "3", col: "3",
}, },
{ {
label: "发案地区划:", label: "工作单位:",
prop: "xyrxx.fxasjddXzqhdmStr", prop: "gzdw",
col: "3", col: "3",
}, },
{ {
label: "发案地详址:", label: "性别:",
prop: "xyrxx.fxasjddDzmc", prop: "xbdmStr",
col: "3", col: "3",
}, },
{ {
label: "简要案情:", label: "国籍:",
prop: "xyrxx.jyaq", prop: "gjdmStr",
col: "3", col: "3",
}, },
{ {
label: "人员编号:", label: "别名:",
prop: "xyrxx.asjxgrybh", prop: "bmch",
col: "3", col: "3",
}, },
{ {
label: "姓名:", label: "证件号码:",
prop: "xyrxx.xm", prop: "cyzjZjhm",
col: "3", col: "3",
}, },
{ {
label: "人员照片:", label: "户籍地区划:",
prop: "xyrxx.zp", prop: "hjdzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "别名:", label: "现住址区划:",
prop: "xyrxx.bmch", prop: "xzzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "证件类型:", label: "证件类型:",
prop: "xyrxx.cyzjCyzjmc", prop: "cyzjCyzjmc",
col: "3", col: "3",
}, },
{ {
label: "证件号码:", label: "户籍地详址:",
prop: "xyrxx.cyzjZjhm", prop: "hjdzDzmc",
col: "3", col: "3",
}, },
{ {
label: "性别:", label: "现住址详址:",
prop: "xyrxx.xbdmStr", prop: "xzzDzmc",
col: "10",
},
],
},
{
title: "案件基本信息", //如果不分小模块就删除title
id: 2,
objStr: "xyasjxx", //对象中的对应字段
data: [
{
label: "案件名称:",
prop: "ajmc",
col: "3", col: "3",
}, },
{ {
label: "出生日期:", label: "案件编号:",
prop: "xyrxx.csrq", prop: "asjbh",
col: "3", col: "3",
}, },
{ {
label: "国籍:", label: "案件类别:",
prop: "xyrxx.gjdmStr", prop: "ajlbdmStr",
col: "3", col: "3",
}, },
{ {
label: "民族:", label: "现勘编号:",
prop: "xyrxx.mzdmStr", prop: "xkbh",
col: "3", col: "3",
}, },
{ {
label: "籍贯:", label: "发案日期:",
prop: "xyrxx.jgdmStr", prop: "asjfssjfxAsjfskssjStr",
col: "3", col: "3",
}, },
{ {
label: "政治面貌:", label: "发案地区划:",
prop: "xyrxx.zzmmdmStr", prop: "fxasjddXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "学历:", label: "发案地详址:",
prop: "xyrxx.xldmStr", prop: "fxasjddDzmc",
col: "10",
},
{
label: "简要案情:",
prop: "jyaq",
col: "10",
},
],
},
{
id: 3,
title: "比中信息", //如果不分小模块就删除title
data: [
{
label: "信息主键编号:",
prop: "xxzjbh",
col: "3", col: "3",
}, },
{ {
label: "职业:", label: "比中时间:",
prop: "xyrxx.zylbdmStr", prop: "bzsjStr",
col: "3", col: "3",
}, },
{ {
label: "工作单位:", label: "比中单位名称:",
prop: "xyrxx.gzdw", prop: "bzdwGajgmc",
col: "3", col: "3",
}, },
{ {
label: "户籍地区划:", label: "比中嫌疑人足迹部位:",
prop: "xyrxx.hjdzXzqhdmStr", prop: "bzxyrzjbw",
col: "3", col: "3",
}, },
{ {
label: "户籍地详址:", label: "比中案件足迹序号:",
prop: "xyrxx.hjdzDzmc", prop: "bzajzjxh",
col: "3", col: "3",
}, },
{ {
label: "现住址区划:", label: "案件足迹图片:",
prop: "xyrxx.xzzXzqhdmStr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "现住址详址:", label: "嫌疑人足迹图像:",
prop: "xyrxx.xzzDzmc", prop: "",
col: "3", col: "3",
}, },
], ],
}, }
], ],
pageFooterProps: [ pageFooterProps: [
{ {
...@@ -251,7 +280,7 @@ export default { ...@@ -251,7 +280,7 @@ export default {
xczjcDetail({ xczjcDetail({
xxzjbh: _this.xxzjbh, xxzjbh: _this.xxzjbh,
}).then((res) => { }).then((res) => {
var result = res.data; var result = res.data.zjbzxx;
this.pageObject = result; this.pageObject = result;
_this.filterTreeCode(result); _this.filterTreeCode(result);
}); });
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</template> </template>
<script> <script>
import rightContent from "@c/PersonInfor.vue"; import rightContent from "@c/IdentityInfor.vue";
import { xczwDetail } from "@/api/ajxscxbd.js"; import { xczwDetail } from "@/api/ajxscxbd.js";
import axios from "@/utils/http.js"; import axios from "@/utils/http.js";
export default { export default {
...@@ -24,222 +24,251 @@ export default { ...@@ -24,222 +24,251 @@ export default {
return { return {
cxQueryField: [ cxQueryField: [
{ {
id: 1, title: "人员基本信息", //如果不分小模块就删除title
objStr: "zwbz", //对象中的对应字段 id: 3,
objStr: "xyrxx", //对象中的对应字段
data: [ data: [
{ {
label: "现场指纹编号:", label: "",
prop: "xczwbh", prop: "",
col: "3", col: "3",
}, },
{ {
label: "捺印指纹编号:", label: "人员编号:",
prop: "nyzwbh", prop: "asjxgrybh",
col: "3", col: "3",
}, },
{ {
label: "比中时间:", label: "学历:",
prop: "bzsjStr", prop: "xldmStr",
col: "3", col: "3",
}, },
{ {
label: "比中单位名称:", label: "",
prop: "bzdwGajgmc", prop: "",
col: "3", col: "3",
}, },
{ {
label: "比中人:", label: "出生日期:",
prop: "bzrXm", prop: "csrq",
col: "3", col: "3",
}, },
{ {
label: "捺印单位名称:", label: "民族:",
prop: "nydmGajgmc", prop: "mzdmStr",
col: "3", col: "3",
}, },
{ {
label: "捺印时间:", label: "",
prop: "nysjStr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "捺印指纹指位:", label: "政治面貌:",
prop: "nyzwxh", prop: "zzmmdmStr",
col: "3", col: "3",
}, },
{ {
label: "捺印指纹图片:", label: "职业:",
prop: "nyzwtx", prop: "zylbdmStr",
col: "3", col: "3",
}, },
{ {
label: "提取人:", label: "",
prop: "tqrXm", prop: "",
col: "3", col: "3",
}, },
{ {
label: "提取时间:", label: "姓名:",
prop: "tqsjStr", prop: "xm",
col: "3", col: "3",
}, },
{ {
label: "提取单位名称:", label: "籍贯:",
prop: "tqdwGajgmc", prop: "jgdmStr",
col: "3", col: "3",
}, },
{ {
label: "现场指纹序号:", label: "工作单位:",
prop: "xczwxh", prop: "gzdw",
col: "3", col: "3",
}, },
{ {
label: "现场指纹图片:", label: "性别:",
prop: "xczwtx", prop: "xbdmStr",
col: "3", col: "3",
}, },
{ {
label: "比中类型:", label: "国籍:",
prop: "type", prop: "gjdmStr",
col: "3", col: "3",
}, },
{ {
label: "案件编号:", label: "别名:",
prop: "xyasjxx.asjbh", prop: "bmch",
col: "3", col: "3",
}, },
{ {
label: "案件名称:", label: "证件号码:",
prop: "xyasjxx.ajmc", prop: "cyzjZjhm",
col: "3", col: "3",
}, },
{ {
label: "案件类别:", label: "户籍地区划:",
prop: "xyasjxx.ajlbdmStr", prop: "hjdzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "现勘编号:", label: "现住址区划:",
prop: "xyasjxx.xkbh", prop: "xzzXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "发案日期:", label: "证件类型:",
prop: "xyasjxx.asjfssjfxAsjfskssjStr", prop: "cyzjCyzjmc",
col: "3", col: "3",
}, },
{ {
label: "发案地区划:", label: "户籍地详址:",
prop: "xyasjxx.fxasjddXzqhdmStr", prop: "hjdzDzmc",
col: "3", col: "3",
}, },
{ {
label: "发案地详址:", label: "现住址详址:",
prop: "xyasjxx.fxasjddDzmc", prop: "xzzDzmc",
col: "3", col: "10",
},
],
}, },
{ {
label: "简要案情:", title: "案件基本信息", //如果不分小模块就删除title
prop: "xyasjxx.jyaq", id: 2,
objStr: "xyasjxx", //对象中的对应字段
data: [
{
label: "案件名称:",
prop: "ajmc",
col: "3", col: "3",
}, },
{ {
label: "人员编号:", label: "案件编号:",
prop: "xyrxx.asjxgrybh", prop: "asjbh",
col: "3", col: "3",
}, },
{ {
label: "姓名:", label: "案件类别:",
prop: "xyrxx.xm", prop: "ajlbdmStr",
col: "3", col: "3",
}, },
{ {
label: "人员照片:", label: "现勘编号:",
prop: "xyrxx.zp", prop: "xkbh",
col: "3", col: "3",
}, },
{ {
label: "别名:", label: "发案日期:",
prop: "xyrxx.bmch", prop: "asjfssjfxAsjfskssjStr",
col: "3", col: "3",
}, },
{ {
label: "证件类型:", label: "发案地区划:",
prop: "xyrxx.cyzjCyzjmc", prop: "fxasjddXzqhdmStr",
col: "3", col: "3",
}, },
{ {
label: "证件号码:", label: "发案地详址:",
prop: "xyrxx.cyzjZjhm", prop: "fxasjddDzmc",
col: "10",
},
{
label: "简要案情:",
prop: "jyaq",
col: "10",
},
],
},
{
title: "比中信息", //如果不分小模块就删除title
id: 1,
// objStr: "zwbz", //对象中的对应字段
data: [
{
label: "现场指纹编号:",
prop: "xczwbh",
col: "3", col: "3",
}, },
{ {
label: "性别:", label: "捺印指纹编号:",
prop: "xyrxx.xbdmStr", prop: "nyzwbh",
col: "3", col: "3",
}, },
{ {
label: "出生日期:", label: "比中时间:",
prop: "xyrxx.csrq", prop: "bzsjStr",
col: "3", col: "3",
}, },
{ {
label: "国籍:", label: "比中单位名称:",
prop: "xyrxx.gjdmStr", prop: "bzdwGajgmc",
col: "3", col: "3",
}, },
{ {
label: "民族:", label: "比中人:",
prop: "xyrxx.mzdmStr", prop: "bzrXm",
col: "3", col: "3",
}, },
{ {
label: "籍贯:", label: "捺印单位名称:",
prop: "xyrxx.jgdmStr", prop: "nydmGajgmc",
col: "3", col: "3",
}, },
{ {
label: "政治面貌:", label: "捺印时间:",
prop: "xyrxx.zzmmdmStr", prop: "nysjStr",
col: "3", col: "3",
}, },
{ {
label: "学历:", label: "捺印指纹指位:",
prop: "xyrxx.xldmStr", prop: "nyzwxh",
col: "3", col: "3",
}, },
{ {
label: "职业:", label: "提取人:",
prop: "xyrxx.zylbdmStr", prop: "tqrXm",
col: "3", col: "3",
}, },
{ {
label: "工作单位:", label: "提取时间:",
prop: "xyrxx.gzdw", prop: "tqsjStr",
col: "3", col: "3",
}, },
{ {
label: "户籍地区划:", label: "提取单位名称:",
prop: "xyrxx.hjdzXzqhdmStr", prop: "tqdwGajgmc",
col: "3", col: "3",
}, },
{ {
label: "户籍地详址:", label: "现场指纹序号:",
prop: "xyrxx.hjdzDzmc", prop: "xczwxh",
col: "3", col: "3",
}, },
{ {
label: "现住址区划:", label: "现场指纹图片:",
prop: "xyrxx.xzzXzqhdmStr", prop: "",
col: "3", col: "3",
}, },
{ {
label: "现住址详址:", label: "捺印指纹图片:",
prop: "xyrxx.xzzDzmc", prop: "",
col: "3", col: "3",
}, },
{
label: "比中类型:",
prop: "type",
col: "3",
}
], ],
}, }
], ],
pageFooterProps: [ pageFooterProps: [
{ {
...@@ -292,7 +321,7 @@ export default { ...@@ -292,7 +321,7 @@ export default {
xczwDetail({ xczwDetail({
xxzjbh: _this.xxzjbh, xxzjbh: _this.xxzjbh,
}).then((res) => { }).then((res) => {
var result = res.data; var result = res.data.zwbz;
this.pageObject = result; this.pageObject = result;
_this.filterTreeCode(result); _this.filterTreeCode(result);
}); });
......
...@@ -58,7 +58,7 @@ module.exports = { ...@@ -58,7 +58,7 @@ module.exports = {
}, },
proxy: { proxy: {
"/apialy": { "/apialy": {
target: "http://39.99.155.173:8001/", //西藏: https://155.1.33.10:20010/ 阿里云:http://39.99.155.173:9022 target: "http://39.99.155.173:9022/", //西藏: https://155.1.33.10:20010/ 阿里云:http://39.99.155.173:9022
// ws: true, // ws: true,
changeOrigin: true, changeOrigin: true,
// secure: false, // secure: false,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment