Commit cfbd3cdd by mr.wang

Merge branch 'dev_xzeq' of http://47.92.108.28/changchao/founder_vue into dev_new

parents 0d90dd16 09e24412
......@@ -50,3 +50,6 @@ export const getTbYwMxclzx = params =>
//查询模型策略基本信息
export const wjpjwszxGetTbYwMxclzx = params =>
post(`${base.alyIP}/wjpjwszx/getTbYwMxclzx`, params);
//wjpjDwfxdb
export const wjpjDwfxdb = params =>
post(`${base.alyIP}/wjpjwszx/wjpjDwfxdb`, params);
......@@ -32,8 +32,8 @@ export const getZdryTqByZjhm = params =>
postform(`${base.alyIP}/zdryxx/getZdryTqByZjhm`, params);
//阵地从业人员推送至刑嫌调控
export const updateZdryxxTxxtk = params =>
postform(`${base.alyIP}/zdryxx/updateZdryxx`, params);
// export const updateZdryxxTxxtk = params =>
// postform(`${base.alyIP}/zdryxx/updateZdryxx`, params);
//阵地从业人员信息推送
export const getryxxtsByZjhm = params =>
postform(`${base.alyIP}/zdryxx/getryxxtsByZjhm`, params);
......@@ -628,6 +628,7 @@ export default {
);
post(this.childrenUrl, formData).then((response) => {
if (response.code == 200) {
debugger
self.tableData[index].children = response.data.data;
self.closeLoading();
} else {
......
......@@ -1575,6 +1575,14 @@ export default {
) {
this.$message.error("请填写线索提供者及可疑人员");
return;
} else if(self.pageBs && self.pageBs == 'adjustZdxxgl' && self.formLabelAlign.zdryxxgl[0].xm == "") {
this.$message.error("请填写阵地管理人员");
return;
} else if(self.pageBs && self.pageBs == 'addzdcyryxx' && self.formLabelAlign.ryjl[0].dwmc == "") {
this.$message.error("请填写从业人员及人员经历");
} else if(self.pageBs && self.pageBs == 'adjustZdxsxx' && (self.formLabelAlign.tgz[0].xm == "" || self.formLabelAlign.kyry[0].xm == "")) {
this.$message.error("请填写线索提供者及可疑人员");
return;
} else {
//另一种状态保存
if (flag === "draft") {
......
......@@ -489,9 +489,8 @@
pageBs != 'dswtzxxlbxx' &&
pageBs != 'gzzkyxs' &&
pageBs != 'rwgl' &&
pageBs != 'querySdtdyp' &&
pageBs != 'querySdtdyp' &&
pageBs != 'queryXshbZd'
"
>
<i class="el-icon-plus"></i> 新增
......@@ -754,7 +753,7 @@
<template slot-scope="props">
<el-table
v-loading="loadingZxzjlList"
:data="tableData1"
:data="props.row.children"
stripe
style="width: 100%"
>
......@@ -769,7 +768,7 @@
<!-- <el-button type="success" @click="sprops(scope)">
可视化分析
</el-button> -->
<el-button type="success" @click="sprops(scope)">
<el-button type="success" @click="sprops(scope)">
跳转脑图
</el-button>
</template>
......@@ -807,7 +806,6 @@
pageBs == 'queryRole' ||
pageBs == 'queryFzth' ||
pageBs == 'queryZdjyhd' ||
pageBs == 'zdxxgl' ||
pageBs == 'zdryGl' ||
pageBs == 'queryGnxnpg' ||
pageBs == 'queryXsxx' ||
......@@ -1379,7 +1377,6 @@
pageBs == 'queryCheckBj' ||
pageBs == 'queryWl' ||
pageBs == 'queryDna' ||
pageBs == 'queryZj' ||
pageBs == 'queryZw' ||
pageBs == 'wfqdzczl' ||
pageBs == 'xywspdzczl' ||
......@@ -1518,6 +1515,7 @@
pageBs == 'queryZdssww' ||
pageBs == 'queryZdsszj' ||
pageBs == 'querySdtdyp' ||
pageBs == 'queryZj' ||
pageBs == 'queryZdssydtxsb' ||
pageBs == 'qyeryrlqbxsGl'
)
......@@ -1724,6 +1722,7 @@
pageBs != 'querySdtdyp' &&
pageBs != 'queryThxs' &&
pageBs != 'queryZdssydtxsb' &&
pageBs != 'queryZj' &&
pageBs != 'qyeryrlqbxsGl'
"
>删除</span
......@@ -2189,6 +2188,7 @@ import SelectTreeDialog from "@c/treeCode_components.vue";
import LazySelectTreeDialog from "@c/lazy_treeCode_components.vue";
import Http from "@/utils/http.js";
import axios from "axios";
import { post } from "@/utils/http.js";
import url from "@/api/base";
import qs from "qs";
import {
......@@ -2247,6 +2247,7 @@ export default {
type: Array,
default: () => [],
}, //信息列表图片
childrenUrl: String,
tableData1: {
type: Array,
default: () => [],
......@@ -2355,7 +2356,24 @@ export default {
return dt.split(",");
},
rowExpand(row, expandedRows) {
this.$emit("rowExpand", row);
// this.$emit("rowExpand", row);
var self = this;
self.showLoading();
let formData = {};
formData.ssrwbh = row.xxzjbh;
var index = self.tableData.findIndex((item) => item.xxzjbh == row.xxzjbh);
post(this.childrenUrl, formData).then((response) => {
if (response.code == 200) {
self.tableData[index].children = response.data.rows;
self.closeLoading();
} else {
/*self.$message({
type: "error",
message: response.data.message
});*/
self.closeLoading();
}
});
},
switchingConditions() {
this.toggleZd = !this.toggleZd;
......@@ -3118,6 +3136,10 @@ export default {
postform(`${url.alyIP}${this.cxUrl}`, formDatas).then(
(response) => {
if (response.success === true) {
let result = response.data.data || response.data.rows;
result.forEach((item) => {
item.children = [];
});
self.tableData = response.data.rows;
self.tableDataLength = response.data.total;
self.tPage = Math.ceil(response.data.total / self.page_size);
......@@ -3142,6 +3164,10 @@ export default {
form.append("jsonStr", JSON.stringify(jsonStr));
postform(`${url.alyIP2}${this.cxUrl}`, form).then((response) => {
if (response.success === true) {
let result = response.data.data || response.data.rows;
result.forEach((item) => {
item.children = [];
});
self.tableData = response.data.rows;
self.tableDataLength = response.data.total;
self.tPage = Math.ceil(response.data.total / self.page_size);
......@@ -3256,6 +3282,10 @@ export default {
// }
// }
});
let result = response.data.data || response.data.rows;
result.forEach((item) => {
item.children = [];
});
self.yqyhz = response.data.yh;
self.sfkjs = response.data.sfkjs;
self.tableData = response.data.rows;
......
......@@ -79,13 +79,13 @@ const mainRouters = [
...xxtkRoutes,
hxgcRoutes,
kyxsRoutes,
bbkwtxxRoutes,
...bbkwtxxRoutes,
gnxnpgRoutes,
zdxsxxRoutes,
zdryRoutes,
...rlqbxsRoutes,
xsjsdbRoutes,
zjclRoutes,
...zjclRoutes,
userAuthRoutes,
grxnpgRoutes,
dwxnpgRoutes,
......
......@@ -16,28 +16,31 @@ const menuLayouts = [
},
component: () => import("@/views/zdxx/bbkwpxx/queryBbkwpxx.vue")
},
{
path: "/adjustBbkwpxx",
name: "adjustBbkwpxx",
meta: {
isAdd: true,
title: '被布控物品信息'
},
component: () => import("@/views/zdxx/bbkwpxx/adjustBbkwpxx.vue")
},
{
path: "/bbkwpxxDetail",
name: "bbkwpxxDetail",
meta: {
title: '被布控物品信息详情'
},
component: () => import("@/views/zdxx/bbkwpxx/bbkwpxxDetail.vue")
},
];
export default {
export default [{
path: "/right",
component: menuLayout,
children: [...menuLayouts]
};
\ No newline at end of file
},
{
path: "/adjustBbkwpxx",
name: "adjustBbkwpxx",
meta: {
isAdd: true,
title: '被布控物品信息'
},
component: () => import("@/views/zdxx/bbkwpxx/adjustBbkwpxx.vue")
},
{
path: "/bbkwpxxDetail",
name: "bbkwpxxDetail",
meta: {
title: '被布控物品信息详情'
},
component: () => import("@/views/zdxx/bbkwpxx/bbkwpxxDetail.vue")
},
];
\ No newline at end of file
......@@ -49,14 +49,7 @@ const menuLayouts = [
},
component: () => import("@/views/rlqbxsxx/shrzList.vue")
},
{
path: "/detailRlqbxs",
name: "detailRlqbxs",
meta: {
title: '人力情报线索信息详情'
},
component: () => import("@/views/rlqbxsxx/detailRlqbxs.vue")
},
{
path: "/rlqbtj",
name: "rlqbtj",
......@@ -81,5 +74,12 @@ export default [{
},
component: () => import("@/views/rlqbxsxx/adjustRlqbxs.vue")
},
{
path: "/detailRlqbxs",
name: "detailRlqbxs",
meta: {
title: '人力情报线索信息详情'
},
component: () => import("@/views/rlqbxsxx/detailRlqbxs.vue")
},
];
\ No newline at end of file
import menuLayout from "@/layout/menuLayout.vue";
const menuLayouts = [
{
path: "/addZdssdy",
name: "addZdssdy",
meta: {
title: '损失弹药'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssdy/addZdssdy.vue")
},
{
path: "/addZdssfjdc",
name: "addZdssfjdc",
meta: {
title: '损失非机动车'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssfjdc/addZdssfjdc.vue")
},
{
path: "/addZdssjdc",
name: "addZdssjdc",
meta: {
title: '损失机动车'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssjdc/addZdssjdc.vue")
},
{
path: "/addZdsskl",
name: "addZdsskl",
meta: {
title: '损失卡类'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/sskl/addZdsskl.vue")
},
{
path: "/addZdssqtwp",
name: "addZdssqtwp",
meta: {
title: '损失其他物品'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssqtwp/addZdssqtwp.vue")
},
{
path: "/addZdssqz",
name: "addZdssqz",
meta: {
title: '损失枪支'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssqz/addZdssqz.vue")
},
{
path: "/addZdssww",
name: "addZdssww",
meta: {
title: '损失文物'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssww/addZdssww.vue")
},
{
path: "/addZdssydtxsb",
name: "addZdssydtxsb",
meta: {
title: '损失移动通讯设备'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssydtxsb/addZdssydtxsb.vue")
},
{
path: "/addZdsszj",
name: "addZdsszj",
meta: {
title: '损失证件'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/sszj/addZdsszj.vue")
},
];
......@@ -160,4 +81,84 @@ export default [{
},
component: () => import("@/views/zdxx/zdxxgl/sswp/sszj/detailZdsszj.vue")
},
{
path: "/addZdssdy",
name: "addZdssdy",
meta: {
title: '损失弹药'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssdy/addZdssdy.vue")
},
{
path: "/addZdssfjdc",
name: "addZdssfjdc",
meta: {
title: '损失非机动车'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssfjdc/addZdssfjdc.vue")
},
{
path: "/addZdssjdc",
name: "addZdssjdc",
meta: {
title: '损失机动车'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssjdc/addZdssjdc.vue")
},
{
path: "/addZdsskl",
name: "addZdsskl",
meta: {
title: '损失卡类'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/sskl/addZdsskl.vue")
},
{
path: "/addZdssqtwp",
name: "addZdssqtwp",
meta: {
title: '损失其他物品'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssqtwp/addZdssqtwp.vue")
},
{
path: "/addZdssqz",
name: "addZdssqz",
meta: {
title: '损失枪支'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssqz/addZdssqz.vue")
},
{
path: "/addZdssww",
name: "addZdssww",
meta: {
title: '损失文物'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssww/addZdssww.vue")
},
{
path: "/addZdssydtxsb",
name: "addZdssydtxsb",
meta: {
title: '损失移动通讯设备'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/ssydtxsb/addZdssydtxsb.vue")
},
{
path: "/addZdsszj",
name: "addZdsszj",
meta: {
title: '损失证件'
},
component: () => import("@/views/zdxx/zdxxgl/sswp/sszj/addZdsszj.vue")
},
];
\ No newline at end of file
......@@ -84,18 +84,20 @@ const menuLayouts = [
},
component: () => import("@/views/zjcl/jcgz/detailJcgz.vue")
},
{
path: "/zjclcj",
name: "zjclcj",
meta: {
title: '证物材料上传',
},
component: () => import("@/views/zjcl/zjclcj.vue")
},
];
export default {
export default [{
path: "/right",
component: menuLayout,
children: [...menuLayouts]
};
},
{
path: "/zjclcj",
name: "zjclcj",
meta: {
title: '证物材料上传',
},
component: () => import("@/views/zjcl/zjclcj.vue")
},
];
......@@ -24,11 +24,11 @@ const zdjbxx = [
{
name: "阵地名称:",
id: "zdmc",
type: "textarea",
type: "text",
disabled: false,
value: "",
placeholder: "请输入",
col: "18",
col: "2",
},
{
name: "阵地基本情况:",
......@@ -12420,15 +12420,6 @@ const zbfzxyr_flws = [
//损失枪支基本信息
const zdssqzxx_jbxx = [
{
name: "物品编号:",
id: "ssqzSawpbh",
type: "text",
value: "",
placeholder: "请输入",
col: "2",
prop: "wpNumbers",
},
{
name: "枪支型号:",
id: "ssqzQzxhdm",
type: "codeTree",
......@@ -12558,15 +12549,6 @@ const zdssqzxx_syrxx = [
//损失机动车信息基本信息
const zdssjdc_jbxx = [
{
name: "物品编号:",
id: "ssjdcSawpbh",
type: "text",
value: "",
placeholder: "请输入",
col: "2",
prop: "wpNumbers",
},
]
//损失机动车损失车辆
const zdssjdc_sscl = [
......@@ -12791,15 +12773,7 @@ const zdssjdc_syr = [
]
//损失弹药基本信息
const zdssdy_jbxx = [
{
name: "物品编号:",
id: "ssdySawpbh",
type: "text",
value: "",
placeholder: "请输入",
col: "2",
prop: "wpNumbers",
},
]
//损失弹药弹药信息
const zdssdy_dyxx = [
......@@ -12886,15 +12860,7 @@ const zdssdy_syrxx = [
]
//损失文物基本信息
const zdssww_jbxx = [
{
name: "物品编号:",
id: "sswwSawpbh",
type: "text",
value: "",
placeholder: "请输入",
col: "2",
prop: "wpNumbers",
},
{
name: "文物名称:",
id: "sswwWpmc",
......@@ -13100,15 +13066,7 @@ const zdssww_syrxx = [
]
//损失卡类基本信息
const zdsskl_jbxx = [
{
name: "物品编号:",
id: "ssklSawpbh",
type: "text",
value: "",
placeholder: "请输入",
col: "2",
prop: "wpNumbers",
},
{
name: "物品类型:",
id: "ssklSawpSawpdm",
......@@ -13229,15 +13187,7 @@ const zdsskl_jbxx = [
]
//损失证件基本信息
const zdsszj_jbxx = [
{
name: "物品编号:",
id: "sszjSawpbh",
type: "text",
value: "",
placeholder: "请输入",
col: "2",
prop: "wpNumbers",
},
{
name: "常用证件:",
id: "sszjCyzjCyzjdm",
......@@ -13331,15 +13281,7 @@ const zdsszj_jbxx = [
]
//损失非机动车基本信息
const zdssfjdc_jbxx = [
{
name: "物品编号:",
id: "ssddfjdcSawpbh",
type: "text",
value: "",
placeholder: "请输入",
col: "2",
prop: "wpNumbers",
},
]
//损失非机动车信息
const zdssfjdc_fjdcxx = [
......@@ -13483,15 +13425,7 @@ const zdssfjdc_syrxx = [
]
//损失移动通讯设备基本信息
const zdssydtxsb_jbxx = [
{
name: "涉案物品编号:",
id: "ssydtxsbSawpbh",
type: "text",
// disabled: true,
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "手机使用状态:",
id: "sjsyzt",
......@@ -13642,15 +13576,7 @@ const zdssydtxsb_syrxx = [
]
//损失其他物品基本信息
const zdssqtwp_jbxx = [
{
name: "物品编号:",
id: "sswpSawpbh",
type: "text",
value: "",
placeholder: "请输入",
col: "2",
prop: "wpNumbers",
},
]
//损失其他物品信息
const zdssqtwp_wpxx = [
......
......@@ -545,14 +545,14 @@ export default {
className: "iconfont icongongnengfuwu",
disabled: false,
},
{
id: "zdfxcdtj",
label: "阵地风险程度统计",
index: "zdfxcdtj",
auth: "M0102",
className: "iconfont icongongnengfuwu",
disabled: false,
},
// {
// id: "zdfxcdtj",
// label: "阵地风险程度统计",
// index: "zdfxcdtj",
// auth: "M0102",
// className: "iconfont icongongnengfuwu",
// disabled: false,
// },
{
id: "zdjywptjt",
label: "阵地交易物品统计",
......
......@@ -147,7 +147,7 @@
});
},
edit(obj) {
this.$router.push({
this.$router.pushToTab({
path: "/insertHjwzgzgl",
query: {
ruleid: obj.row.ruleid,
......
......@@ -344,7 +344,7 @@ export default {
});
},
toInfor(obj) {
this.$router.push({
this.$router.pushToTab({
path: "/zjclcj",
query: {
asjbh: obj.asjbh,
......@@ -352,7 +352,7 @@ export default {
});
},
edit(obj) {
this.$router.push({
this.$router.pushToTab({
path: "/zjclcj",
query: {
asjbh: obj.row.asjbh,
......
......@@ -83,7 +83,7 @@
<script>
import rightContent from "@c/ptCxForm_components.vue";
import { pageTbYwWjpjckxq,queryJdswjpj } from "@/api/fzjc.js";
import { pageTbYwWjpjckxq,queryJdswjpj,wjpjDwfxdb } from "@/api/fzjc.js";
export default {
name: "queryHbyp",
components: {
......@@ -290,79 +290,109 @@
let kssj,jssj,xxzjbhList;
if(this.value1){kssj=this.value1[0];jssj=this.value1[1];}
if(this.selectedId.length){xxzjbhList = this.selectedId.toString()}
queryJdswjpj({
pflx:this.cxFormData.pflx,
fxFlag:fxFlag,kssj,jssj,xxzjbhList})
.then(res=>{
if( res.code===200){
let rows = res.data.rows;
let jdPjf = [];
let mxmc = [];
rows.find((v)=>{
jdPjf.push(v['jdPjf']);
mxmc.push(v['mxmc'])
})
let myChart = this.$echarts.init(this.$refs.charts);
let option = {
tooltip: {
trigger: 'axis'
},
legend: {
data: ['Email', 'Union Ads', 'Video Ads', 'Direct', 'Search Engine']
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [
{
name: 'Email',
type: 'line',
stack: 'Total',
data: [120, 132, 101, 134, 90, 230, 210]
},
{
name: 'Union Ads',
type: 'line',
stack: 'Total',
data: [220, 182, 191, 234, 290, 330, 310]
},
{
name: 'Video Ads',
type: 'line',
stack: 'Total',
data: [150, 232, 201, 154, 190, 330, 410]
},
{
name: 'Direct',
type: 'line',
stack: 'Total',
data: [320, 332, 301, 334, 390, 330, 320]
},
{
name: 'Search Engine',
type: 'line',
stack: 'Total',
data: [820, 932, 901, 934, 1290, 1330, 1320]
}
]
};
myChart.setOption(option)
if(fxFlag==1){
queryJdswjpj({
pflx:2,
kssj,jssj,xxzjbhList})
.then(res=>{
if( res.code===200){
let rows = res.data.rows;
let jqtRq = rows[0]['jqtRq'];
let mxPjf = rows[1]['mxPjf'][0];
let mc =[];
let seriesList = []
for(let i in mxPjf.valueOf()){
mc.push(i)
seriesList.push({
name: i,
type: 'line',
stack: 'Total',
data:mxPjf[i]
})
}
let myChart = this.$echarts.init(this.$refs.charts);
let option = {
tooltip: {
trigger: 'axis'
},
legend: {
data:mc
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'category',
boundaryGap: false,
data: jqtRq
},
yAxis: {
type: 'value'
},
series: seriesList
};
myChart.setOption(option)
}
}
})
})
}
else {
wjpjDwfxdb({
pflx:2,
kssj,jssj,xxzjbhList})
.then(res=>{
if( res.code===200){
let rows = res.data.rows;
let dwStrList = rows[1]['dwStrList'];
let mxPfList = rows[0]['mxPfList'];
let mc =[];
let seriesList = [];
for(let i in mxPfList.valueOf()){
mc.push(Reflect.ownKeys(mxPfList[i])[0]);
seriesList.push({
name: Reflect.ownKeys(mxPfList[i])[0],
type: 'line',
stack: 'Total',
data:mxPfList[i][Reflect.ownKeys(mxPfList[i])[0]]
})
}
let myChart = this.$echarts.init(this.$refs.charts);
let option = {
tooltip: {
trigger: 'axis'
},
legend: {data:mc},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'category',
boundaryGap: false,
data: dwStrList,
axisLabel: {
interval:0,
rotate:10
}
},
yAxis: {
type: 'value'
},
series: seriesList
};
myChart.setOption(option)
}
})
}
},
handleSizeChange(val) {
this.limit = val;
......
......@@ -84,7 +84,7 @@
<script>
import rightContent from "@c/ptCxForm_components.vue";
import { pageTbYwWjpjckxq,queryJdswjpj } from "@/api/fzjc.js";
import { pageTbYwWjpjckxq,queryJdswjpj,wjpjDwfxdb } from "@/api/fzjc.js";
export default {
name: "queryHbyp",
components: {
......@@ -292,79 +292,107 @@
let kssj,jssj,xxzjbhList;
if(this.value1){kssj=this.value1[0];jssj=this.value1[1];}
if(this.selectedId.length){xxzjbhList = this.selectedId.toString()}
queryJdswjpj({
pflx:this.cxFormData.pflx,
fxFlag:fxFlag,kssj,jssj,xxzjbhList})
.then(res=>{
if( res.code===200){
let rows = res.data.rows;
let jdPjf = [];
let mxmc = [];
rows.find((v)=>{
jdPjf.push(v['jdPjf']);
mxmc.push(v['mxmc'])
})
let myChart = this.$echarts.init(this.$refs.charts);
let option = {
tooltip: {
trigger: 'axis'
},
legend: {
data: ['Email', 'Union Ads', 'Video Ads', 'Direct', 'Search Engine']
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [
{
name: 'Email',
if(fxFlag==1){
queryJdswjpj({
pflx:1,
kssj,jssj,xxzjbhList})
.then(res=>{
if( res.code===200){
let rows = res.data.rows;
let jqtRq = rows[0]['jqtRq'];
let mxPjf = rows[1]['mxPjf'][0];
let mc =[];
let seriesList = []
for(let i in mxPjf.valueOf()){
mc.push(i)
seriesList.push({
name: i,
type: 'line',
stack: 'Total',
data: [120, 132, 101, 134, 90, 230, 210]
data:mxPjf[i]
})
}
let myChart = this.$echarts.init(this.$refs.charts);
let option = {
tooltip: {
trigger: 'axis'
},
{
name: 'Union Ads',
type: 'line',
stack: 'Total',
data: [220, 182, 191, 234, 290, 330, 310]
legend: {
data:mc
},
{
name: 'Video Ads',
type: 'line',
stack: 'Total',
data: [150, 232, 201, 154, 190, 330, 410]
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
{
name: 'Direct',
type: 'line',
stack: 'Total',
data: [320, 332, 301, 334, 390, 330, 320]
xAxis: {
type: 'category',
boundaryGap: false,
data: jqtRq
},
{
name: 'Search Engine',
yAxis: {
type: 'value'
},
series: seriesList
};
myChart.setOption(option)
}
})
} else {
wjpjDwfxdb({
pflx:1,
kssj,jssj,xxzjbhList})
.then(res=>{
if( res.code===200){
let rows = res.data.rows;
let dwStrList = rows[1]['dwStrList'];
let mxPfList = rows[0]['mxPfList'];
let mc =[];
let seriesList = [];
for(let i in mxPfList.valueOf()){
mc.push(Reflect.ownKeys(mxPfList[i])[0]);
seriesList.push({
name: Reflect.ownKeys(mxPfList[i])[0],
type: 'line',
stack: 'Total',
data: [820, 932, 901, 934, 1290, 1330, 1320]
}
]
};
myChart.setOption(option)
}
data:mxPfList[i][Reflect.ownKeys(mxPfList[i])[0]]
})
}
let myChart = this.$echarts.init(this.$refs.charts);
let option = {
tooltip: {
trigger: 'axis'
},
legend: {data:mc},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'category',
boundaryGap: false,
data: dwStrList,
axisLabel: {
interval:0,
rotate:10
}
},
yAxis: {
type: 'value'
},
series: seriesList
};
myChart.setOption(option)
})
}
})
}
},
handleSizeChange(val) {
this.limit = val;
......
......@@ -421,10 +421,15 @@ export default {
zjhm: item[0]
}).then((res) => {
if (res.success && res.code == 200) {
this.$message.success("提取成功");
if(res.data.rows == []) {
this.$message.success("未发现相关信息");
} else {
this.$message.success("提取成功");
}
var result = res.data.rows;
debugger;
console.log(result);
self.formField.forEach((i, iIndex) => {
console.log(i);
if (i.data && i.data.length > 0) {
......
......@@ -1126,7 +1126,7 @@ export default {
} else if (val.xslx == "3") {
var self = this;
self.xg = "";
self.cxUrl = "/xshb/getXsList";
self.cxUrl = "/zdxsxx/selectZdyrxx";
var arreyTj = [
{
name: "线索类型",
......
......@@ -8,6 +8,7 @@
:cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead"
:cxUrl="cxUrl"
@toInfor='toInfor'
>
<template #btnGroup="scope">
<span class="hbyp" @click="edit(scope.scope)">修改</span>
......
......@@ -32,8 +32,8 @@ export default {
cxQueryField: [
{
title: "阵地从业人员", //如果不分小模块就删除title
id: 2,
objStr: "", //对象中的对应字段
id: 1,
objStr: "zdry", //对象中的对应字段
data: [
{
label: "姓名:",
......@@ -46,8 +46,8 @@ export default {
col: "3",
},
{
label: "联系电话:",
prop: "lxdh",
label: "出生日期:",
prop: "csrq",
col: "3",
},
{
......@@ -61,6 +61,11 @@ export default {
col: "3",
},
{
label: "户籍地名称:",
prop: "hjdmc",
col: "3",
},
{
label: "现住址:",
prop: "xzzdmStr",
col: "3",
......@@ -71,45 +76,73 @@ export default {
col: "3",
},
{
label: "特殊身份:",
prop: "tssfStr",
label: "婚姻:",
prop: "hyzkdm",
col: "3",
},
{
label: "出生地:",
prop: "csdXzqhdmStr",
label: "涉及行业:",
prop: "hyhfdmStr",
col: "3",
},
{
label: "出生地名称:",
prop: "csdDzmc",
label: "学历:",
prop: "xldmStr",
col: "3",
},
{
label: "学历:",
prop: "xldmStr",
label: "入职时间:",
prop: "cysj",
col: "3",
},
{
label: "婚姻:",
prop: "hyzkdmStr",
label: "司龄:",
prop: "rysl",
col: "3",
},
],
},
{
title: "从业经历", //如果不分小模块就删除title
id: 2,
objStr: "ryjl", //对象中的对应字段
applyType: "list",
data: [
{
label: "单位名称:",
prop: "dwmc",
col: "3",
},
{
label: "出生日期:",
prop: "csrq",
label: "单位地址:",
prop: "dwdz",
col: "3",
},
{
label: "从业时间:",
prop: "cysj",
label: "涉及行业:",
prop: "sjhydmStr",
col: "3",
},
{
label: "是否换岗:",
prop: "sfhgPdbzStr",
label: "从业开始时间:",
prop: "cykssj",
col: "3",
},
{
label: "从业结束时间:",
prop: "cyjssj",
col: "3",
},
{
label: "人员司龄:",
prop: "rysl",
col: "3",
},
{
label: "工作内容描述:",
prop: "gznrms",
col: "10",
},
],
},
],
......
<template>
<div>
<form-compontent
:pageBs="pageBs"
:formField="propFormField"
:formLabelAligns="formLabelAlign"
@submit="submit"
......@@ -382,6 +383,7 @@ export default {
data() {
return {
title: "新增阵地交易活动",
pageBs: "addzdjyhd",
propFormField: [
//基本信息
{
......@@ -452,6 +454,7 @@ export default {
codeOptions: [],
value: "",
placeholder: "请输入",
prop: 'checkEmpty',
col: "2",
},
{
......@@ -461,6 +464,7 @@ export default {
value: "",
placeholder: "请输入",
col: "2",
prop: 'checkEmpty',
},
{
name: "交易简要情况:",
......@@ -469,13 +473,14 @@ export default {
value: "",
placeholder: "请输入",
col: "18",
prop: 'checkEmpty',
},
],
},
{
title: "阵地交易活动相关人员",
id: 1,
objStr: "xgry",
objStr: "",
index: 1,
data: [
{
......@@ -700,14 +705,16 @@ export default {
type: "text",
value: "",
placeholder: "请输入",
col: "2",
col: "3",
},
{
name: "交易物品:",
name: "图片:",
id: "zpflwsfj",
type: "file",
value: "",
placeholder: "请输入",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
acceptType: "image/jpeg,image/gif,image/png",
col: "2",
},
],
......@@ -750,14 +757,16 @@ export default {
type: "text",
value: "",
placeholder: "请输入",
col: "2",
col: "3",
},
{
name: "交易物品:",
name: "视频:",
id: "spflwsfj",
type: "file",
value: "",
placeholder: "请输入",
requestUrl: "/flwsFj/tbstasjflwsCj/save",
acceptType: "video/mp4,video/flv,video/avi,video/wmv",
col: "2",
},
],
......@@ -814,7 +823,7 @@ export default {
cxFormData: {
limit: 10,
page: 1,
glzdxxzjbh: this.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
cxDefaultFormThead: [
{
......@@ -847,7 +856,7 @@ export default {
cxFormData: {
limit: 10,
page: 1,
glzdxxzjbh: this.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
cxDefaultFormThead: [
{
......@@ -884,7 +893,7 @@ export default {
cxFormData: {
limit: 10,
page: 1,
glzdxxzjbh: this.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
cxDefaultFormThead: [
{
......@@ -925,7 +934,7 @@ export default {
cxFormData: {
limit: 10,
page: 1,
glzdxxzjbh: this.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
cxDefaultFormThead: [
{
......@@ -966,7 +975,7 @@ export default {
cxFormData: {
limit: 10,
page: 1,
glzdxxzjbh: this.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
cxDefaultFormThead: [
{
......@@ -1007,7 +1016,7 @@ export default {
cxFormData: {
limit: 10,
page: 1,
glzdxxzjbh: this.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
cxDefaultFormThead: [
{
......@@ -1044,7 +1053,7 @@ export default {
cxFormData: {
limit: 10,
page: 1,
glzdxxzjbh: this.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
cxDefaultFormThead: [
{
......@@ -1081,7 +1090,7 @@ export default {
cxFormData: {
limit: 10,
page: 1,
glzdxxzjbh: this.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
cxDefaultFormThead: [
{
......@@ -1122,7 +1131,7 @@ export default {
cxFormData: {
limit: 10,
page: 1,
glzdxxzjbh: this.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
cxDefaultFormThead: [
{
......@@ -1334,7 +1343,11 @@ export default {
zjhm: item[0]
}).then((res) => {
if (res.success && res.code == 200) {
this.$message.success("提取成功");
if(res.data.rows == []) {
this.$message.success("未发现相关信息");
} else {
this.$message.success("提取成功");
}
var result = res.data.rows;
debugger;
console.log(result);
......@@ -2022,8 +2035,19 @@ export default {
},
created() {
this.$store.commit("user/SET_Breadcrumb", this.Menu);
console.log(this.$route.query);
if (this.$route.query.glzdxxzjbh) {
this.glzdxxzjbh = this.$route.query.glzdxxzjbh;
this.ssdy.cxFormData.glzdxxzjbh = this.glzdxxzjbh
this.ssfjdc.cxFormData.glzdxxzjbh = this.glzdxxzjbh
this.ssjdc.cxFormData.glzdxxzjbh = this.glzdxxzjbh
this.sskl.cxFormData.glzdxxzjbh = this.glzdxxzjbh
this.ssqtwp.cxFormData.glzdxxzjbh = this.glzdxxzjbh
this.ssqz.cxFormData.glzdxxzjbh = this.glzdxxzjbh
this.ssww.cxFormData.glzdxxzjbh = this.glzdxxzjbh
this.ssydtxsb.cxFormData.glzdxxzjbh = this.glzdxxzjbh
this.sszj.cxFormData.glzdxxzjbh = this.glzdxxzjbh
console.log(this.glzdxxzjbh);
}
if (this.$route.query.xxzjbh) {
// this.$set(this.propFormField[0], "title", "修改阵地交易活动信息");
......
<template>
<div>
<form-compontent
:pageBs="pageBs"
:formField="formField"
:formLabelAligns="formLabelAlign"
@submit="submit"
......@@ -22,6 +23,7 @@ export default {
data() {
return {
title: "新增阵地线索信息",
pageBs: 'adjustZdxsxx',
formField: [
//基本信息
{
......
......@@ -36,196 +36,158 @@ export default {
objStr: "tbXwZdxsxx",
data: [
{
label: "线索简要情况:",
prop: "jyqk",
col: "10",
},
{
label: "涉及地区:",
prop: "sjdqStr",
col: "3",
},
{
label: "提供人姓名:",
prop: "tgxsrXm",
col: "3",
},
{
label: "提供人身份证:",
prop: "tgxsrSfzhm",
col: "3",
},
{
label: "提供人性别:",
prop: "tgxsrXbStr",
label: "情报线索名称:",
prop: "qbxsmc",
col: "3",
},
{
label: "提供人电话:",
prop: "tgxsrLxdh",
col: "3",
},
{
label: "提供人工作地:",
prop: "tgxsrGzdwmc",
col: "3",
},
{
label: "提供人民族:",
prop: "tgxsrMzdmStr",
col: "3",
},
{
label: "提供人国籍:",
prop: "tgxsrGjdmStr",
col: "3",
},
{
label: "提供人户籍:",
prop: "tgxsrHjdzXzqhdmStr",
col: "3",
},
{
label: "提供人现住址:",
prop: "tgxsrXzzXzqhdmStr",
col: "3",
label: "情报线索内容:",
prop: "qbxsnr",
col: "10",
},
{
label: "提供人地址:",
prop: "tgxsrXzzDzmc",
col: "3",
label: "线索类型:",
prop: "zdxsrlqbxs",
col: "10",
},
// {
// label: "阵地主键编号:",
// prop: "zdxxzjbh",
// col: "3",
// },
],
},
{
title: "可疑枪支",
title: "提供者信息",
id: 2,
objStr: "tbXwFxkyqzs",
objStr: "tgz",
applyType: "list",
data: [
{
label: "枪支口径:",
prop: "kyqzQzkj",
label: "姓名:",
prop: "xm",
col: "3",
},
{
label: "物品标识号:",
prop: "kyqzQhWpbzh",
label: "证件号码:",
prop: "zjhm",
col: "3",
},
{
label: "枪支是否完整:",
prop: "kyqzQzsfwzPdbzStr",
label: "联系电话:",
prop: "lxdh",
col: "3",
},
{
label: "简要情况:",
prop: "kyqzQzsfwzJyqk",
label: "国籍:",
prop: "gjdmStr",
col: "10",
},
{
label: "物品特征描述:",
prop: "kyqzWptzms",
col: "3",
},
{
label: "物品来源描述:",
prop: "kyqzWplyms",
label: "户籍地:",
prop: "hjddmStr",
col: "3",
},
{
label: "物品去向:",
prop: "kyqzWpqxJyqk",
label: "现住址:",
prop: "xzzdmStr",
col: "3",
},
{
label: "藏匿方式:",
prop: "kyqzCnfsJyqk",
label: "现住址名称:",
prop: "xzzmc",
col: "3",
},
{
label: "交易方式:",
prop: "kyqzJyfsJyqk",
label: "出生地:",
prop: "csdXzqhdmStr",
col: "3",
},
{
label: "交易地点:",
prop: "kyqzJyddXzqhdmStr",
label: "出生地名称:",
prop: "csdDzmc",
col: "3",
},
{
label: "详细地址:",
prop: "kyqzJyddDzmc",
label: "婚姻状况:",
prop: "hyzkdmStr",
col: "3",
},
{
label: "运输方式:",
prop: "kyqzYsfsJyqk",
label: "学历:",
prop: "xldmStr",
col: "3",
},
{
label: "运输路线:",
prop: "kyqzYslxJyqk",
label: "出生日期:",
prop: "csrq",
col: "3",
},
],
},
{
title: "可疑设备",
title: "可疑人员信息",
id: 3,
objStr: "tbXwFxkydtxsbxsxxes",
objStr: "kyry",
applyType: "list",
data: [
{
label: "简要情况:",
prop: "keyyjJyqk",
col: "10",
label: "姓名:",
prop: "xm",
col: "3",
},
{
label: "证件号码:",
prop: "zjhm",
col: "3",
},
{
label: "联系电话:",
prop: "lxdh",
col: "3",
},
{
label: "国籍:",
prop: "gjdmStr",
col: "3",
},
{
label: "涉案物品编号:",
prop: "keyydtxsbSawpbh",
label: "户籍地:",
prop: "hjddmStr",
col: "3",
},
{
label: "警综物品编号:",
prop: "keyydtxsbJzwpbh",
label: "现住址:",
prop: "xzzdmStr",
col: "3",
},
{
label: "品牌型号:",
prop: "keyydtxsbPpxh",
label: "现住址名称:",
prop: "xzzmc",
col: "3",
},
{
label: "ICCID:",
prop: "keyydtxsbIccidWpbzh",
label: "出生地:",
prop: "csdXzqhdmStr",
col: "3",
},
{
label: "IMEI:",
prop: "keyydtxsbImeiWpbzh",
label: "出生地名称:",
prop: "csdDzmc",
col: "3",
},
{
label: "移动电话:",
prop: "keyydtxsbYddh",
label: "婚姻状况:",
prop: "hyzkdmStr",
col: "3",
},
{
label: "物品特征描述:",
prop: "keyydtxsbWptzms",
label: "学历:",
prop: "xldmStr",
col: "3",
},
{
label: "物品价值:",
prop: "keyydtxsbWpjzrmby",
label: "出生日期:",
prop: "csrq",
col: "3",
},
],
},
],
......
<template>
<div>
<form-compontent
:pageBs="pageBs"
:formField="propFormField"
:formLabelAligns="formLabelAlign"
@submit="submit"
......@@ -498,6 +499,7 @@ export default {
limit: 10,
page: 1,
glzdxxzjbh: "",
sfglry: 0,
},
cxFormDataJY: {
limit: 10,
......@@ -573,14 +575,14 @@ export default {
cxUrlCY: "/zdryxx/selectZdyrxx",
cxDefaultFormTheadJY: [
{
label: "交易地点",
prop: "jyddXzqhdm",
toInfor: true,
label: "交易地点名称",
prop: "jyddXzqhmc",
width: "220",
toInfor: true,
},
{
label: "交易地点名称",
prop: "jyddXzqhmc",
label: "交易地点",
prop: "jyddXzqhdmStr",
width: "220",
},
{
......@@ -591,27 +593,10 @@ export default {
],
cxUrlJY: "/zdjyhdxx/selectZdjyhd",
cxDefaultFormTheadXS: [
// {
// label: "提供人姓名",
// prop: "tgxsrXm",
// toInfor: true,
// },
// {
// label: "提供人身份证",
// prop: "tgxsrSfzhm",
// },
// {
// label: "阵地信息主键编号",
// prop: "zdxxzjbh",
// },
// {
// label: "户籍地址",
// prop: "tgxsrHjdzXzqhdmStr",
// width: "200",
// },
{
label: "阵地线索名称",
prop: "qbxsmc",
toInfor: true,
},
{
label: "情报线索内容",
......@@ -788,7 +773,7 @@ export default {
this.cxFormDataCY.glzdxxzjbh = this.xxzjbh;
this.cxFormDataJY.glxxZdxxzjbh = this.xxzjbh;
this.cxFormDataBK.glxxXxzjbh = this.xxzjbh;
this.cxFormDataXS.zdxxzjbh = this.xxzjbh;
this.cxFormDataXS.glzdxxzjbh = this.xxzjbh;
this.$alert("保存成功!", "提示", {
confirmButtonText: "确定",
type: "success",
......@@ -931,7 +916,7 @@ export default {
// this.$router.pushToTab("addZdjyhd");
this.$router.pushToTab({
path: "addZdjyhd",
query: { glxxzjbh: this.xxzjbh },
query: { glzdxxzjbh: this.xxzjbh },
});
},
editJY(scope) {
......@@ -971,6 +956,7 @@ export default {
path: "/detailZdcyryxx",
query: {
xxzjbh: data.xxzjbh,
glzdxxzjbh: this.xxzjbh,
},
});
},
......@@ -979,6 +965,7 @@ export default {
path: "/detailZdjyhd",
query: {
xxzjbh: data.xxzjbh,
glzdxxzjbh: this.xxzjbh,
},
});
},
......@@ -1049,6 +1036,7 @@ export default {
path: "/adjustZdxsxx",
query: {
xxzjbh: data.row.xxzjbh,
glzdxxzjbh: this.xxzjbh,
},
});
},
......@@ -1087,6 +1075,7 @@ export default {
path: "/zdxsxxDetail",
query: {
xxzjbh: data.xxzjbh,
glzdxxzjbh: this.glzdxxzjbh,
},
});
},
......@@ -1781,7 +1770,7 @@ export default {
this.cxFormDataCY.glzdxxzjbh = this.xxzjbh;
this.cxFormDataJY.glxxZdxxzjbh = this.xxzjbh;
this.cxFormDataBK.glxxXxzjbh = this.xxzjbh;
this.cxFormDataXS.zdxxzjbh = this.xxzjbh;
this.cxFormDataXS.glzdxxzjbh = this.xxzjbh;
// this.ssdy.cxFormData.glzdxxzjbh = this.xxzjbh;
// this.ssfjdc.cxFormData.glzdxxzjbh = this.xxzjbh;
// this.ssjdc.cxFormData.glzdxxzjbh = this.xxzjbh;
......
......@@ -26,13 +26,6 @@ export default {
propFormField: [
//基本信息
{
title: "基本信息",
id: 1,
objStr: "",
index: 0,
data: zdssdy_jbxx,
},
{
title: "弹药信息",
id: 2,
objStr: "",
......
......@@ -31,18 +31,6 @@ export default {
return {
cxQueryField: [
{
title: "基本信息", //如果不分小模块就删除title
id: 1,
objStr: "",
data: [
{
label: "物品编号:",
prop: "ssdySawpbh",
col: "3",
},
],
},
{
title: "弹药信息", //如果不分小模块就删除title
id: 2,
objStr: "",
......
......@@ -34,13 +34,6 @@ export default {
propFormField: [
//基本信息
{
title: "基本信息",
id: 1,
objStr: "",
index: 0,
data: zdssfjdc_jbxx,
},
{
title: "损失非机动车信息",
id: 2,
objStr: "",
......
......@@ -31,18 +31,6 @@ export default {
return {
cxQueryField: [
{
title: "基本信息", //如果不分小模块就删除title
id: 1,
objStr: "",
data: [
{
label: "物品编号:",
prop: "ssddfjdcSawpbh",
col: "3",
},
],
},
{
title: "损失非机动车信息", //如果不分小模块就删除title
id: 2,
objStr: "",
......
......@@ -34,13 +34,6 @@ export default {
propFormField: [
//基本信息
{
title: "基本信息",
id: 1,
objStr: "",
index: 0,
data: zdssjdc_jbxx,
},
{
title: "损失车辆信息",
id: 21,
objStr: "",
......
......@@ -31,33 +31,11 @@ export default {
return {
cxQueryField: [
{
title: "基本信息", //如果不分小模块就删除title
id: 1,
objStr: "",
data: [
{
label: "物品编号:",
prop: "ssjdcSawpbh",
col: "3",
},
{
label: "信息主键编号:",
prop: "xxzjbh",
col: "3",
},
],
},
{
title: "损失车辆", //如果不分小模块就删除title
id: 2,
objStr: "",
data: [
{
label: "物品编号:",
prop: "ssjdcSawpbh",
col: "3",
},
{
label: "号牌号码:",
prop: "ssjdcJdchphm",
col: "3",
......
......@@ -33,11 +33,6 @@ export default {
col: "3",
},
{
label: "物品编号:",
prop: "ssklSawpbh",
col: "3",
},
{
label: "卡号:",
prop: "ssklKhWpbzh",
col: "3",
......
......@@ -26,13 +26,6 @@ export default {
propFormField: [
//基本信息
{
title: "基本信息",
id: 1,
objStr: "",
index: 0,
data: zdssqtwp_jbxx,
},
{
title: "物品信息",
id: 2,
objStr: "",
......
......@@ -36,11 +36,6 @@ export default {
objStr: "",
data: [
{
label: "物品编号:",
prop: "sswpSawpbh",
col: "3",
},
{
label: "信息主键编号:",
prop: "xxzjbh",
col: "3",
......
......@@ -36,20 +36,10 @@ export default {
objStr: "",
data: [
{
label: "物品编号:",
prop: "ssqzSawpbh",
col: "3",
},
{
label: "信息主键编号:",
prop: "xxzjbh",
col: "3",
},
// {
// label: "物品编号:",
// prop: "ssqzSawpbh",
// col: "3",
// },
{
label: "枪支型号:",
prop: "ssqzQzxhdmStr",
......
......@@ -36,11 +36,6 @@ export default {
objStr: "",
data: [
{
label: "物品编号:",
prop: "sswwSawpbh",
col: "3",
},
{
label: "信息主键编号:",
prop: "xxzjbh",
col: "3",
......
......@@ -41,11 +41,6 @@ export default {
col: "3",
},
{
label: "物品编号:",
prop: "sszjSawpbh",
col: "3",
},
{
label: "常用证件:",
prop: "sszjCyzjCyzjdm",
col: "3",
......
......@@ -320,6 +320,8 @@
<style scoped lang="scss">
.Content{
width: 1200px;
margin: 0 auto;
.info{
background: white;
border-radius: 8px;
......
......@@ -10,9 +10,9 @@
:tableData1="tableData1"
ref="rightContent"
:pageASs="pageASs"
:childrenUrl="childrenUrl"
@rowExpand="rowExpand"
@adds="adds"
@sprops="sprops"
:loadingZxzjlList="loadingZxzjlList"
>
<template #btnGroup="scope">
......@@ -77,6 +77,7 @@ import {
uploadFile,
selectZxzjbList,
} from "@/api/yzzfzxsyp/thxs.js";
import base from "@/api/base";
export default {
name: "queryZj",
components: {
......@@ -135,6 +136,7 @@ export default {
},
],
cxUrl: "/ztypxx/selectJtrwList",
childrenUrl: `${base.alyIP}/ztypxx/selectZxzjbList`,
Menu: [
{
id: "queryZj",
......
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