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,32 +538,31 @@ export default { ...@@ -538,32 +538,31 @@ 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 = { let _this = this;
childrenXhrStr: "/apialy/thyp/getAccompliceById", _this.photoLoading = true;
photoXhrStr: null, this.callApi("/apialy/thyp/getXyrByZjhm", this.params).then((res) => {
params: params, _this.photoLoading = false;
nodedata: { debugger
type: "person", if (res.success && res.code == 200) {
id: 0, this.$message.success("获取成功");
name: scope.row.zjhm, setTimeout(() => {
children: true, _this.activeIdArr = [];
}, _this.nodeArr = [];
nodeClickBoo: true, _this.linkArr = [];
}; _this.linkAll = [];
sessionStorage.setItem("key", JSON.stringify(obj)); _this.genData = [];
this.$router.pushToTab({ _this.setGraphData();
path: "/ypEcharts", }, 200);
// key: data.row.bfkh, } else if (res.code == 207) {
query: { this.$notify.info({
title: "嫌疑人分析", title: "提示",
type: "xyrfx", message: res.message,
// type: "argxfx", duration: 3000,
types: "tonat", });
}, }
}); });
} 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