Commit c2129a11 by lp784568205

提交代码

parent 213a67dc
...@@ -9,8 +9,13 @@ ...@@ -9,8 +9,13 @@
</div> --> </div> -->
<el-tabs v-model="activeName" type="card" @tab-click="handleClick"> <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
<el-tab-pane label="标识号管理" name="bshgl"> <el-tab-pane label="标识号管理" name="bshgl">
<div class="Content paneDiv paneDiv2" style="margin: 8px 20px"> <div class="Content paneDiv paneDiv2" style="margin: 8px 20px 0 22px">
<div class="cxtjWrap"> <div class="cxtjWrap">
<el-row>
<el-col :span="24">
<span class="flTtitle" style="padding-left: 20px">查询条件</span>
</el-col>
</el-row>
<el-form <el-form
label-position="right" label-position="right"
label-width="140px" label-width="140px"
...@@ -224,7 +229,7 @@ ...@@ -224,7 +229,7 @@
<div class=""> <div class="">
<el-row style="width: 99%; margin: 0 auto"> <el-row style="width: 99%; margin: 0 auto">
<el-col :span="24"> <el-col :span="24">
<span class="flTtitle">案件信息</span> <span class="flTtitle">信息列表</span>
<!--可配置化图标--> <!--可配置化图标-->
<div class="total"> <div class="total">
<span> {{ tableDataLength }} </span> <span> {{ tableDataLength }} </span>
...@@ -246,10 +251,11 @@ ...@@ -246,10 +251,11 @@
</el-row> </el-row>
<!--表格--> <!--表格-->
<div v-loading="tableLoading">
<el-table <el-table
v-if="pageShow" v-if="pageShow"
id="ajzbQuery" id="ajzbQuery"
v-loading="tableLoading"
element-loading-text="拼命加载中" element-loading-text="拼命加载中"
:key="key" :key="key"
ref="itsmDataTable" ref="itsmDataTable"
...@@ -362,6 +368,7 @@ ...@@ -362,6 +368,7 @@
<!--分页--> <!--分页-->
<el-pagination <el-pagination
background background
v-if="activeName == 'bshgl'"
@size-change="handleSizeChange" @size-change="handleSizeChange"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
:current-page.sync="currentPage1" :current-page.sync="currentPage1"
...@@ -369,15 +376,20 @@ ...@@ -369,15 +376,20 @@
:page-size="page_size" :page-size="page_size"
layout="sizes,prev, pager, next" layout="sizes,prev, pager, next"
:total="tableDataLength" :total="tableDataLength"
v-if="pageShow"
> >
</el-pagination> </el-pagination>
</div> </div>
</div> </div>
</div>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="白名单管理" name="bmdgl"> <el-tab-pane label="白名单管理" name="bmdgl">
<div class="Content paneDiv paneDiv2" style="margin: 8px 20px"> <div class="Content paneDiv paneDiv2" style="margin: 8px 20px 0 22px">
<div class="cxtjWrap"> <div class="cxtjWrap">
<el-row>
<el-col :span="24">
<span class="flTtitle" style="padding-left: 20px">查询条件</span>
</el-col>
</el-row>
<el-form <el-form
label-position="right" label-position="right"
label-width="140px" label-width="140px"
...@@ -591,7 +603,7 @@ ...@@ -591,7 +603,7 @@
<div class=""> <div class="">
<el-row style="width: 99%; margin: 0 auto"> <el-row style="width: 99%; margin: 0 auto">
<el-col :span="24"> <el-col :span="24">
<span class="flTtitle">案件信息</span> <span class="flTtitle">信息列表</span>
<!--可配置化图标--> <!--可配置化图标-->
<div class="total"> <div class="total">
<span> {{ tableDataLength }} </span> <span> {{ tableDataLength }} </span>
...@@ -613,10 +625,11 @@ ...@@ -613,10 +625,11 @@
</el-row> </el-row>
<!--表格--> <!--表格-->
<div v-loading="tableLoading">
<el-table <el-table
v-if="pageShow" v-if="pageShow"
id="ajzbQuery" id="ajzbQuery2"
v-loading="tableLoading"
element-loading-text="拼命加载中" element-loading-text="拼命加载中"
:key="key" :key="key"
ref="itsmDataTable" ref="itsmDataTable"
...@@ -728,19 +741,20 @@ ...@@ -728,19 +741,20 @@
</el-table> </el-table>
<!--分页--> <!--分页-->
<el-pagination <el-pagination
v-if="activeName == 'bmdgl'"
background background
@size-change="handleSizeChangeBmd" @size-change="handleSizeChangeBmd"
@current-change="handleCurrentChangeBmd" @current-change="handleCurrentChangeBmd"
:current-page.sync="currentPage1" :current-page.sync="currentPage2"
:page-sizes="[10, 20, 50, 100]" :page-sizes="[10, 20, 50, 100]"
:page-size="page_size" :page-size="page_size2"
layout="sizes,prev, pager, next" layout="sizes,prev, pager, next"
:total="tableDataLength" :total="tableDataLength"
v-if="pageShow"
> >
</el-pagination> </el-pagination>
</div> </div>
</div> </div>
</div>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>
...@@ -797,7 +811,9 @@ export default { ...@@ -797,7 +811,9 @@ export default {
pageBszfc: this.pageBs, pageBszfc: this.pageBs,
tableLoading: true, //loading tableLoading: true, //loading
currentPage1: 1, //表格页码 currentPage1: 1, //表格页码
currentPage2: 1, //表格页码2
page_size: 10, //每页显示多少条 page_size: 10, //每页显示多少条
page_size2: 10, //每页显示多少条2
// pageShow: this.pageShow, //是否显示分页 // pageShow: this.pageShow, //是否显示分页
formData: this.cxFormData, //查询条件form formData: this.cxFormData, //查询条件form
propQueryField: this.cxQueryField, //查询条件 propQueryField: this.cxQueryField, //查询条件
...@@ -876,11 +892,13 @@ export default { ...@@ -876,11 +892,13 @@ export default {
bshlx: scope.bshlx, bshlx: scope.bshlx,
}).then((res) => { }).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.$message.success("生成线索组成功"); this.$message.success("添加白名单成功");
this.tableInfor = []; this.tableInfor = [];
window.location.reload(); // window.location.reload();
this.activeName = 'bmdgl'
this.doQueryBmd('yes')
} else if (res.data.result == "0") { } else if (res.data.result == "0") {
this.$message.error("生成线索组失败"); this.$message.error("添加白名单失败");
} }
}); });
}) })
...@@ -995,16 +1013,6 @@ export default { ...@@ -995,16 +1013,6 @@ export default {
showLoading() { showLoading() {
this.tableLoading = true; this.tableLoading = true;
}, },
handleSizeChange(val) {
this.page_size = val;
this.formData.rows = val;
this.doQuery("yes");
},
handleSizeChangeBmd(val) {
this.page_size = val;
this.formData.rows = val;
this.doQueryBmd("yes");
},
clearData() { clearData() {
let self = this; let self = this;
for (let i in self.formData) { for (let i in self.formData) {
...@@ -1042,13 +1050,25 @@ export default { ...@@ -1042,13 +1050,25 @@ export default {
}); });
return arr; return arr;
}, },
handleSizeChange(val) {
this.page_size = val;
this.formData.rows = val;
this.doQuery("yes");
},
//新加的切换页码
handleSizeChangeBmd(val) {
this.page_size2 = val;
this.formData.rows = val;
this.doQueryBmd("yes");
},
handleCurrentChange(val) { handleCurrentChange(val) {
this.currentPage1 = val; this.currentPage1 = val;
this.formData.page = val; this.formData.page = val;
this.doQuery("yes"); this.doQuery("yes");
}, },
//新家的翻页
handleCurrentChangeBmd(val) { handleCurrentChangeBmd(val) {
this.currentPage1 = val; this.currentPage2 = val;
this.formData.page = val; this.formData.page = val;
this.doQueryBmd("yes"); this.doQueryBmd("yes");
}, },
...@@ -1075,6 +1095,7 @@ export default { ...@@ -1075,6 +1095,7 @@ export default {
doQuery(flag) { doQuery(flag) {
let self = this, let self = this,
formDatas = {}; formDatas = {};
this.showLoading()
for (let i in self.formData) { for (let i in self.formData) {
if (i != "cxSj") { if (i != "cxSj") {
formDatas[i] = self.formData[i]; formDatas[i] = self.formData[i];
...@@ -1093,6 +1114,13 @@ export default { ...@@ -1093,6 +1114,13 @@ export default {
response.data.rows || response.data.data || response.data.result; response.data.rows || response.data.data || response.data.result;
self.tableDataLength = response.data.total; self.tableDataLength = response.data.total;
self.tPage = Math.ceil(response.data.total / self.page_size); self.tPage = Math.ceil(response.data.total / self.page_size);
self.tableData.map((item) => {
this.propQueryField[1].codeOptions.map((good) => {
if(item.bshlx == good.id) {
item.bshlxStr = good.label.substring(0,good.label.length-4)
}
})
})
self.closeLoading(); self.closeLoading();
} else { } else {
/*self.$message({ /*self.$message({
...@@ -1104,6 +1132,7 @@ export default { ...@@ -1104,6 +1132,7 @@ export default {
}); });
} }
}, },
doQueryBmd(flag) { doQueryBmd(flag) {
this.showLoading(); this.showLoading();
let self = this, let self = this,
...@@ -1119,6 +1148,8 @@ export default { ...@@ -1119,6 +1148,8 @@ export default {
} }
} }
if (flag) { if (flag) {
formDatas.page = this.currentPage2
formDatas.rows = this.page_size2
post(this.cxUrlBmd, formDatas).then((response) => { post(this.cxUrlBmd, formDatas).then((response) => {
if (response.code == 200) { if (response.code == 200) {
debugger; debugger;
...@@ -1126,6 +1157,13 @@ export default { ...@@ -1126,6 +1157,13 @@ export default {
response.data.rows || response.data.data || response.data.result; response.data.rows || response.data.data || response.data.result;
self.tableDataLength = response.data.total; self.tableDataLength = response.data.total;
self.tPage = Math.ceil(response.data.total / self.page_size); self.tPage = Math.ceil(response.data.total / self.page_size);
self.tableData.map((item) => {
this.propQueryField[1].codeOptions.map((good) => {
if(item.bshlx == good.id) {
item.bshlxStr = good.label.substring(0,good.label.length-4)
}
})
})
self.closeLoading(); self.closeLoading();
} else { } else {
/*self.$message({ /*self.$message({
...@@ -1233,11 +1271,12 @@ export default { ...@@ -1233,11 +1271,12 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
@import "@/assets/styles/rightContent.scss"; @import "@/assets/styles/rightContent.scss";
/deep/.el-tabs__header.is-top { /deep/.el-tabs__header.is-top {
margin-top: 20px; margin-top: 10px;
margin-bottom: -13px; margin-bottom: -13px;
background-color: #fff; background-color: #fff;
width: 97.5%; width: 97.2%;
margin-left: 20px; margin-left: 22px;
/*margin-right: 22px;*/
border-bottom: 0px solid; border-bottom: 0px solid;
border-radius: 8px; border-radius: 8px;
z-index: 200; z-index: 200;
......
<template> <template>
<div class="Content"> <div class="Content">
<right-content :cxFormData="cxFormData" <right-content :cxFormData="cxFormData" :cxQueryField="cxQueryField" :cxDefaultFormThead="cxDefaultFormThead"
:cxQueryField="cxQueryField" :cxUrl="cxUrl" :pageBs='pageBs' ref="rightContent"></right-content>
:cxDefaultFormThead="cxDefaultFormThead"
:cxUrl="cxUrl"
:pageBs='pageBs'
ref="rightContent"
></right-content>
</div> </div>
</template> </template>
...@@ -22,13 +17,15 @@ export default { ...@@ -22,13 +17,15 @@ export default {
}, },
data() { data() {
return { return {
pageBs:'queryAj', pageBs: 'queryAj',
cxFormData: { cxFormData: {
asjbh: '', asjbh: '',
ajmc: '', ajmc: '',
asjkssj: '', asjkssj: '',
asjjssj: '', asjjssj: '',
ladw: '', ladwdm: '',
limit: 10,
page: 1,
}, },
cxQueryField: [ cxQueryField: [
{ {
...@@ -93,11 +90,20 @@ export default { ...@@ -93,11 +90,20 @@ export default {
prop: 'ajlbdmMc', prop: 'ajlbdmMc',
}, },
{ {
label: '小案类别', label: '小类案别代码',
prop: 'ajzlb',
},
{
label: '小类案别',
prop: 'ajzlbMc', prop: 'ajzlbMc',
}, },
{ {
label: '细案类别', label: '细类案别代码',
prop: 'ajxzlb',
},
{
label: '细类案别',
prop: 'ajxzlbMc', prop: 'ajxzlbMc',
}, },
{ {
...@@ -137,7 +143,7 @@ export default { ...@@ -137,7 +143,7 @@ export default {
this.$route.query.asjkssj this.$route.query.asjkssj
); );
this.$set(this.cxFormData, "asjjssj", this.$route.query.asjjssj); this.$set(this.cxFormData, "asjjssj", this.$route.query.asjjssj);
this.$set(this.cxFormData, "ladw", this.$route.query.ladw); this.$set(this.cxFormData, "ladwdm", this.$route.query.ladw);
}, },
...@@ -147,6 +153,7 @@ export default { ...@@ -147,6 +153,7 @@ export default {
.el-dialog__body { .el-dialog__body {
padding: 10px 15px !important; padding: 10px 15px !important;
} }
.rightContent .el-input__inner, .rightContent .el-input__inner,
#formCommonPage .el-input__inner { #formCommonPage .el-input__inner {
height: 32px; height: 32px;
...@@ -154,38 +161,47 @@ export default { ...@@ -154,38 +161,47 @@ export default {
font-family: inherit; font-family: inherit;
background: #f3f3f3; background: #f3f3f3;
} }
.el-table__header-wrapper th, .el-table__header-wrapper th,
.el-table__header-wrapper tr { .el-table__header-wrapper tr {
background: #f4f6f7; background: #f4f6f7;
} }
.rightContent .el-input__icon, .rightContent .el-input__icon,
#formCommonPage .el-input__icon, #formCommonPage .el-input__icon,
.el-input__suffix-inner { .el-input__suffix-inner {
line-height: 36px; line-height: 36px;
} }
.rightContent .el-range-separator { .rightContent .el-range-separator {
position: relative; position: relative;
top: -4px; top: -4px;
} }
.rightContent .el-textarea__inner, .rightContent .el-textarea__inner,
#formCommonPage .el-textarea__inner { #formCommonPage .el-textarea__inner {
width: 100%; width: 100%;
font-family: inherit; font-family: inherit;
} }
.rightContent .el-range-input, .rightContent .el-range-input,
#formCommonPage .el-range-input { #formCommonPage .el-range-input {
vertical-align: top; vertical-align: top;
} }
.rightContent .el-date-editor .el-range__close-icon { .rightContent .el-date-editor .el-range__close-icon {
margin-top: -4px; margin-top: -4px;
} }
.rightContent .el-form-item__error { .rightContent .el-form-item__error {
left: calc(66% - 27px); left: calc(66% - 27px);
top: 12px; top: 12px;
} }
.success-row { .success-row {
background-color: #fbf9f4 !important; background-color: #fbf9f4 !important;
} }
.Content .el-input, .Content .el-input,
.Content .el-date-editor--daterange.el-input__inner { .Content .el-date-editor--daterange.el-input__inner {
width: 100% !important; width: 100% !important;
......
...@@ -333,7 +333,7 @@ export default { ...@@ -333,7 +333,7 @@ export default {
// }, // },
{ {
label: "串并依据", label: "串并依据",
prop: "bshlx(cbxgfwbzh)", prop: "bshlx_cbxgfwbzh",
}, },
{ {
label: "串并时间", label: "串并时间",
......
...@@ -70,7 +70,7 @@ export default { ...@@ -70,7 +70,7 @@ export default {
// }, // },
{ {
label: '标识号类型', label: '标识号类型',
prop: 'bshlx' prop: 'bshlxStr'
// width: '280' // width: '280'
}, },
{ {
......
...@@ -204,7 +204,7 @@ export default { ...@@ -204,7 +204,7 @@ export default {
}, },
{ {
label: "串并依据", label: "串并依据",
prop: "ryXm(rySfhm)", prop: "ryXm_rySfhm",
}, },
// { // {
// label: "嫌疑人数", // label: "嫌疑人数",
......
...@@ -204,7 +204,7 @@ export default { ...@@ -204,7 +204,7 @@ export default {
}, },
{ {
label: "串并依据", label: "串并依据",
prop: "ryXm(rySfhm)", prop: "ryXm_rySfhm",
}, },
// { // {
// label: "嫌疑人数", // label: "嫌疑人数",
......
...@@ -130,18 +130,51 @@ ...@@ -130,18 +130,51 @@
codeTree: "CODE_AJLB_bz", codeTree: "CODE_AJLB_bz",
}, },
{ {
name: "破案状态", name: "发案时间",
id: "pazt", id: "fasjStart",
type: "radio", id2: "fasjEnd",
type: "zdyDate",
value: "", value: "",
placeholder: "",
col: "3", col: "3",
radioData: [
{ label: "所有", val: "" },
{ label: "已破", val: "0" },
{ label: "未破", val: "1" },
],
}, },
{
name: "案件数",
id: "ajsStart",
id2: "ajsEnd",
type: "zdyText",
value: "",
placeholder: "请输入",
value2: "",
placeholder2: "请输入",
col: "3",
},
{
name: "嫌疑人数",
id: "xyrStart",
id2: "xyrEnd",
type: "zdyText",
value: "",
placeholder: "请输入",
value2: "",
placeholder2: "请输入",
col: "3",
},
{
name: "串并时间",
id: "djsjStart",
id2: "djsjEnd",
type: "zdyDate",
value: "",
col: "3",
},
// { // {
// name: "标识号", // name: "标识号",
// id: "cbxgfwbzh", // id: "cbxgfwbzh",
...@@ -163,41 +196,11 @@ ...@@ -163,41 +196,11 @@
// codeOptions: [], // codeOptions: [],
// codeTree: "CODE_BLHLX", // codeTree: "CODE_BLHLX",
// }, // },
{
name: "嫌疑人数",
id: "xyrStart",
id2: "xyrEnd",
type: "zdyText",
value: "",
placeholder: "请输入",
value2: "",
placeholder2: "请输入",
col: "3",
},
{
name: "案件数",
id: "ajsStart",
id2: "ajsEnd",
type: "zdyText",
value: "",
placeholder: "请输入",
value2: "",
placeholder2: "请输入",
col: "3",
},
{
name: "案件线索来源",
id: "cbxsly",
type: "radio",
value: "",
placeholder: "",
col: "3",
radioData: [
{ label: "全部", val: "" },
{ label: "本辖区", val: "bxq" },
{ label: "全省 ", val: "qs" },
],
},
...@@ -238,6 +241,7 @@ ...@@ -238,6 +241,7 @@
placeholder2: "请输入", placeholder2: "请输入",
col: "3", col: "3",
}, },
{ {
name: "破案数", name: "破案数",
id: "paStart", id: "paStart",
...@@ -249,13 +253,19 @@ ...@@ -249,13 +253,19 @@
placeholder2: "请输入", placeholder2: "请输入",
col: "3", col: "3",
}, },
{ {
name: "发案时间", name: "破案状态",
id: "fasjStart", id: "pazt",
id2: "fasjEnd", type: "radio",
type: "zdyDate",
value: "", value: "",
placeholder: "",
col: "3", col: "3",
radioData: [
{ label: "所有", val: "" },
{ label: "已破", val: "0" },
{ label: "未破", val: "1" },
],
}, },
...@@ -271,13 +281,19 @@ ...@@ -271,13 +281,19 @@
}, },
{ {
name: "串并时间", name: "案件线索来源",
id: "djsjStart", id: "cbxsly",
id2: "djsjEnd", type: "radio",
type: "zdyDate",
value: "", value: "",
placeholder: "",
col: "3", col: "3",
radioData: [
{ label: "全部", val: "" },
{ label: "本辖区", val: "bxq" },
{ label: "全省 ", val: "qs" },
],
}, },
// { // {
// name: "标识号类型", // name: "标识号类型",
...@@ -312,7 +328,7 @@ ...@@ -312,7 +328,7 @@
{ {
label: "线索组名称", label: "线索组名称",
prop: "cbajAjmc", prop: "cbajAjmc",
width: "250", width: "450",
}, },
{ {
label: "案件数", label: "案件数",
...@@ -344,8 +360,8 @@ ...@@ -344,8 +360,8 @@
// }, // },
{ {
label: "串并依据", label: "串并依据",
prop: "bshlx(cbxgfwbzh)", prop: "bshlx_cblx",
width: "200",
}, },
{ {
label: "串并时间", label: "串并时间",
......
...@@ -6,29 +6,36 @@ ...@@ -6,29 +6,36 @@
color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件</span> color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件</span>
<span>{{ titleProp }}</span> <span>{{ titleProp }}</span>
</div> </div>
<div class="header" v-if="bzType == '1'"> <div class="header" v-else-if="bzType == '1'">
<span><font color="#E6A23C">{{routeQuery.djsj}}</font>串并<font <span><font color="#E6A23C">{{routeQuery.djsj}}</font>串并<font
color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件</span> color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件</span>
<span>{{ titleProp }}</span> <span>{{ titleProp }}</span>
</div> </div>
<div class="header" v-if="type == 'zwbzcbxs'">
<div class="header" v-else-if="type == 'zwbzcbxs'">
<span><font color="#E6A23C"></font><font color="#E6A23C">{{routeQuery.djsj}}</font>通过<font color="#E6A23C"></font><font <span><font color="#E6A23C"></font><font color="#E6A23C">{{routeQuery.djsj}}</font>通过<font color="#E6A23C"></font><font
color="#E6A23C">{{routeQuery.ryXm}}({{routeQuery.cbxgfwbzh}})</font></font>串并<font color="#E6A23C">{{routeQuery.ryXm}}({{routeQuery.cbxgfwbzh}})</font></font>串并<font
color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件</span> color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件</span>
<span>{{ titleProp }}</span> <span>{{ titleProp }}</span>
</div> </div>
<div class="header" v-if="type == 'dwbzcbxs'"> <div class="header" v-else-if="type == 'dwbzcbxs'">
<span><font color="#E6A23C"></font><font color="#E6A23C">{{routeQuery.djsj}}</font>通过<font color="#E6A23C">{{routeQuery.bshlx}}</font><font <span><font color="#E6A23C"></font><font color="#E6A23C">{{routeQuery.djsj}}</font>通过<font color="#E6A23C">{{routeQuery.bshlx}}</font><font
color="#E6A23C">{{ JSON.parse(routeQuery.cbxgfwbzh).join(",") }}</font></font>串并<font color="#E6A23C">{{ JSON.parse(routeQuery.cbxgfwbzh).join(",") }}</font></font>串并<font
color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件</span> color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件</span>
<span>{{ titleProp }}</span> <span>{{ titleProp }}</span>
</div> </div>
<div class="header" v-if="type == 'rgcb'"> <div class="header" v-else-if="type == 'rgcb'">
<span><font color="#E6A23C">{{routeQuery.djsj}}</font>通过<font color="#E6A23C">人工</font> <span><font color="#E6A23C">{{routeQuery.djsj}}</font>通过<font color="#E6A23C">人工</font>
串并<font color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件 串并<font color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件
</span> </span>
<span>{{ titleProp }}</span> <span>{{ titleProp }}</span>
</div> </div>
<div class="header" v-else>
<span><font color="#E6A23C"></font><font color="#E6A23C">{{routeQuery.djsj}}</font>通过<font color="#E6A23C"></font><font
color="#E6A23C">{{routeQuery.ryXm}}{{routeQuery.bshlx}}({{routeQuery.cbxgfwbzh}})</font></font>串并<font
color="#E6A23C">{{routeQuery.cbxsypCbajs}}</font>起案件</span>
<span>{{ titleProp }}</span>
</div>
<right-content <right-content
:pageBs="pageBs" :pageBs="pageBs"
:header="header" :header="header"
......
...@@ -336,7 +336,7 @@ ...@@ -336,7 +336,7 @@
// }, // },
{ {
label: "串并依据", label: "串并依据",
prop: "bshlx(cbxgfwbzh)", prop: "bshlx_cbxgfwbzh",
}, },
{ {
label: "串并时间", label: "串并时间",
......
...@@ -204,7 +204,7 @@ export default { ...@@ -204,7 +204,7 @@ export default {
}, },
{ {
label: "串并依据", label: "串并依据",
prop: "ryXm(rySfhm)", prop: "ryXm_rySfhm",
}, },
// { // {
// label: "嫌疑人数", // label: "嫌疑人数",
......
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