Commit 8bb72192 by lp784568205

删除了没用的页面

parent 510f5a3c
......@@ -376,7 +376,6 @@
pageBs != 'queryZjcl' &&
pageBs != 'wscdaj' &&
pageBs != 'wscdajtj' &&
pageBs != 'queryXnpg' &&
pageBs != 'queryPgtj' &&
pageBs != 'wscdaj' &&
pageBs != 'wsqfbdzczl' &&
......
......@@ -2,14 +2,6 @@ import menuLayout from "@/layout/menuLayout.vue";
const menuLayouts = [
{
path: "/queryXnpg",
name: "queryXnpg",
meta: {
title: '案件侦查工作效能评估'
},
component: () => import("@/views/xnpg/gzxnpg/queryXnpg.vue")
},
{
path: "/queryPgtj",
name: "queryPgtj",
meta: {
......
<template>
<div class="Content">
<right-content
:pageBs="pageBs"
:header="header"
:cxFormData="cxFormData"
:cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead"
:cxUrl="cxUrl"
ref="rightContent"
></right-content>
</div>
</template>
<script>
import rightContent from "@c/ptCxForm_components.vue";
import SelectTreeDialog from "@c/treeCode_components.vue";
export default {
name: "queryXnpg",
components: {
rightContent,
SelectTreeDialog,
},
data() {
return {
examineInfo: {},
header: "案件侦查工作效能评估", //头部标题 (模块第一个页面需要)
pageBs: "queryXnpg", //页面名称
cxFormData: {
//查询条件
limit: 10,
page: 1,
startTime: "",
endTime: "",
ajmc: "",
asjbh: "",
ssjzrmby: "",
ladwGajgmc: "",
larq: "",
asjfssjAsjfskssj: "",
zcjddm: "",
ajlbdm: "",
asjfsddXzqhdm: "",
},
cxQueryField: [
//查询条件
{
name: "统计时间",
id: "startTime",
id2: "endTime",
type: "zdyDate",
value: "",
col: "3",
},
{
name: "案件名称",
id: "ajmc",
type: "text",
value: "",
placeholder: "",
col: "3",
},
{
name: "案事件编号",
id: "asjbh",
type: "text",
value: "",
placeholder: "",
col: "3",
},
{
name: "损失价值人民币元",
id: "ssjzrmby",
type: "text",
value: "",
placeholder: "",
col: "3",
},
{
name: "立案单位公安机关",
id: "ladwGajgmc",
type: "codeTreeDialog",
codeTree: "QGCODE_UNIT",
codeOptions: [],
props: [], //字典弹框需要的字段
value: "",
col: "3",
},
{
name: "立案日期",
id: "larq",
type: "datetime",
value: "",
col: "3",
},
{
name: "案事件发生时间",
id: "asjfssjAsjfskssj",
type: "datetime",
value: "",
col: "3",
},
{
name: "侦查阶段",
id: "zcjddm",
type: "codeTreeDialog",
codeTree: "",
props: [], //字典弹框需要的字段
value: "",
col: "3",
codeOptions: [],
},
{
name: "案件类别",
id: "ajlbdm",
type: "codeTreeDialog",
codeTree: "CODE_AJLB",
props: [], //字典弹框需要的字段
value: "",
col: "3",
codeOptions: [],
},
{
name: "案件发地行政区划",
id: "asjfsddXzqhdm",
type: "codeTreeDialog",
codeTree: "CODE_XZQH",
props: [], //字典弹框需要的字段
value: "",
col: "3",
codeOptions: [],
},
],
cxDefaultFormThead: [
//table 展示
{
label: "案件名称",
prop: "ajmc",
},
{
label: "案事件编号",
prop: "asjbh",
},
{
label: "损失价值人民币元",
prop: "ssjzrmby",
},
{
label: "立案单位公安机关机构",
prop: "ladwGajgmc",
},
{
label: "立案日期",
prop: "larq",
},
{
label: "案事件发生时间",
prop: "asjfssjAsjfskssj",
},
{
label: "侦查阶段",
prop: "zcjddmStr",
},
{
label: "案件类别",
prop: "ajlbdmStr",
},
{
label: "案事件发生地行政区划代码",
prop: "asjfsddXzqhdm",
},
],
cxUrl: "/ywgz/getAsjXxList", //列表查询接口
Menu: [
//头部导航(模块第一个页面需要)
{
id: "queryXnpg",
label: "案件侦查工作效能评估",
index: "queryXnpg",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
}
],
leftMenus: [
//左侧导航(模块第一个页面需要)
{
id: "queryXnpg",
label: "案件侦查工作效能",
newAuth: "M01",
index: "2",
className: "iconfont icongongnengfuwu",
hasChildren: true,
children: [
{
id: "queryXnpg",
label: "案件侦查工作效能评估",
index: "queryXnpg",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryPgtj",
label: "案件侦查工作效能评估统计",
index: "queryPgtj",
auth: "M0102",
className: "iconfont icongongnengfuwu",
disabled: false,
},
{
id: "xxtkgzxnpg",
label: "刑嫌调控工作效能评估",
index: "xxtkgzxnpg",
auth: "M0103",
className: "iconfont icongongnengfuwu",
disabled: false,
},
// {
// id: "zwbdxx",
// label: "指纹比中信息",
// index: "zwbdxx",
// auth: "M0104",
// className: "iconfont icongongnengfuwu",
// disabled: false,
// },
// {
// id: "dnabdxx",
// label: "DNA比中信息",
// index: "dnabdxx",
// auth: "M0105",
// className: "iconfont icongongnengfuwu",
// 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);
},
mounted() {
this.hqzd();
},
methods: {
hqzd() {
let self = this;
axios
.get(`JsonData/${this.lkobj.codeTree}.json`)
.then((res) => {
self.$set(this.lkobj, "codeOptions", res.data.data.rows);
})
.catch((err) => {
console.log(err);
});
axios
.get(`JsonData/${this.ckobj.codeTree}.json`)
.then((res) => {
self.$set(this.ckobj, "codeOptions", res.data.data.rows);
})
.catch((err) => {
console.log(err);
});
},
// add() {
// this.$router.push("addGzry");
// },
// edit(scope) {
// console.log(scope);
// this.$router.push({
// path: "/addGzry",
// query: { xxzjbh: scope.row.xzgzrybh },
// });
// },
// dele(scope) {
// this.$confirm("此操作将永久删除该文件, 是否继续?", "提示", {
// confirmButtonText: "确定",
// cancelButtonText: "取消",
// type: "warning",
// })
// .then(() => {
// deleteGzry({
// xzgzrybh: scope.row.xzgzrybh,
// }).then((res) => {
// if (res.success && res.code == 200) {
// this.$message({
// type: "success",
// message: "删除成功",
// });
// this.$refs.rightContent.doQuery("yes");
// }
// });
// })
// .catch(() => {
// this.$message({
// type: "info",
// message: "已取消删除",
// });
// });
// },
// toInfor(scope) {
// console.log(scope);
// this.$router.push({
// path: "/detailGzry",
// query: {
// xxzjbh: scope.xzgzrybh,
// },
// });
// },
},
};
</script>
<style>
.el-dialog {
/* max-height: 670px */
}
.el-dialog__body {
padding: 0px 15px !important;
/* height: 80vh; */
}
.rightContent .el-input__inner,
#formCommonPage .el-input__inner {
height: 32px;
line-height: 32px;
font-family: inherit;
}
.el-table__header-wrapper th,
.el-table__header-wrapper tr {
background: #f4f6f7;
}
.rightContent .el-input__icon,
#formCommonPage .el-input__icon,
.el-input__suffix-inner {
line-height: 36px;
}
.rightContent .el-range-separator {
position: relative;
top: -4px;
}
.rightContent .el-textarea__inner,
#formCommonPage .el-textarea__inner {
width: 100%;
font-family: inherit;
}
.rightContent .el-range-input,
#formCommonPage .el-range-input {
vertical-align: top;
}
.rightContent .el-date-editor .el-range__close-icon {
margin-top: -4px;
}
.rightContent .el-form-item__error {
left: calc(66% - 27px);
top: 12px;
}
.success-row {
background-color: #fbf9f4 !important;
}
.Content .el-input,
.Content .el-date-editor--daterange.el-input__inner {
width: 100% !important;
}
</style>
<style scoped lang="scss">
@import "@/assets/styles/rightContent.scss";
/deep/ {
.el-form-item {
width: 100%;
margin-bottom: 10px;
}
}
</style>
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