Commit 621745cb by xue_wengang

问题修改

parent 11b633be
...@@ -291,7 +291,7 @@ export default { ...@@ -291,7 +291,7 @@ export default {
if (type == "ajzb") { if (type == "ajzb") {
let path = `${this.$baseUrl.alyIP10}/jump?zjhm=${ let path = `${this.$baseUrl.alyIP10}/jump?zjhm=${
JSON.parse(sessionStorage.getItem("userInfo")).identitycard JSON.parse(sessionStorage.getItem("userInfo")).identitycard
}&path=/ajzb?id=${asjbh}`; }&path=ajzb&id=${asjbh}`;
window.open(path, "_blank"); window.open(path, "_blank");
} else { } else {
let path = `${this.$baseUrl.alyIP9}/#/JumpPage/admin/admin/${asjbh}`; let path = `${this.$baseUrl.alyIP9}/#/JumpPage/admin/admin/${asjbh}`;
......
...@@ -806,7 +806,7 @@ ...@@ -806,7 +806,7 @@
<div <div
class="flTtitle Add" class="flTtitle Add"
@click="DissolutionOrganization" @click="DissolutionOrganization"
v-if="pageBs != 'cxyhz' && sfkjs == '1'" v-if="pageBs != 'cxyhz' && sfkjs == '1' && scopeYH.yhJb == '0001'"
> >
解散组织 解散组织
</div> </div>
...@@ -2575,6 +2575,16 @@ ...@@ -2575,6 +2575,16 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
v-if="pageBs == 'zcssydtxsb'"
align="center"
label="操作"
fixed="right"
>
<template slot-scope="scope">
<span @click="TOBK(scope.row)">布控</span>
</template>
</el-table-column>
<el-table-column
v-if=" v-if="
pageBs == 'zcssqtwp' || pageBs == 'zcssqtwp' ||
pageBs == 'zcssddfjdc' || pageBs == 'zcssddfjdc' ||
...@@ -3159,6 +3169,7 @@ export default { ...@@ -3159,6 +3169,7 @@ export default {
type: Array, type: Array,
default: () => [], default: () => [],
}, },
scopeYH:Object
}, },
data() { data() {
return { return {
...@@ -3440,6 +3451,17 @@ export default { ...@@ -3440,6 +3451,17 @@ export default {
}; };
}, },
methods: { methods: {
TOBK(scope) {
this.$router.pushToTab({
path: "/adjustXsbks",
query: {
glxxlx: "0006",
bkdxLxdm: "01",
bkdx_hm: scope.ssydtxsbYddh,
glxxXxzjbh: scope.xxzjbh,
},
});
},
onStatus(item) { onStatus(item) {
if (item == "0") { if (item == "0") {
return "未审批"; return "未审批";
...@@ -4185,6 +4207,7 @@ export default { ...@@ -4185,6 +4207,7 @@ export default {
this.$emit("InviteUsers", this.yqyhz); this.$emit("InviteUsers", this.yqyhz);
}, },
DissolutionOrganization() { DissolutionOrganization() {
debugger
this.$emit("DissolutionOrganization", this.yqyhz); this.$emit("DissolutionOrganization", this.yqyhz);
}, },
adds() { adds() {
...@@ -4554,12 +4577,18 @@ export default { ...@@ -4554,12 +4577,18 @@ export default {
this.$refs.itsmDataTable.doLayout(); this.$refs.itsmDataTable.doLayout();
}); });
} else { } else {
debugger debugger;
if(self.pageBs == 'queryMenu' && (json.name || json.code || json.menuIds)){ if (
json.parentId = '' self.pageBs == "queryMenu" &&
(json.name || json.code || json.menuIds)
) {
json.parentId = "";
} }
if(self.pageBs == 'queryRole' && (json.roleName || json.roleAlias)){ if (
json.parentId = '' self.pageBs == "queryRole" &&
(json.roleName || json.roleAlias)
) {
json.parentId = "";
} }
self.doQueryRequest(json).then((response) => { self.doQueryRequest(json).then((response) => {
if (response.success === true) { if (response.success === true) {
...@@ -4994,7 +5023,7 @@ export default { ...@@ -4994,7 +5023,7 @@ export default {
watch: { watch: {
tableData(val) { tableData(val) {
let that = this; let that = this;
debugger debugger;
this.$nextTick(() => { this.$nextTick(() => {
that.$refs.itsmDataTable.doLayout(); that.$refs.itsmDataTable.doLayout();
}); });
...@@ -5086,6 +5115,10 @@ export default { ...@@ -5086,6 +5115,10 @@ export default {
height: 100px; height: 100px;
} }
.el-table__fixed-left {
height: 100%;
}
.flTtitle .el-radio-button:first-child .el-radio-button__inner { .flTtitle .el-radio-button:first-child .el-radio-button__inner {
width: 46px; width: 46px;
font-size: 14px; font-size: 14px;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
:cxQueryField="cxQueryField" :cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead" :cxDefaultFormThead="cxDefaultFormThead"
@doQueryBtn="doQueryBtn" @doQueryBtn="doQueryBtn"
:pageASs='pageASs' :pageASs="pageASs"
:cxUrl="cxUrl" :cxUrl="cxUrl"
ref="rightContent" ref="rightContent"
> >
...@@ -64,7 +64,7 @@ export default { ...@@ -64,7 +64,7 @@ export default {
return { return {
header: "业务工作效能评估", //头部标题 (模块第一个页面需要) header: "业务工作效能评估", //头部标题 (模块第一个页面需要)
pageBs: "queryAjzc", //页面名称 pageBs: "queryAjzc", //页面名称
pageASs: 'queryAjzc', pageASs: "queryAjzc",
cxFormData: { cxFormData: {
//查询条件 //查询条件
limit: 10, limit: 10,
...@@ -158,7 +158,7 @@ export default { ...@@ -158,7 +158,7 @@ export default {
mounted() {}, mounted() {},
methods: { methods: {
doQueryBtn() { doQueryBtn() {
debugger debugger;
this.getjsasj(); this.getjsasj();
this.getla(); this.getla();
this.getzczj(); this.getzczj();
...@@ -473,8 +473,6 @@ export default { ...@@ -473,8 +473,6 @@ export default {
cursor: pointer; cursor: pointer;
} }
.yuan { .yuan {
width: 20px;
height: 20px;
background: #ffffff; background: #ffffff;
border-radius: 50%; border-radius: 50%;
text-align: center; text-align: center;
...@@ -485,6 +483,7 @@ export default { ...@@ -485,6 +483,7 @@ export default {
bottom: 10px; bottom: 10px;
background: red; background: red;
color: #fff; color: #fff;
padding: 0 6px;
} }
.xian { .xian {
width: 270px; width: 270px;
......
...@@ -2,11 +2,13 @@ ...@@ -2,11 +2,13 @@
<div> <div>
<div class="total_box" v-if="activeName == 1"> <div class="total_box" v-if="activeName == 1">
<span class="totalName">发/破案总数:</span> <span class="totalName">发/破案总数:</span>
<span class="totalNum">{{ ajfxObj[0].value }}/{{ ajfxObj[1].value }}</span> <span class="totalNum"
>{{ ajfxObj[0].value }}/{{ ajfxObj[1].value }}</span
>
</div> </div>
<div class="total_box" v-if="activeName == 2"> <div class="total_box" v-if="activeName == 2">
<span class="totalName">重点人员总数:</span> <span class="totalName">重点人员总数:</span>
<span class="totalNum">{{gwryTotal }}</span> <span class="totalNum">{{ gwryTotal }}</span>
</div> </div>
<el-tabs v-model="activeName"> <el-tabs v-model="activeName">
<el-tab-pane label="案件分析" name="1"> <el-tab-pane label="案件分析" name="1">
...@@ -33,9 +35,7 @@ ...@@ -33,9 +35,7 @@
style="width: 880px; height: calc(100%)" style="width: 880px; height: calc(100%)"
v-loading="bndajxzfafxLoading" v-loading="bndajxzfafxLoading"
element-loading-text="拼命加载中" element-loading-text="拼命加载中"
v-if="!xalbFlag"
></div> ></div>
<div v-if="xalbFlag" class="real_chart_wrap">暂无小案类别</div>
</div> </div>
<div class="daping_box_content2_top_ajxztj"> <div class="daping_box_content2_top_ajxztj">
<div class="chart_wrap_title"> <div class="chart_wrap_title">
...@@ -47,7 +47,9 @@ ...@@ -47,7 +47,9 @@
style="width: 880px; height: calc(100%)" style="width: 880px; height: calc(100%)"
v-loading="fadytjLoading" v-loading="fadytjLoading"
element-loading-text="拼命加载中" element-loading-text="拼命加载中"
v-if="!xalbFlag"
></div> ></div>
<div v-if="xalbFlag" class="real_chart_wrap">暂无小案类别</div>
</div> </div>
</div> </div>
</el-tab-pane> </el-tab-pane>
...@@ -118,12 +120,12 @@ export default { ...@@ -118,12 +120,12 @@ export default {
ajlbdmTj: "05000200", ajlbdmTj: "05000200",
xatitle: "盗窃案", xatitle: "盗窃案",
ajCount: 0, ajCount: 0,
gwryTotal:0 gwryTotal: 0,
}; };
}, },
props: { props: {
formData: Object, formData: Object,
ajfxObj:Array ajfxObj: Array,
}, },
created() { created() {
this.activeName = "1"; this.activeName = "1";
...@@ -188,7 +190,7 @@ export default { ...@@ -188,7 +190,7 @@ export default {
let resData = res.data.rows; let resData = res.data.rows;
let x = []; let x = [];
let y = []; let y = [];
self.gwryTotal = res.data.total self.gwryTotal = res.data.total;
resData.forEach((item) => { resData.forEach((item) => {
x.push(item.DIC); x.push(item.DIC);
y.push({ value: item.COUNT, code: item.CODE, flag: item.FLAG }); y.push({ value: item.COUNT, code: item.CODE, flag: item.FLAG });
......
...@@ -325,7 +325,7 @@ ...@@ -325,7 +325,7 @@
style=" style="
z-index: 2; z-index: 2;
position: absolute; position: absolute;
top: 10px; top: -18px;
font-size: 50px; font-size: 50px;
color: #15baff; color: #15baff;
right: 15%; right: 15%;
......
...@@ -220,7 +220,6 @@ export default { ...@@ -220,7 +220,6 @@ export default {
} }
}, },
editMenu() { editMenu() {
debugger;
if (this.selectedId.length > 0) { if (this.selectedId.length > 0) {
this.dialogVisible = true; this.dialogVisible = true;
let arr = new Set([...this.parentArr]) let arr = new Set([...this.parentArr])
......
...@@ -1579,14 +1579,24 @@ export default { ...@@ -1579,14 +1579,24 @@ export default {
if (this.xslx == "rlqb") { if (this.xslx == "rlqb") {
this.$router.pushToTab({ this.$router.pushToTab({
path: "/adjustRlqbxs", path: "/adjustRlqbxs",
query: {
xxzjbh: this.xsbh,
},
}); });
} else { } else if (item.id == "xshm") {
this.$router.pushToTab({ this.$router.pushToTab({
path: "/xsxxbc", path: "/xsxxbc",
query: { query: {
xsbh: this.xsbh, xsbh: this.xsbh,
}, },
}); });
} else if (item.id == "zdqb") {
this.$router.pushToTab({
path: "/adjustZdxxgl",
query: {
xsbh: this.xsbh,
},
});
} }
} else if (item.id == "djgzxs") { } else if (item.id == "djgzxs") {
this.$router.pushToTab({ this.$router.pushToTab({
......
...@@ -418,7 +418,7 @@ export default { ...@@ -418,7 +418,7 @@ export default {
}, },
{ {
label: "关联案件", label: "关联案件",
prop: "sfyaj", prop: "sfysaj",
isShowDialog: true, isShowDialog: true,
}, },
{ {
......
...@@ -420,7 +420,7 @@ export default { ...@@ -420,7 +420,7 @@ export default {
}, },
{ {
label: "关联案件", label: "关联案件",
prop: "sfyaj", prop: "sfysaj",
isShowDialog: true, isShowDialog: true,
}, },
{ {
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
:cxQueryField="cxQueryField" :cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead" :cxDefaultFormThead="cxDefaultFormThead"
:cxUrl="cxUrl" :cxUrl="cxUrl"
:scopeYH='scopeYH'
@toInfor="toInfor" @toInfor="toInfor"
@DissolutionOrganization="DissolutionOrganization" @DissolutionOrganization="DissolutionOrganization"
ref="rightContent" ref="rightContent"
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
@changeZhStatus="changeZhStatus" @changeZhStatus="changeZhStatus"
@claim="claim" @claim="claim"
@toInfor="toInfor" @toInfor="toInfor"
></right-content> >
</right-content>
<!-- 赃物认领弹框 --> <!-- 赃物认领弹框 -->
<el-dialog <el-dialog
title="认领信息" title="认领信息"
......
...@@ -133,7 +133,7 @@ export default { ...@@ -133,7 +133,7 @@ export default {
col: "3", col: "3",
}, },
{ {
name: "阵地编号:", name: "阵地编号",
id: "xxzjbh", id: "xxzjbh",
type: "text", type: "text",
value: "", value: "",
......
...@@ -283,7 +283,7 @@ export default { ...@@ -283,7 +283,7 @@ export default {
}, },
{ {
label: "关联案件", label: "关联案件",
prop: "sfyaj", prop: "sfysaj",
isShowDialog: true, isShowDialog: true,
}, },
{ {
......
...@@ -283,7 +283,7 @@ export default { ...@@ -283,7 +283,7 @@ export default {
}, },
{ {
label: "关联案件", label: "关联案件",
prop: "sfyaj", prop: "sfysaj",
isShowDialog: true, isShowDialog: true,
}, },
{ {
......
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