Commit c851dcbd by 李姝悦

养老诈骗

parent c2989818
import { get, post, postJson } from "@/utils/http.js"; import { get, post, postJson,postform } from "@/utils/http.js";
import url from "@/api/base"; import url from "@/api/base";
//养老诈骗
export const ylzbQuery = params =>
postJson("/ylzpapi/ylzp/jbxs/queryjbxsListPage", params);
export const ylzbDetail = params =>
postJson("/ylzpapi/ylzp/jbxs/queryjbxsList", params);
// 获取所有标签
export const ylzpGjc = params =>
postJson('ylzpapi/ylzpGjc/query',params)
// 新增
export const ylzpGjcAdd = params =>
postJson('ylzpapi/ylzpGjc/save',params)
// 修改
export const ylzpGjcEdit = params =>
postJson('ylzpapi/ylzpGjc/update',params)
// 删除
export const ylzpGjcDel = params =>
postJson('ylzpapi/ylzpGjc/delete',params)
export const esAsjQuery = params => export const esAsjQuery = params =>
post("/api/newAsjbz/esAsjQuery", params); post("/api/newAsjbz/esAsjQuery", params);
......
...@@ -74,14 +74,14 @@ ...@@ -74,14 +74,14 @@
>{{ item.label }}</el-menu-item >{{ item.label }}</el-menu-item
> >
</el-submenu> </el-submenu>
<!-- <el-submenu index="3" id="menu3"> <el-submenu index="2" id="menu3">
<template slot="title"> <template slot="title">
<i :class="leftMenu[2].className"></i> <i :class="leftMenu[1].className" style="margin-left:0px;margin-right:25px"></i>
<span slot="title">{{ leftMenu[2].label }}</span> <span slot="title">{{ leftMenu[1].label }}</span>
</template> </template>
<el-menu-item <el-menu-item
:index="item.index" :index="item.index"
v-for="(item, index) in leftMenu[2].children" v-for="(item, index) in leftMenu[1].children"
:key="index" :key="index"
><i ><i
class="iconfont iconquanxianjiesuo" class="iconfont iconquanxianjiesuo"
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
></i ></i
>{{ item.label }}</el-menu-item >{{ item.label }}</el-menu-item
> >
</el-submenu> --> </el-submenu>
</el-menu> </el-menu>
</el-scrollbar> </el-scrollbar>
</div> </div>
...@@ -171,6 +171,23 @@ export default { ...@@ -171,6 +171,23 @@ export default {
}, },
], ],
}, },
{
id: "ylzpxs",
label: "养老诈骗线索",
newAuth: "M04",
index: "4",
className: "iconfont iconjibenxinxi",
children: [
{
id: "specialDataXsjs",
label: "线索检索",
auth: "M0401",
index: "specialDataXsjs",
className: "iconfont iconrizhi",
disabled: false,
},
],
},
// { // {
// id: "zdryTj", // id: "zdryTj",
// label: "重点人员统计", // label: "重点人员统计",
......
...@@ -253,5 +253,13 @@ export default [ ...@@ -253,5 +253,13 @@ export default [
}, },
component: () => import("@/views/zdrygl/myaddZdryInsert.vue") component: () => import("@/views/zdrygl/myaddZdryInsert.vue")
}, },
{
path: "/xsfxDetail",
name: "xsfxDetail",
meta: {
title: '线索分析编号详情'
},
component: () => import("@/views/ztsjfx/xsfxDetail.vue")
},
] ]
...@@ -16,6 +16,15 @@ const menuLayouts = [ ...@@ -16,6 +16,15 @@ const menuLayouts = [
}, },
component: () => import("@/views/ztsjfx/specialDataDyfx.vue") component: () => import("@/views/ztsjfx/specialDataDyfx.vue")
}, },
{
path: "/specialDataXsjs",
name: "specialDataXsjs",
meta: {
title: '专题数据线索分析'
},
component: () => import("@/views/ztsjfx/specialDataXsfx.vue")
},
]; ];
export default [{ export default [{
......
<template>
<div>
11111
</div>
</template>
<script>
import {
ylzbDetail,
} from "@/api/dictionaryCode.js";
export default {
data() {
return {
cxQueryField: [
{
title: '线索基本特征',
id: '1',
data: [
{
label: '线索编号',
prop: 'xsbh',
col: '3'
},
{
label: '举报事实发生地',
prop: 'jbssfsd',
col: '3'
},
{
label: '举报时间',
prop: 'tjsj',
col: '3'
},
]
},
{
title: '举报人特征',
id: '2',
data: [
{
label: '举报人姓名',
prop: 'jbrXm',
col: '3'
}, {
label: '举报人身份证号',
prop: 'jbrSfzh',
col: '3'
}, {
label: '举报人现住地',
prop: 'jbrXzz',
col: '3'
}, {
label: '被举报人姓名',
prop: 'bjbrXm',
col: '3'
}, {
label: '被举报单位名称',
prop: 'bjbdwMc',
col: '3'
},
]
},
{
title: '举报人单位特征',
id: '3',
data: [
{
label: '联系人姓名',
prop: 'jbdwLxrxm',
col: '3'
},
{
label: '单位名称',
prop: 'jbdwMc',
col: '3'
},
{
label: '单位地址',
prop: 'jbdwDz',
col: '3'
},
{
label: '联系电话',
prop: 'jbdwLxdh',
col: '3'
},
]
},
{
title: '被举报人特征',
id: '4',
data: [
{
label: '姓名',
prop: 'bjbrXm',
col: '3'
},
{
label: '性别',
prop: 'bjbrXb',
col: '3'
},
{
label: '职务',
prop: 'bjbrZw',
col: '3'
},
{
label: '联系电话',
prop: 'bjbrLxdh',
col: '3'
},
{
label: '现住址',
prop: 'bjbrXzz',
col: '3'
},
{
label: '户籍地',
prop: 'bjbrHjd',
col: '3'
},
]
},
{
title:'被举报单位特征',
id:'5',
data:[
{
label: '单位名称',
prop: 'bjbdwDwmc',
col: '3'
},
{
label: '联系电话',
prop: 'bjbdwLxdh',
col: '3'
},
{
label: '所在地',
prop: 'bjbdwSzd',
col: '3'
},
]
},
{
id:'6',
title:'违法犯罪特征',
data:[
{
label: '举报事实发生地',
prop: 'jbssfsd',
col: '3'
},
{
label: '起始年份',
prop: 'fzssQsnf',
col: '3'
},
{
label: '结束年份',
prop: 'fzssJsnf',
col: '3'
},
{
label: '是否是团伙',
prop: 'fzssIfth',
col: '3'
},
{
label: '团伙人数',
prop: 'fzssThrs',
col: '3'
},
{
label: '涉案金额(单位:元)',
prop: 'fzssSaje',
col: '3'
},
{
label: '受害人数量',
prop: 'fzssShrsl',
col: '3'
},
]
}
]
}
}
}
</script>
\ No newline at end of file
/* /*
* @Author: your name * @Author: your name
* @Date: 2021-07-13 10:11:15 * @Date: 2021-07-13 10:11:15
* @LastEditTime: 2022-04-01 11:35:44 * @LastEditTime: 2022-02-23 09:38:15
* @LastEditors: Please set LastEditors * @LastEditors: LYS
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \founder_vue\vue.config.js * @FilePath: \founder_vue\vue.config.js
*/ */
...@@ -66,8 +66,7 @@ module.exports = { ...@@ -66,8 +66,7 @@ module.exports = {
// } // }
// }, // },
"/api": { "/api": {
target: "http://47.92.48.137:8762/", //me target: "http://26.3.14.165:8762/", //me
// target: "http://26.3.14.165:8762/", //me
ws: true, ws: true,
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
...@@ -80,7 +79,16 @@ module.exports = { ...@@ -80,7 +79,16 @@ module.exports = {
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
'^/api2': '/' '^/api2': '/'
} },
},
"/ylzpapi": {
target: "http://26.3.14.165:8762/", //养老诈骗
ws: true,
changeOrigin: true,
pathRewrite: {
'^/ylzpapi': '/'
},
} }
}, },
}, },
......
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