Commit 07de9fb5 by liupeng

修改了人力情报线索和工作中可以线索

parent 2d53c0f2
......@@ -1234,6 +1234,13 @@
style="margin-right: 16px"
>撤控信息</span
>
<span
v-if="pageBs == 'gzzkyxs'"
@click="stydyJudge(scope)"
class="edit"
style="margin-right: 16px"
>研判信息</span
>
<el-dropdown trigger="click" v-if="pageBs == 'gzrygl'">
<el-button type="primary" size="mini">
采集相关信息<i class="el-icon-arrow-down el-icon--right"></i>
......@@ -1848,6 +1855,9 @@ export default {
revokeLKG(scope) {
this.$emit("revokeLKG", scope.row.xxzjbh);
},
stydyJudge(scope) {
this.$emit("stydyJudge", scope.row);
},
guoDetail(scope, type) {
if (type == "guo") {
this.$router.pushToTab({
......
......@@ -8,6 +8,14 @@ const menuLayouts = [
},
component: () => import("@/views/ajzcgzxnpg/ajzcgzxnpg.vue")
},
{
path: "/qbxakcltj",
name: "qbxakcltj",
meta: {
title: '刑事案件勘察统计'
},
component: () => import("@/views/ajzcgzxnpg/qbxakcltj.vue")
},
];
export default {
......
......@@ -211,6 +211,7 @@ const xstgz = [
value: "",
placeholder: "请选择",
col: "2",
prop: 'checkEmpty',
},
{
name: "学历:",
......@@ -221,6 +222,7 @@ const xstgz = [
value: "",
placeholder: "请选择",
col: "2",
prop: 'checkEmpty',
},
{
name: "出生日期:",
......@@ -326,6 +328,7 @@ const ryxsgl = [
value: "",
placeholder: "请选择",
col: "2",
prop: 'checkEmpty',
},
{
name: "学历:",
......@@ -336,6 +339,7 @@ const ryxsgl = [
value: "",
placeholder: "请选择",
col: "2",
prop: 'checkEmpty',
},
{
name: "出生日期:",
......@@ -470,6 +474,7 @@ const jdcxsgl = [
value: "",
placeholder: "请选择",
col: "2",
prop: 'checkEmpty',
},
{
name: "物品特征描述:",
......@@ -489,6 +494,7 @@ const jdcxsgl = [
value: "",
placeholder: "请选择",
col: "2",
prop: 'checkEmpty',
},
]
//非机动车线索管理
......@@ -3474,6 +3480,20 @@ const gzzkyxs = [
// col: "2",
// },
{
name: "可疑线索标识号类型:",
id: "gzzkyxsbshdm",
type: "setValue",
codeTree: "",
codeOptions: [
{ label: "手机号", value: "01" },
{ label: "QQ号", value: "12" },
{ label: "微信号", value: "13" },
],
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "可疑线索标识号:",
id: "gzzkyxsbsh",
type: "text",
......
......@@ -13,6 +13,7 @@
@edit="edit"
@newlyLKG="newlyLKG"
@revokeLKG="revokeLKG"
@stydyJudge="stydyJudge"
ref="rightContent"
></right-content>
......@@ -432,6 +433,46 @@ export default {
}
});
},
stydyJudge(data) {
// console.log(data);
// console.log(data.gzzkyxsbsh);
// console.log(data.gzzkyxsbshdm);
let params = {
fsfh: data.gzzkyxsbsh,
bshlx: data.gzzkyxsbshdm,
};
let obj = {
childrenXhrStr: "/apialy/ztypxx/selectByQq",
photoXhrStr: null,
params: params,
nodedata: {
type: this.searchBshlx(data.gzzkyxsbshdm),
id: 0,
name: data.gzzkyxsbsh,
children: true,
},
nodeClickBoo: false,
};
sessionStorage.setItem("key", JSON.stringify(obj));
this.$router.pushToTab({
path: "/ypEcharts",
query: {
key: data.gzzkyxsbsh,
title: "话单分析",
},
});
},
searchBshlx(val) {
switch (val) {
case "01":
return "手机号";
case "12":
return "qq";
case "13":
return "wechat";
}
},
},
};
</script>
......
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