Commit cec0401e by gao_yingdong

画像工厂添加标识画像

parent ac5d6d11
......@@ -251,9 +251,13 @@ export default {
JSON.stringify(JSON.parse(sessionStorage.getItem("user")))
)
);
let path = `${this.$baseUrl.alyIP14}/#/jump?token=${base}&path=/rydaIndex/ryGl&zjhms=${this.form.asjbh}&zjhm=${
JSON.parse(sessionStorage.getItem("userInfo")).identitycard
}`;
let path = `${
this.$baseUrl.alyIP14
}/#/jump?token=${base}&path=/rydaIndex/ryGl&zjhms=${
this.form.asjbh
}&zjhm=${
JSON.parse(sessionStorage.getItem("userInfo")).identitycard
}`;
window.open(path, "_blank");
} else if (this.pages == "clhx") {
// let path = `http://39.99.155.173:9002/#/cardaIndex?cphm=${this.form.cphm}`;
......@@ -262,10 +266,41 @@ export default {
JSON.stringify(JSON.parse(sessionStorage.getItem("user")))
)
);
let path = `${this.$baseUrl.alyIP14}/#/jump?token=${base}&path=/cardaIndex&cphm=${this.form.cphm}&zjhm=${
JSON.parse(sessionStorage.getItem("userInfo")).identitycard
}`;
console.log(path);
let path = `${
this.$baseUrl.alyIP14
}/#/jump?token=${base}&path=/cardaIndex&cphm=${
this.form.cphm
}&zjhm=${
JSON.parse(sessionStorage.getItem("userInfo")).identitycard
}`;
console.log(path);
window.open(path, "_blank");
} else if (this.pages == "bshhx") {
// let path = `http://39.99.155.173:9002/#/cardaIndex?cphm=${this.form.cphm}`;
let content = "";
if (this.form.lx == "0") {
// 手机档案
content = "sjdaIndex";
} else if (this.form.lx == "1") {
// 邮箱档案
content = "yxdaIndex";
} else if (this.form.lx == "3") {
// 银行卡档案
content = "yhkdaIndex";
}
let base = encodeURIComponent(
secret.Encrypt(
JSON.stringify(JSON.parse(sessionStorage.getItem("user")))
)
);
let path = `${
this.$baseUrl.alyIP14
}/#/jump?token=${base}&path=/${content}&cphm=${
this.form.zjhm
}&zjhm=${
JSON.parse(sessionStorage.getItem("userInfo")).identitycard
}`;
console.log(path);
window.open(path, "_blank");
} else if (this.pages == "queryTdyp") {
// let path = `http://39.99.155.173:9003/#/ajbzDetail?asjbh=${this.form.asjbh}`;
......@@ -276,7 +311,7 @@ export default {
let path = `${base.alyIP8}/#/ajbzDetail?asjbh=${this.form.asjbh}`;
window.open(path, "_blank");
} else if (this.pages == "queryXsyp") {
debugger
debugger;
// let path = `http://47.92.225.109:8347/#/JumpPage/admin/admin/${this.form.asjbh}`;
let path = `${this.$baseUrl.alyIP9}/#/JumpPage/admin/admin/${this.form.asjbh}`;
// let path = `${base.alyIP12}/#/jumppage/admin/founder15/${this.form.asjbh}`;
......
......@@ -27,6 +27,15 @@ const menuLayouts = [
},
component: () => import("@/views/queryRyhx/queryClhx.vue")
},
{
path: "/queryBshhx",
name: "queryBshhx",
meta: {
title: '标识号画像',
auth: '5'
},
component: () => import("@/views/queryRyhx/queryBshhx.vue")
},
];
export default {
......
<template>
<div>
<SearchGraph
:formProp="formProp"
:formData="form"
childrenXhrStr="/apiXzxtGaw/ksh/getAjRwGxXx"
:nodeClickBoo="true"
:pages="pages"
placeholder="请输入案事件编号"
:params="params"
:nodedata="nodedata"
:unfoldParams="unfoldParams"
/>
</div>
</template>
<script>
import SearchGraph from "@c/SearchGraph.vue";
export default {
components: { SearchGraph },
data() {
return {
header: "画像工厂",
pages: "bshhx",
formProp: [
{
id: "lx",
type: "select",
placeholder: "请选择",
value: "",
selectData: [
{ value: "0", name: "手机号" },
{ value: "1", name: "邮箱号" },
// { value: "2", name: "人像" },
{ value: "3", name: "银行卡号" },
],
col: "3",
rules: [{ required: true, message: "请选择", trigger: "blur" }],
},
{
id: "zjhm",
type: "text",
placeholder: "请输入",
col: "3",
rules: [{ required: true, message: "请输入", trigger: "blur" }],
},
],
form: {
zjhm: "",
},
nodedata: {
type: "lawcase",
id: 0,
name: "zjhm",
children: true,
},
params: {
objectType: "lawcase",
zjhm: "zjhm",
parentId: 0,
},
unfoldParams: {
zjhm: "name",
objectType: "type",
parentId: "parentId",
},
Menu: [
{
id: "queryBshhx",
label: "标识号画像",
index: "queryBshhx",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
],
};
},
created() {
this.$store.commit("user/SET_Menu", this.Menu);
// this.$store.commit("user/SET_LeftMenu", this.leftMenus);
// this.$store.commit("user/SET_Header", this.header);
},
};
</script>
......@@ -95,6 +95,14 @@ export default {
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryBshhx",
label: "标识号画像",
index: "queryBshhx",
auth: "M0102",
className: "iconfont iconrizhi",
disabled: 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