Commit 6ff04805 by liyuhang19990520

修改

parent bf6c65ab
......@@ -29,7 +29,7 @@ export default {
var params = new FormData();
var self = this;
if (setting.packType == "aly") {
params.append("zjhm", "142302198701012413");
params.append("zjhm", "430000000000000000");
} else {
params.append("zjhm", "152624198410061898");
}
......
......@@ -526,7 +526,7 @@
</div>
</el-upload>
<el-button
v-if="moduleName !== 'hnsjfx'"
v-if="moduleName !== 'hnsjfx' && cxUrl != '/api/ksh/getQzList'"
type="warning"
size="mini"
@click="goDetail(scope.row, moduleName)"
......@@ -539,6 +539,13 @@
@click="exportFile(scope.row)"
>导出</el-button
>
<el-button
v-if="cxUrl == '/api/ksh/getQzList'"
type="warning"
size="mini"
@click="goDetailToqzkx(scope.row)"
>可视化分析</el-button
>
</div>
</template>
</el-table-column>
......@@ -806,6 +813,35 @@ export default {
//let path = `http://65.26.2.173:1005/#/jumplogin?idcard=${skjm}&toType=hnShceThksh&objectValue=${scope.thbh}`;
window.open(path, "_blank");
},
goDetailToqzkx(scope){
console.log(scope)
let params = {
value: scope.qzbh
};
let obj = {
childrenXhrStr: '/api/ksh/getQzByQzbhstest',
params: params,
nodedata: {
type: "qq",
id: null,
name: scope.qzbh,
children: true,
},
unfoldParams: {
value: 'name'
},
nodeClickBoo: true,
};
let key = util.uuid();
localStorage.setItem(key, JSON.stringify(obj));
this.$router.pushToTab({
path: "/echarts",
query: {
key: key,
title: this.$route.meta.title,
},
});
},
goDetail(scope, moduleName) {
if ( moduleName == "cqthfx") {
let params = {
......
......@@ -149,6 +149,12 @@ export default {
index: "thfx",
disabled: false,
},
{
id: "xnsffx",
label: "虚拟身份分析",
index: "xnsffx",
disabled: false,
},
],
},
{
......
......@@ -49,6 +49,14 @@ const createArr = [
component: () => import("@/views/yppt/jztpfx.vue")
},
{
path: "/xnsffx",
name: "xnsffx",
meta: {
title: '虚拟身份分析'
},
component: () => import("@/views/yppt/xnsffx.vue")
},
{
path: "/ragxfx",
name: "ragxfx",
meta: {
......
......@@ -22,5 +22,5 @@ module.exports = {
// 湖南可视化
BaseURL3: "/hnapi",
// 打包方式阿里云(aly) 和 公安网(gaw)
packType: 'gaw'
packType: 'aly'
}
......@@ -6,6 +6,11 @@
:cxUrl="cxUrl"
:moreUrl="moreUrl"
:moreParams="moreParams"
:tableProps="{
moreSelect: true,
publicBtn: true,
detailBtn: true
}"
></right-content>
</div>
</template>
......
<!--
* @Author: your name
* @Date: 2021-07-20 14:38:05
* @LastEditTime: 2021-08-11 16:24:29
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \founder_vue\src\views\yppt\argxfx.vue
-->
<template>
<div>
<SearchGraph
:formProp="formProp"
:formData="form"
childrenXhrStr="/api/ksh/getXnsfcetest"
:params="params"
:nodedata="nodedata"
:nodeClickBoo="true"
:unfoldParams="{value: 'name'}"
/>
</div>
</template>
<script>
import SearchGraph from "@c/SearchGraph.vue";
export default {
components: { SearchGraph },
data() {
return {
nodedata: {
type: 'person',
id: 0,
name: 'value',
children: true,
},
formProp: [
{
id: "value",
type: "text",
placeholder: "请输入标识号",
col: "3",
rules: [{ required: true, message: "请输入标识号", trigger: "blur" }],
},
],
form: {
value: "",
},
params: {
value: "value",
},
};
},
};
</script>
......@@ -56,7 +56,7 @@ module.exports = {
proxy: {
"/api": {
// target: "http://26.120.5.129:8007/", //公安网
target: setting.packType == 'aly' ? "http://192.168.128.118:8501/" : "http://77.1.24.143:8501/", //阿里云 and 公安网
target: setting.packType == 'aly' ? "http://192.168.0.103:8501/" : "http://77.1.24.143:8501/", //阿里云 and 公安网
ws: true,
changeOrigin: true,
pathRewrite: {
......
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