Commit 6a519b72 by zhangzhijie

Merge remote-tracking branch 'origin/dev_xzeq' into dev_xzeq

parents 8e70cac3 ede3cb2e
...@@ -92,14 +92,14 @@ ...@@ -92,14 +92,14 @@
<p>高危</p> <p>高危</p>
</el-button> </el-button>
</div> </div>
<div class="leftToolbar2" ref="leftToolbar" v-if="showTuanhuo"> <div class="leftToolbar" ref="leftToolbar" v-if="showTuanhuo">
<el-button <el-button
class="toolBarItem" class="toolBarItem"
@click.native="toTuanhuo" @click.native="toTuanhuo"
title="获取团伙信息" title="获取团伙信息"
> >
<i class="el-icon-picture-outline-round"></i> <i class="el-icon-picture-outline-round"></i>
<p>团伙</p> <p>主嫌</p>
</el-button> </el-button>
</div> </div>
<div class="leftToolbar3" ref="leftToolbar" v-if="showNt"> <div class="leftToolbar3" ref="leftToolbar" v-if="showNt">
...@@ -538,33 +538,32 @@ export default { ...@@ -538,33 +538,32 @@ export default {
debugger; debugger;
if (this.objSfhm.name) { if (this.objSfhm.name) {
debugger; debugger;
let params = { this.params = {
id: this.objSfhm.zjhm, zjhm: this.objSfhm.name,
type: 'person',
};
let obj = {
childrenXhrStr: "/apialy/thyp/getAccompliceById",
photoXhrStr: null,
params: params,
nodedata: {
type: "person",
id: 0,
name: scope.row.zjhm,
children: true,
},
nodeClickBoo: true,
}; };
sessionStorage.setItem("key", JSON.stringify(obj)); let _this = this;
this.$router.pushToTab({ _this.photoLoading = true;
path: "/ypEcharts", this.callApi("/apialy/thyp/getXyrByZjhm", this.params).then((res) => {
// key: data.row.bfkh, _this.photoLoading = false;
query: { debugger
title: "嫌疑人分析", if (res.success && res.code == 200) {
type: "xyrfx", this.$message.success("获取成功");
// type: "argxfx", setTimeout(() => {
types: "tonat", _this.activeIdArr = [];
}, _this.nodeArr = [];
}); _this.linkArr = [];
_this.linkAll = [];
_this.genData = [];
_this.setGraphData();
}, 200);
} else if (res.code == 207) {
this.$notify.info({
title: "提示",
message: res.message,
duration: 3000,
});
}
});
} else { } else {
this.$message.error("请选择嫌疑人!"); this.$message.error("请选择嫌疑人!");
} }
......
...@@ -504,7 +504,8 @@ export default { ...@@ -504,7 +504,8 @@ export default {
this.type = 1 this.type = 1
} else { } else {
this.form.type = this.yhType ? this.yhType : 'dw' this.form.type = this.yhType ? this.yhType : 'dw'
this.form.unitcode = this.yhUnitcode ? this.yhUnitcode : '' // this.form.unitcode = this.yhUnitcode ? this.yhUnitcode : ''
this.form.unitcode = this.yhUnitcode ? this.yhUnitcode : this.form.unitcode
this.form.yhzh = this.yhZzhh ? this.yhZzhh : '' this.form.yhzh = this.yhZzhh ? this.yhZzhh : ''
} }
this.showLoading() this.showLoading()
...@@ -534,6 +535,7 @@ export default { ...@@ -534,6 +535,7 @@ export default {
this.tableLoading = true; this.tableLoading = true;
}, },
resetQuery(dwdm) { resetQuery(dwdm) {
debugger
this.form.unitcode = dwdm this.form.unitcode = dwdm
this.doQuery() this.doQuery()
}, },
......
...@@ -243,13 +243,13 @@ export default { ...@@ -243,13 +243,13 @@ export default {
}, },
// 可视化 // 可视化
toKshfx(scope) { toKshfx(scope) {
//
debugger; debugger;
let params = { let params = {
zjhm: scope.row.zjhm, id: scope.row.zjhm,
type: "person",
}; };
let obj = { let obj = {
childrenXhrStr: "/apialy/thyp/getXyrByZjhm", childrenXhrStr: "/apialy/thyp/getAccompliceById",
photoXhrStr: null, photoXhrStr: null,
params: params, params: params,
nodedata: { nodedata: {
...@@ -267,8 +267,7 @@ export default { ...@@ -267,8 +267,7 @@ export default {
query: { query: {
title: "群体发现分析", title: "群体发现分析",
type: "qtfxfx", type: "qtfxfx",
// type: "argxfx", types: 'tonat'
types: "tonat",
}, },
}); });
}, },
......
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