Commit b58acc17 by 叶富雄

Merge remote-tracking branch 'origin/dev_xzeq' into dev_xzeq

parents 9a9e2ecb 951fc152
......@@ -715,6 +715,7 @@
<script>
import LazySelectTreeDialog from "./lazy_treeCode_components.vue";
import SelectTreeDialog from "@c/treeCode_components.vue";
import url from "@/api/base";
export default {
name: "formCommonPage",
components: {
......@@ -1277,7 +1278,29 @@ export default {
});
},
handleBeforeRemove(file, fileList, item, parentItem) {},
handlerPreview(file, fileList, item, parentItem) {},
handlerPreview(file, fileList, item, parentItem) {
// var urls = `${url.alyIP}/flws/download`;
// var params = new FormData();
// params.append("xxzjbh", file.xxzjbh);
// axios
// .post(urls, params, {
// responseType: "arraybuffer",
// })
// .then((res) => {
// let blob = new Blob([res.data], {
// type: "application/vnd.ms-excel",
// });
// // 组装a标签
// let elink = document.createElement("a");
// // 设置下载文件名
// elink.download = file.name;
// elink.style.display = "none";
// elink.href = URL.createObjectURL(blob);
// document.body.appendChild(elink);
// elink.click();
// document.body.removeChild(elink);
// });
},
httpRequest() {},
handleAvatarSuccess(file, fileList, item) {
this.imageUrl[item.id] = URL.createObjectURL(file.raw);
......
......@@ -855,6 +855,7 @@
<script>
import LazySelectTreeDialog from "./../lazy_treeCode_components.vue";
import SelectTreeDialog from "@c/treeCode_components.vue";
import url from "@/api/base";
export default {
name: "formCommonPage",
components: {
......@@ -882,8 +883,8 @@ export default {
pageBs: String,
fileLists: {
type: Object,
default: () => {}
}
default: () => {},
},
},
data() {
return {
......@@ -936,7 +937,7 @@ export default {
// console.log(item.id);
// console.log(document.querySelector(item.id));
// console.log(document.querySelector(item.id)?.offsetTop);
// })
},
examine() {
......@@ -1406,7 +1407,7 @@ export default {
console.log(this.formLabelAlign);
},
handleChange(file, fileList, item, parentItem) {
debugger
debugger;
var self = this;
let isLt1M = "";
isLt1M = file.raw.size / 1024 / 1024 < 101;
......@@ -1417,14 +1418,20 @@ export default {
// debugger;
if (item.type == "photo") {
if (isJPG) {
debugger
debugger;
this.$set(self.imageUrl, item.id, file.raw);
this.$set(
self.formLabelAlign,
item.id,
URL.createObjectURL(file.raw)
);
this.$emit("uploadPhoto", self.imageUrl[item.id], file, fileList, item,);
this.$emit(
"uploadPhoto",
self.imageUrl[item.id],
file,
fileList,
item
);
} else {
self.$message.error("请上传正确的图片");
}
......@@ -1435,8 +1442,8 @@ export default {
}
if (isLt1M) {
this.fileLists[item.id].push(file);
debugger
this.$emit('handleChange',file, fileList, item)
debugger;
this.$emit("handleChange", file, fileList, item);
// this.$refs.formLabelAlign.clearValidate();
} else {
this.$confirm("上传文件不能超过100M", "提示", {
......@@ -1480,20 +1487,20 @@ export default {
this.$emit("flwsInsert", file);
},
flwsRemove(file, fileList, item, parentItem) {
debugger
debugger;
this.$emit("flwsRemove", file);
this.$set(this.fileLists, item.id, fileList);
console.log(this.fileLists);
},
handleRemove(file, fileList, item, parentItem) {
debugger
debugger;
this.$emit("handleRemove", file);
this.$set(this.fileLists, item.id, fileList);
console.log(this.fileLists);
},
//子组件调用删除接口后进行前端删除
photoRemove(item) {
debugger
debugger;
this.$set(this.formLabelAlign, item.id, "");
this.$set(this.imageUrl, item.id, "");
},
......@@ -1505,7 +1512,7 @@ export default {
type: "warning",
})
.then(() => {
debugger
debugger;
this.$emit("removePhoto", item);
})
.catch(() => {
......@@ -1517,7 +1524,27 @@ export default {
},
handleBeforeRemove(file, fileList, item, parentItem) {},
handlerPreview(file, fileList, item, parentItem) {
debugger
var urls = `${url.alyIP}/flws/download`;
var params = new FormData();
params.append("xxzjbh", file.xxzjbh);
axios
.post(urls, params, {
responseType: "arraybuffer",
})
.then((res) => {
let blob = new Blob([res.data], {
type: "application/vnd.ms-excel",
});
// 组装a标签
let elink = document.createElement("a");
// 设置下载文件名
elink.download = file.name;
elink.style.display = "none";
elink.href = URL.createObjectURL(blob);
document.body.appendChild(elink);
elink.click();
document.body.removeChild(elink);
});
},
httpRequest() {},
handleAvatarSuccess(file, fileList, item) {
......@@ -1659,20 +1686,24 @@ export default {
});
this.$forceUpdate();
// document.onmousewheel = this.scrollFun();
if ((navigator.userAgent.toLowerCase().indexOf("firefox") != -1)) {
document.addEventListener("DOMMouseScroll", this.scrollFun, false);
} else if (document.addEventListener) {
document.addEventListener("mousewheel", this.scrollFun, false);
} else if (document.attachEvent) {
document.attachEvent("onmousewheel", this.scrollFun);
} else {
document.onmousewheel = this.scrollFun;
}
this.menuList.map((item,index) => {
console.log(document.querySelector(item.id)?.offsetTop);
this.mailListTop.push({id:item.id,height:document.querySelector(item.id)?.offsetTop,index:index})
})
console.log(this.mailListTop);
if (navigator.userAgent.toLowerCase().indexOf("firefox") != -1) {
document.addEventListener("DOMMouseScroll", this.scrollFun, false);
} else if (document.addEventListener) {
document.addEventListener("mousewheel", this.scrollFun, false);
} else if (document.attachEvent) {
document.attachEvent("onmousewheel", this.scrollFun);
} else {
document.onmousewheel = this.scrollFun;
}
this.menuList.map((item, index) => {
console.log(document.querySelector(item.id)?.offsetTop);
this.mailListTop.push({
id: item.id,
height: document.querySelector(item.id)?.offsetTop,
index: index,
});
});
console.log(this.mailListTop);
},
watch: {
"formLabelAligns.editing": {
......@@ -1715,7 +1746,7 @@ export default {
deep: true,
},
fileLists(val) {
debugger
debugger;
console.log(222, val);
},
"formLabelAlign.jssj"(val) {
......@@ -1739,7 +1770,7 @@ export default {
new Date(this.formLabelAlign.xckyKssj).getTime()
) {
console.log(12321);
debugger
debugger;
this.$set(this.formLabelAlign, "xckyJssj", "");
this.$message.error("开始时间不能大于结束时间");
}
......@@ -1755,13 +1786,13 @@ export default {
}
},
"formLabelAlign.asjfssjAsjfsjssj"(val) {
debugger
debugger;
if (
new Date(val).getTime() <=
new Date(this.formLabelAlign.asjfssjAsjfskssj).getTime()
) {
console.log(12321);
debugger
debugger;
this.$set(this.formLabelAlign, "asjfssjAsjfsjssj", "");
this.$message.error("开始时间不能大于结束时间");
}
......
......@@ -65,6 +65,7 @@ export default {
{
label: "案事件编号",
prop: "asjbh",
toInfor:true
},
{
label: "接警编号",
......@@ -167,7 +168,7 @@ export default {
},
toInfor(scope) {
this.$router.push({
path: "/detailRlqbxs",
path: "/detailDnabz",
query: {
xxzjbh: scope.xxzjbh,
},
......
......@@ -30,8 +30,8 @@ export default {
pageBs: "queryDnahc",
cxFormData: {
rydnabh: "",
xyrXm:'',
xyrZjhm:"",
xyrXm: "",
xyrZjhm: "",
rows: 10,
page: 1,
},
......@@ -65,8 +65,9 @@ export default {
{
label: "姓名",
prop: "xm",
toInfor:true
},
{
{
label: "别名",
prop: "bmch",
},
......@@ -74,7 +75,7 @@ export default {
label: "人员身份证",
prop: "cyzjZjhm",
},
{
{
label: "民族",
prop: "mzdm",
},
......@@ -98,7 +99,7 @@ export default {
label: "现住址",
prop: "xzzDzmc",
},
{
{
label: "政治面貌",
prop: "zzmmdm",
},
......@@ -171,7 +172,7 @@ export default {
},
toInfor(scope) {
this.$router.push({
path: "/detailRlqbxs",
path: "/detailDnabz",
query: {
xxzjbh: scope.xxzjbh,
},
......
......@@ -20,14 +20,14 @@
import rightContent from "@c/ptCxForm_components.vue";
import { deleteKyxsxx } from "@/api/rlqbxs.js";
export default {
name: "queryYstrdc",
name: "queryNyzzdc",
components: {
rightContent,
},
data() {
return {
header: "捺印指掌纹涉案倒查",
pageBs: "queryYstrdc",
pageBs: "queryNyzzdc",
cxFormData: {
szzwbh: "",
xyrXm:'',
......@@ -65,6 +65,7 @@ export default {
{
label: "案事件编号",
prop: "asjbh",
toInfor:true
},
{
label: "接警编号",
......@@ -167,7 +168,7 @@ export default {
},
toInfor(scope) {
this.$router.push({
path: "/detailRlqbxs",
path: "/detailXczw",
query: {
xxzjbh: scope.xxzjbh,
},
......
......@@ -147,15 +147,11 @@ export default {
});
});
},
toInfor(scope) {
debugger
toInfor(scope) {
this.$router.push({
path: "/rxhcDetail",
path: "/detailXczw",
query: {
szzwbh: scope.szzwbh,
asjbh:scope.asjbh,
xyrXm:scope.xyrXm?scope.xyrXm:'',
xyrZjhm:scope.xyrZjhm?scope.xyrZjhm:'',
xxzjbh: scope.xxzjbh,
},
});
},
......
......@@ -30,7 +30,7 @@ export default {
pageBs: "queryRxhc",
cxFormData: {
file: "",
sfzh:"",
sfzh: "",
rows: 10,
page: 1,
},
......@@ -43,7 +43,7 @@ export default {
placeholder: "",
col: "1",
},
{
{
name: "身份证号",
id: "sfzh",
type: "text",
......@@ -51,30 +51,37 @@ export default {
placeholder: "",
col: "3",
},
],
cxDefaultFormThead: [
{
label: "情报线索名称",
prop: "qbxsmc",
label: "姓名",
prop: "name",
toInfor:true
},
{
/*table默认得表头*/
label: "登记时间",
prop: "djsj",
label: "人员身份证",
prop: "personId",
},
{
label: "相似度",
prop: "similarity",
},
{
label: "情报线索分类名称",
prop: "qbxsflmc",
label: "籍贯",
prop: "nativePlace",
},
{
label: "线索状态",
prop: "xsztdmStr",
label: "住址",
prop: "nativePlaceAddr",
},
{
label: "线索标识号类型",
prop: "kyxsbshlxStr",
label: "人员标签",
prop: "tagAry",
},
{
label: "图片来源",
prop: "picOriginName",
},
],
cxUrl: "/rxbdhc/selectRxbdhcList",
......@@ -98,7 +105,7 @@ export default {
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
{
id: "queryNyzzhc",
label: "捺印指掌纹身份核查",
newAuth: "M01",
......@@ -106,7 +113,7 @@ export default {
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
{
id: "queryDnahc",
label: "人员DNA身份核查",
newAuth: "M01",
......@@ -114,7 +121,7 @@ export default {
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
{
id: "queryYstrhc",
label: "人员YSTR身份核查",
newAuth: "M01",
......@@ -122,7 +129,7 @@ export default {
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
{
id: "queryNyzzdc",
label: "捺印指掌纹涉案倒查",
newAuth: "M01",
......@@ -130,7 +137,7 @@ export default {
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
{
id: "queryDnadc",
label: "人员DNA涉案倒查",
newAuth: "M01",
......@@ -138,7 +145,7 @@ export default {
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
{
id: "queryYstrdc",
label: "人员YSTR身份涉案倒查",
newAuth: "M01",
......@@ -146,7 +153,7 @@ export default {
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
{
id: "queryZjdc",
label: "人员足迹涉案倒查",
newAuth: "M01",
......@@ -201,7 +208,7 @@ export default {
},
toInfor(scope) {
this.$router.push({
path: "/detailRlqbxs",
path: "/detailXcrx",
query: {
xxzjbh: scope.xxzjbh,
},
......
......@@ -65,6 +65,7 @@ export default {
{
label: "案事件编号",
prop: "asjbh",
toInfor:true
},
{
label: "接警编号",
......@@ -167,7 +168,7 @@ export default {
},
toInfor(scope) {
this.$router.push({
path: "/detailRlqbxs",
path: "/detailXcystr",
query: {
xxzjbh: scope.xxzjbh,
},
......
......@@ -65,6 +65,7 @@ export default {
{
label: "姓名",
prop: "xm",
toInfor:true
},
{
label: "别名",
......@@ -171,7 +172,7 @@ export default {
},
toInfor(scope) {
this.$router.push({
path: "/detailRlqbxs",
path: "/detailXcystr",
query: {
xxzjbh: scope.xxzjbh,
},
......
......@@ -65,6 +65,7 @@ export default {
{
label: "人员编号",
prop: "rybh",
toInfor:true
},
{
label: "姓名",
......@@ -167,7 +168,7 @@ export default {
},
toInfor(scope) {
this.$router.push({
path: "/detailRlqbxs",
path: "/detailXczj",
query: {
xxzjbh: scope.xxzjbh,
},
......
......@@ -448,7 +448,7 @@ export default {
//左侧导航(模块第一个页面需要)
{
id: "queryGzry",
label: "刑嫌控工作",
label: "刑嫌控工作",
newAuth: "M01",
index: "2",
className: "iconfont icongongnengfuwu",
......@@ -504,6 +504,100 @@ export default {
},
],
},
{
id: "queryGzry",
label: "刑嫌对象日常管控",
newAuth: "M01",
index: "2",
className: "iconfont icongongnengfuwu",
hasChildren: true,
children: [
{
id: "home",
label: "高危人员滚动查控",
index: "home",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryLklz",
label: "刑嫌对象线索发现及管控",
index: "queryLklz",
auth: "M0102",
className: "iconfont icongongnengfuwu",
disabled: false,
},
{
id: "queryCklz",
label: "管控工作指令",
index: "queryCklz",
auth: "M0103",
className: "iconfont iconfangwen",
disabled: false,
}
],
},
{
id: "queryGzry",
label: "刑嫌对象信息研判",
newAuth: "M01",
index: "2",
className: "iconfont icongongnengfuwu",
hasChildren: true,
children: [
{
id: "queryGzry",
label: "刑嫌对象研判",
index: "queryGzry",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryLklz",
label: "刑嫌对象异常情况研判",
index: "queryLklz",
auth: "M0102",
className: "iconfont icongongnengfuwu",
disabled: false,
},
{
id: "queryCklz",
label: "登记工作发现线索信息",
index: "queryCklz",
auth: "M0103",
className: "iconfont iconfangwen",
disabled: false,
},
],
},
{
id: "queryGzry",
label: "智能化信息服务",
newAuth: "M01",
index: "2",
className: "iconfont icongongnengfuwu",
hasChildren: true,
children: [
{
id: "queryGzry",
label: "刑嫌对象关联线索定向推送服务",
index: "queryGzry",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryLklz",
label: "列控管理提醒信息服务",
index: "queryLklz",
auth: "M0102",
className: "iconfont icongongnengfuwu",
disabled: false,
}
],
},
],
newlyVisiable: false,
lkForm: {
......
......@@ -70,7 +70,7 @@ export default {
},
data() {
return {
header: "阵地信息管理",
header: "阵地管控工作管理",
pageBs: "zdxxgl",
cxFormData: {
djsjStart: "",
......@@ -203,19 +203,37 @@ export default {
newAuth: "M01",
index: "queryZdxx",
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
id: "queryZdcyryxx",
label: "阵地从业人员信息管理",
newAuth: "M01",
index: "queryZdcyryxx",
className: "iconfont icongongnengfuwu",
hasChildren: false,
hasChildren: true,
children: [
{
id: "queryZdxx",
label: "阵地信息管理",
index: "queryZdxx",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryZdcyryxx",
label: "阵地从业人员信息管理",
index: "queryZdcyryxx",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryZdxxs",
label: "阵地信息查询",
index: "queryZdxxs",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
],
},
{
id: "queryZdjyhd",
label: "阵地交易活动",
label: "阵地活动信息管理",
newAuth: "M01",
index: "queryZdjyhd",
className: "iconfont icongongnengfuwu",
......@@ -223,13 +241,37 @@ export default {
children: [
{
id: "queryZdjyhd",
label: "阵地交易活动",
label: "阵地交易(活动)信息采集",
index: "queryZdjyhd",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryZdxsxx",
label: "阵地线索信息管理",
newAuth: "M01",
index: "queryZdxsxx",
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
id: "qzdjs",
label: "全阵地检索",
index: "qzdjs",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "zdhome",
label: "全阵地信息统计",
index: "zdhome",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "zdjycstj",
label: "阵地交易场所统计",
index: "zdjycstj",
......@@ -277,10 +319,36 @@ export default {
className: "iconfont iconrizhi",
disabled: false,
},
],
},
{
id: "queryZdxx",
label: "阵地信息监测预警",
newAuth: "M01",
index: "queryZdxx",
className: "iconfont icongongnengfuwu",
hasChildren: true,
children: [
{
id: "qzdjs",
label: "全阵地检索",
index: "qzdjs",
id: "queryZdxx",
label: "阵地监测预警模型管理",
index: "queryZdxx1",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryZdcyryxx",
label: "阵地信息监测预警",
index: "queryZdcyryxx",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryZdxxs2",
label: "阵地预警信息处置",
index: "queryZdxxs",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
......@@ -288,18 +356,60 @@ export default {
],
},
{
id: "queryZdxx3",
label: "阵地信息研判",
newAuth: "M01",
index: "queryZdxx3",
className: "iconfont icongongnengfuwu",
hasChildren: true,
children: [
{
id: "queryZdxx",
label: "阵地信息研判",
index: "queryZdxx4",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryZdcyryxx",
label: "阵地从业人员信息研判",
index: "queryZdcyryxx",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryZdxxs",
label: "阵地活动信息研判",
index: "queryZdxxs5",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
{
id: "queryZdxxs",
label: "阵地监测预警信息研判",
index: "queryZdxxs6",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
],
},
{
id: "queryBbkwpxx",
label: "被布控物品信息",
label: "智能化信息服务",
newAuth: "M01",
index: "queryBbkwpxx",
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
id: "queryZdxsxx",
label: "阵地线索信息",
id: "queryBbkwpxx",
label: "被布控物品信息",
newAuth: "M01",
index: "queryZdxsxx",
index: "queryBbkwpxx",
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
......
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