Commit 8937d77e by xue_wengang

犯罪窝点,删除提示

parent d97cdf8e
import { get, post, postform } from "@/utils/http.js";
import base from "@/api/base";
/* 犯罪窝点 */
// 新增
export const saveJcyjFzwd = params =>
postform(`${base.alyIP}/jcyj/saveJcyjFzwd`, params);
// 修改
export const updateJcyjFzwd = params =>
postform(`${base.alyIP}/jcyj/updateJcyjFzwd`, params);
// 详情
export const getJcyjFzwdByXxzjbh = params =>
post(`${base.alyIP}/jcyj/getJcyjFzwdByXxzjbh`, params);
// 删除
export const deleteJcyjFzwd = params =>
post(`${base.alyIP}/jcyj/deleteJcyjFzwd`, params);
/* 犯罪窝点关联人员 */
// 新增
export const saveJcyjFzwdRy = params =>
postform(`${base.alyIP}/jcyj/saveJcyjFzwdRy`, params);
// 修改
export const updateJcyjFzwdRy = params =>
postform(`${base.alyIP}/jcyj/updateJcyjFzwdRy`, params);
// 详情
export const getJcyjFzwdRyByXxzjbh = params =>
post(`${base.alyIP}/jcyj/getJcyjFzwdRyByXxzjbh`, params);
// 删除
export const deleteJcyjFzwdRy = params =>
post(`${base.alyIP}/jcyj/deleteJcyjFzwdRy`, params);
/* 犯罪窝点关联号码 */
// 新增
export const saveJcyjFzwdHm = params =>
postform(`${base.alyIP}/jcyj/saveJcyjFzwdHm`, params);
// 修改
export const updateJcyjFzwdHm = params =>
postform(`${base.alyIP}/jcyj/updateJcyjFzwdHm`, params);
// 详情
export const getJcyjFzwdHmByXxzjbh = params =>
post(`${base.alyIP}/jcyj/getJcyjFzwdHmByXxzjbh`, params);
// 删除
export const deleteJcyjFzwdHm = params =>
post(`${base.alyIP}/jcyj/deleteJcyjFzwdHm`, params);
/* 新增犯罪窝点关联车辆 */
// 新增
export const saveJcyjFzwdCl = params =>
postform(`${base.alyIP}/jcyj/saveJcyjFzwdCl`, params);
// 修改
export const updateJcyjFzwdCl = params =>
postform(`${base.alyIP}/jcyj/updateJcyjFzwdCl`, params);
// 详情
export const getJcyjFzwdClByXxzjbh = params =>
post(`${base.alyIP}/jcyj/getJcyjFzwdClByXxzjbh`, params);
// 删除
export const deleteJcyjFzwdCl = params =>
post(`${base.alyIP}/jcyj/deleteJcyjFzwdCl`, params);
/* 时空跳转 */
export const getGjfxByXxzjbh = params =>
post(`${base.alyIP}/jcyj/getGjfxByXxzjbh`, params);
......@@ -50,7 +50,7 @@
:placeholder="item.placeholder"
v-model="formLabelAlign[item.id]"
v-if="item.type == 'text'"
:show-password='item.passflag'
:show-password="item.passflag"
:disabled="item.disabled"
:class="item.input"
>
......@@ -98,7 +98,7 @@
>
</el-input>
</div>
<div
<div
v-if="item.type == 'textFz'"
style="display: flex; align-items: center"
>
......@@ -108,11 +108,7 @@
:disabled="item.disabled"
:class="item.input"
>
<template slot="append"
><span
>分钟</span
></template
>
<template slot="append"><span>分钟</span></template>
</el-input>
</div>
<div
......@@ -329,6 +325,20 @@
>
</el-date-picker>
</div>
<div
v-else-if="item.type == 'datetimerange'"
style="display: flex"
>
<el-date-picker
v-model="formLabelAlign[item.id]"
value-format="yyyy-MM-dd HH:mm:ss"
type="datetimerange"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
>
</el-date-picker>
</div>
<!--案件类别-->
<div class="zdyInputW" v-else-if="item.type == 'setValue'">
......@@ -1165,7 +1175,7 @@ export default {
},
methods: {
showJyDialog(id) {
this.$emit('showJyDialog',id)
this.$emit("showJyDialog", id);
},
getBase64(file) {
return new Promise((resolve, reject) => {
......@@ -1418,6 +1428,9 @@ export default {
} else if (item.type == "datetime") {
params.append(item["id_1"], this.formLabelAlign[item.id_1]);
params.append(item["id_2"], this.formLabelAlign[item.id_2]);
} else if (item.type == "datetimerange") {
params.append(item["id_1"], this.formLabelAlign[item.id][0]);
params.append(item["id_2"], this.formLabelAlign[item.id][1]);
}
//1.2普通字段处理
else {
......@@ -1755,8 +1768,8 @@ export default {
if (
self.pageBs &&
((self.pageBs == "adjustRlqbxs" &&
self.formLabelAlign.ry[0].xm == ""))
self.pageBs == "adjustRlqbxs" &&
self.formLabelAlign.ry[0].xm == ""
) {
this.$message.error("请填写可疑人员");
return;
......@@ -1776,7 +1789,7 @@ export default {
} else if (
self.pageBs &&
self.pageBs == "addzdjyhd" &&
(self.formLabelAlign.xgry[0].xm == "")
self.formLabelAlign.xgry[0].xm == ""
) {
this.$message.error("请填写交易活动相关人员信息");
return;
......
......@@ -483,7 +483,7 @@
"
>
<div>
<span class="flTtitle">信息列表</span>
<span class="flTtitle">{{listTitle}}</span>
<span class="flTotal">{{ tableDataLength }}条信息</span>
<slot name="cxyhz"></slot>
</div>
......@@ -3124,6 +3124,10 @@ export default {
},
props: {
customizeText: String,
listTitle: {
type: String,
default: () => '信息列表',
},
tableOperation: {
type: Boolean,
default: () => false,
......
......@@ -128,6 +128,15 @@ const menuLayouts = [
},
component: () => import("@/views/jcyjzxt/afqstj.vue")
},
{
path: "/fzwdgl",
name: "fzwdgl",
meta: {
title: '犯罪窝点'
},
component: () => import("@/views/jcyjzxt/fzwd/fzwdgl.vue")
},
];
export default [
......@@ -176,4 +185,68 @@ export default [
},
component: () => import("@/views/jcyjzxt/yczj/yczjInfo.vue")
},
{
path: "/addfzwd",
name: "addfzwd",
meta: {
title: '新增犯罪窝点'
},
component: () => import("@/views/jcyjzxt/fzwd/addfzwd.vue")
},
{
path: "/fzwdInfo",
name: "fzwdInfo",
meta: {
title: '犯罪窝点详情'
},
component: () => import("@/views/jcyjzxt/fzwd/fzwdInfo.vue")
},
{
path: "/addfzwdHm",
name: "addfzwdHm",
meta: {
title: '新增犯罪窝点关联号码'
},
component: () => import("@/views/jcyjzxt/fzwd/addfzwdHm.vue")
},
{
path: "/fzwdHmInfo",
name: "fzwdHmInfo",
meta: {
title: '犯罪窝点关联号码详情'
},
component: () => import("@/views/jcyjzxt/fzwd/fzwdHmInfo.vue")
},
{
path: "/addfzwdCl",
name: "addfzwdCl",
meta: {
title: '新增犯罪窝点关联车辆'
},
component: () => import("@/views/jcyjzxt/fzwd/addfzwdCl.vue")
},
{
path: "/fzwdClInfo",
name: "fzwdClInfo",
meta: {
title: '犯罪窝点关联车辆详情'
},
component: () => import("@/views/jcyjzxt/fzwd/fzwdClInfo.vue")
},
{
path: "/addfzwdRy",
name: "addfzwdRy",
meta: {
title: '新增犯罪窝点关联人员'
},
component: () => import("@/views/jcyjzxt/fzwd/addfzwdRy.vue")
},
{
path: "/fzwdRyInfo",
name: "fzwdRyInfo",
meta: {
title: '犯罪窝点关联人员详情'
},
component: () => import("@/views/jcyjzxt/fzwd/fzwdRyInfo.vue")
},
];
......@@ -23,7 +23,13 @@
:currentItem="formData"
/>
</div>
<el-button type="primary" @click="bnfasjfxInit" size="medium" style="margin-left:20px">查询</el-button>
<el-button
type="primary"
@click="bnfasjfxInit"
size="medium"
style="margin-left: 20px"
>查询</el-button
>
</div>
<div class="echartWrap">
......@@ -131,6 +137,14 @@ export default {
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
{
id: "fzwdgl",
label: "犯罪窝点",
newAuth: "M01",
index: "fzwdgl",
className: "iconfont icongongnengfuwu",
hasChildren: false,
},
],
bnfasjfxLoading: true,
formDataTimeRange: [],
......
<template>
<div>
<form-compontent
:formField="propFormField"
:formLabelAligns="formLabelAlign"
@submit="submit"
:propTitle="title"
>
</form-compontent>
</div>
</template>
<script>
import formCompontent from "@c/form.vue";
import {
saveJcyjFzwd,
updateJcyjFzwd,
getJcyjFzwdByXxzjbh,
} from "@/api/jcyjzxt/fzwd.js";
export default {
name: "addYczj",
components: {
formCompontent,
},
data() {
return {
title: "新增犯罪窝点",
propFormField: [
//基本信息
{
id: 1,
objStr: "",
index: 0,
data: [
{
name: "犯罪窝点名称:",
id: "fzwdmc",
type: "text",
prop: "checkEmpty",
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "监视时间:",
id:'jcsj',
id_1: "jcsjKssj",
id_2: "jcsjJssj",
type: "datetimerange",
prop: "checkEmpty",
value: [],
placeholder: "请输入",
col: "3",
},
{
name: "犯罪窝点描述:",
id: "fzwdms",
type: "textarea",
prop: "",
value: "",
placeholder: "请输入",
col: "18",
},
],
},
],
formLabelAlign: {jcsj:[]},
Loading: null,
};
},
methods: {
submit(params) {
let loading = this.$loading({
lock: true,
text: "正在保存...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
if (!this.xxzjbh) {
this.addSubmit(params, loading);
} else {
this.editSubmit(params, loading);
}
},
addSubmit(params, loading) {
debugger;
saveJcyjFzwd(params).then((res) => {
if (res.success && res.code == 200) {
this.$alert("保存成功!", "提示", {
confirmButtonText: "确定",
type: "success",
callback: () => {
loading.close();
window.opener.location.reload();
window.close();
},
});
} else {
this.$message.error(res.message);
loading.close();
}
});
},
editSubmit(params, loading) {
params.append("xxzjbh", this.xxzjbh);
updateJcyjFzwd(params).then((res) => {
if (res.success && res.code == 200) {
this.$alert("保存成功!", "提示", {
confirmButtonText: "确定",
type: "success",
callback: () => {
loading.close();
window.opener.location.reload();
window.close();
},
});
} else {
this.$message.error(res.message);
loading.close();
}
});
},
getshuju() {
var self = this;
getJcyjFzwdByXxzjbh({
xxzjbh: this.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
var result = res.data.fzwd;
self.propFormField.forEach((fieldItem) => {
if (fieldItem.data && fieldItem.data.length > 0) {
fieldItem.data.forEach((i) => {
if (i.type == 'datetimerange') {
// self.$set(self.formLabelAlign[i.id], '0', result[i.id_1]);
// self.$set(self.formLabelAlign[i.id], '1', result[i.id_2]);
self.formLabelAlign[i.id].push(result[i.id_1])
self.formLabelAlign[i.id].push(result[i.id_2])
} else {
self.$set(self.formLabelAlign, i.id, result[i.id]);
}
});
}
self.$forceUpdate();
});
self.$forceUpdate();
}
setTimeout(() => {
self.Loading.close();
}, 500);
});
},
},
created() {
if (this.$route.query.xxzjbh) {
this.Loading = this.$loading({
lock: true,
text: "正在获取数据...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
this.title = "犯罪窝点修改";
this.xxzjbh = this.$route.query.xxzjbh;
this.getshuju();
}
},
watch: {},
};
</script>
<style scoped lang="scss">
</style>
\ No newline at end of file
<template>
<div>
<form-compontent
:formField="propFormField"
:formLabelAligns="formLabelAlign"
@submit="submit"
:propTitle="title"
>
</form-compontent>
</div>
</template>
<script>
import formCompontent from "@c/form.vue";
import {
saveJcyjFzwdCl,
updateJcyjFzwdCl,
getJcyjFzwdClByXxzjbh,
} from "@/api/jcyjzxt/fzwd.js";
export default {
name: "addYczj",
components: {
formCompontent,
},
data() {
return {
title: "新增犯罪窝点关联车辆",
propFormField: [
//基本信息
{
id: 1,
objStr: "",
index: 0,
data: [
{
name: "车牌号码:",
id: "cphm",
type: "text",
prop: "checkEmpty",
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "车主姓名:",
id: "czXm",
type: "text",
prop: "",
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "车主身份证号:",
id: "czSfzh",
type: "text",
prop: "",
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "登记原因:",
id: "djms",
type: "textarea",
prop: "",
value: "",
placeholder: "请输入",
col: "18",
},
],
},
],
formLabelAlign: {},
Loading: null,
};
},
methods: {
submit(params) {
let loading = this.$loading({
lock: true,
text: "正在保存...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
if (!this.xxzjbh) {
this.addSubmit(params, loading);
} else {
this.editSubmit(params, loading);
}
},
addSubmit(params, loading) {
params.append("glxxXxzjbh", this.$route.query.glxxXxzjbh);
saveJcyjFzwdCl(params).then((res) => {
if (res.success && res.code == 200) {
this.$alert("保存成功!", "提示", {
confirmButtonText: "确定",
type: "success",
callback: () => {
loading.close();
window.opener.location.reload();
window.close();
},
});
} else {
this.$message.error(res.message);
loading.close();
}
});
},
editSubmit(params, loading) {
params.append("xxzjbh", this.xxzjbh);
updateJcyjFzwdCl(params).then((res) => {
if (res.success && res.code == 200) {
this.$alert("保存成功!", "提示", {
confirmButtonText: "确定",
type: "success",
callback: () => {
loading.close();
window.opener.location.reload();
window.close();
},
});
} else {
this.$message.error(res.message);
loading.close();
}
});
},
getshuju() {
var self = this;
getJcyjFzwdClByXxzjbh({
xxzjbh: this.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
var result = res.data.cl;
self.propFormField.forEach((fieldItem) => {
if (fieldItem.data && fieldItem.data.length > 0) {
fieldItem.data.forEach((i) => {
self.$set(self.formLabelAlign, i.id, result[i.id]);
});
}
self.$forceUpdate();
});
self.$forceUpdate();
}
setTimeout(() => {
self.Loading.close();
}, 500);
});
},
},
created() {
if (this.$route.query.xxzjbh) {
this.Loading = this.$loading({
lock: true,
text: "正在获取数据...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
this.title = "犯罪窝点关联车辆修改";
this.xxzjbh = this.$route.query.xxzjbh;
this.getshuju();
}
},
watch: {},
};
</script>
<style scoped lang="scss">
</style>
\ No newline at end of file
<template>
<div>
<form-compontent
:formField="propFormField"
:formLabelAligns="formLabelAlign"
@submit="submit"
:propTitle="title"
>
</form-compontent>
</div>
</template>
<script>
import formCompontent from "@c/form.vue";
import {
saveJcyjFzwdHm,
updateJcyjFzwdHm,
getJcyjFzwdHmByXxzjbh,
} from "@/api/jcyjzxt/fzwd.js";
export default {
name: "addYczj",
components: {
formCompontent,
},
data() {
return {
title: "新增犯罪窝点关联号码",
propFormField: [
//基本信息
{
id: 1,
objStr: "",
index: 0,
data: [
{
name: "手机号码:",
id: "sjhm",
type: "text",
prop: "checkEmpty",
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "机主姓名:",
id: "jzXm",
type: "text",
prop: "",
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "机主身份证号:",
id: "jzSfzh",
type: "text",
prop: "",
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "登记原因:",
id: "djms",
type: "textarea",
prop: "",
value: "",
placeholder: "请输入",
col: "18",
},
],
},
],
formLabelAlign: {},
Loading: null,
};
},
methods: {
submit(params) {
let loading = this.$loading({
lock: true,
text: "正在保存...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
if (!this.xxzjbh) {
this.addSubmit(params, loading);
} else {
this.editSubmit(params, loading);
}
},
addSubmit(params, loading) {
debugger;
params.append("glxxXxzjbh", this.$route.query.glxxXxzjbh);
saveJcyjFzwdHm(params).then((res) => {
if (res.success && res.code == 200) {
this.$alert("保存成功!", "提示", {
confirmButtonText: "确定",
type: "success",
callback: () => {
loading.close();
window.opener.location.reload();
window.close();
},
});
} else {
this.$message.error(res.message);
loading.close();
}
});
},
editSubmit(params, loading) {
params.append("xxzjbh", this.xxzjbh);
updateJcyjFzwdHm(params).then((res) => {
if (res.success && res.code == 200) {
this.$alert("保存成功!", "提示", {
confirmButtonText: "确定",
type: "success",
callback: () => {
loading.close();
window.opener.location.reload();
window.close();
},
});
} else {
this.$message.error(res.message);
loading.close();
}
});
},
getshuju() {
var self = this;
getJcyjFzwdHmByXxzjbh({
xxzjbh: this.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
var result = res.data.hm;
self.propFormField.forEach((fieldItem) => {
if (fieldItem.data && fieldItem.data.length > 0) {
fieldItem.data.forEach((i) => {
self.$set(self.formLabelAlign, i.id, result[i.id]);
});
}
self.$forceUpdate();
});
self.$forceUpdate();
}
setTimeout(() => {
self.Loading.close();
}, 500);
});
},
},
created() {
if (this.$route.query.xxzjbh) {
this.Loading = this.$loading({
lock: true,
text: "正在获取数据...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
this.title = "犯罪窝点关联号码修改";
this.xxzjbh = this.$route.query.xxzjbh;
this.getshuju();
}
},
watch: {},
};
</script>
<style scoped lang="scss">
</style>
\ No newline at end of file
<template>
<div>
<form-compontent
:formField="propFormField"
:formLabelAligns="formLabelAlign"
@submit="submit"
:propTitle="title"
>
</form-compontent>
</div>
</template>
<script>
import formCompontent from "@c/form.vue";
import {
saveJcyjFzwdRy,
updateJcyjFzwdRy,
getJcyjFzwdRyByXxzjbh,
} from "@/api/jcyjzxt/fzwd.js";
export default {
name: "addYczj",
components: {
formCompontent,
},
data() {
return {
title: "新增犯罪窝点关联人员",
propFormField: [
//基本信息
{
id: 1,
objStr: "",
index: 0,
data: [
{
name: "人员姓名:",
id: "xm",
type: "text",
prop: "checkEmpty",
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "人员身份证号:",
id: "sfzh",
type: "text",
prop: "checkEmpty",
value: "",
placeholder: "请输入",
col: "2",
},
{
name: "登记原因:",
id: "djms",
type: "textarea",
prop: "",
value: "",
placeholder: "请输入",
col: "18",
},
],
},
],
formLabelAlign: {},
Loading: null,
};
},
methods: {
submit(params) {
let loading = this.$loading({
lock: true,
text: "正在保存...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
if (!this.xxzjbh) {
this.addSubmit(params, loading);
} else {
this.editSubmit(params, loading);
}
},
addSubmit(params, loading) {
debugger;
params.append("glxxXxzjbh", this.$route.query.glxxXxzjbh);
saveJcyjFzwdRy(params).then((res) => {
if (res.success && res.code == 200) {
this.$alert("保存成功!", "提示", {
confirmButtonText: "确定",
type: "success",
callback: () => {
loading.close();
window.opener.location.reload();
window.close();
},
});
} else {
this.$message.error(res.message);
loading.close();
}
});
},
editSubmit(params, loading) {
params.append("xxzjbh", this.xxzjbh);
updateJcyjFzwdRy(params).then((res) => {
if (res.success && res.code == 200) {
this.$alert("保存成功!", "提示", {
confirmButtonText: "确定",
type: "success",
callback: () => {
loading.close();
window.opener.location.reload();
window.close();
},
});
} else {
this.$message.error(res.message);
loading.close();
}
});
},
getshuju() {
var self = this;
getJcyjFzwdRyByXxzjbh({
xxzjbh: this.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
var result = res.data.ry;
self.propFormField.forEach((fieldItem) => {
if (fieldItem.data && fieldItem.data.length > 0) {
fieldItem.data.forEach((i) => {
self.$set(self.formLabelAlign, i.id, result[i.id]);
});
}
self.$forceUpdate();
});
self.$forceUpdate();
}
setTimeout(() => {
self.Loading.close();
}, 500);
});
},
},
created() {
if (this.$route.query.xxzjbh) {
this.Loading = this.$loading({
lock: true,
text: "正在获取数据...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
this.title = "犯罪窝点关联人员修改";
this.xxzjbh = this.$route.query.xxzjbh;
this.getshuju();
}
},
watch: {},
};
</script>
<style scoped lang="scss">
</style>
\ No newline at end of file
<template>
<div class="Content" id="userDetail">
<right-content
:cxQueryField="cxQueryField"
:pageObject="pageObject"
:pageFooterProps="pageFooterProps"
labelWidth="110px"
title="犯罪窝点关联车辆详情"
>
</right-content>
</div>
</template>
<script>
import rightContent from "@c/PersonInfor.vue";
import { getJcyjFzwdClByXxzjbh } from "@/api/jcyjzxt/fzwd.js";
export default {
name: "userDetail",
components: {
rightContent,
},
data() {
return {
cxQueryField: [
{
title: "",
id: 1,
objStr: "", //对象中的对应字段
data: [
{
label: "车牌号码:",
prop: "cphm",
col: "3",
},
{
label: "车主姓名:",
prop: "czXm",
col: "3",
},
{
label: "车主身份证号:",
prop: "czSfzh",
col: "3",
},
{
label: "登记原因:",
prop: "djms",
col: "10",
},
{
label: "登记人",
col: "3",
prop: "xxdjryXm",
},
{
label: "登记时间",
col: "3",
prop: "djsj",
},
{
label: "登记单位:",
prop: "xxdjdwGajgmc",
col: "3",
},
],
},
],
pageFooterProps: [],
pageObject: {},
Loading: null,
};
},
mounted() {},
methods: {
getInfor() {
getJcyjFzwdClByXxzjbh({
xxzjbh: this.$route.query.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
this.pageObject = res.data.cl;
}
this.Loading.close();
});
},
},
created() {
this.Loading = this.$loading({
lock: true,
text: "正在获取数据...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
this.getInfor();
},
};
</script>
<style scoped lang="scss">
</style>
<template>
<div class="Content" id="userDetail">
<right-content
:cxQueryField="cxQueryField"
:pageObject="pageObject"
:pageFooterProps="pageFooterProps"
labelWidth="110px"
title="犯罪窝点关联号码详情"
>
</right-content>
</div>
</template>
<script>
import rightContent from "@c/PersonInfor.vue";
import { getJcyjFzwdHmByXxzjbh } from "@/api/jcyjzxt/fzwd.js";
export default {
name: "userDetail",
components: {
rightContent,
},
data() {
return {
cxQueryField: [
{
title: "",
id: 1,
objStr: "", //对象中的对应字段
data: [
{
label: "手机号码:",
prop: "sjhm",
col: "3",
},
{
label: "机主姓名:",
prop: "jzXm",
col: "3",
},
{
label: "机主身份证号:",
prop: "jzSfzh",
col: "3",
},
{
label: "登记原因:",
prop: "djms",
col: "10",
},
{
label: "登记人",
col: "3",
prop: "xxdjryXm",
},
{
label: "登记时间",
col: "3",
prop: "djsj",
},
{
label: "登记单位:",
prop: "xxdjdwGajgmc",
col: "3",
},
],
},
],
pageFooterProps: [],
pageObject: {},
Loading: null,
};
},
mounted() {},
methods: {
getInfor() {
getJcyjFzwdHmByXxzjbh({
xxzjbh: this.$route.query.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
this.pageObject = res.data.hm;
}
this.Loading.close();
});
},
},
created() {
this.Loading = this.$loading({
lock: true,
text: "正在获取数据...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
this.getInfor();
},
};
</script>
<style scoped lang="scss">
</style>
<template>
<div class="Content" id="fzwdInfo">
<right-content
:cxQueryField="cxQueryField"
:pageObject="pageObject"
:pageFooterProps="pageFooterProps"
labelWidth="110px"
title="犯罪窝点详情"
>
</right-content>
<div
class="rightContent"
style="width: 1200px; margin: 0 auto; margin-top: -40px"
>
<right-query
:cxDefaultFormThead="cxDefaultFormTheadhm"
:cxUrl="cxUrlhm"
ref="rightContenthm"
:cxFormData="cxFormData"
listTitle="关联号码"
@toInfor="
(scope) => {
toInfor(scope, 'hm');
}
"
@add="
() => {
add('hm');
}
"
@edit="
(scope) => {
edit(scope, 'hm');
}
"
@dele="
(scope) => {
dele(scope, 'hm');
}
"
>
</right-query>
</div>
<div class="rightContent" style="width: 1200px; margin: 0 auto">
<right-query
:cxDefaultFormThead="cxDefaultFormTheadry"
:cxUrl="cxUrlry"
ref="rightContentry"
:cxFormData="cxFormData"
listTitle="关联人员"
@toInfor="
(scope) => {
toInfor(scope, 'ry');
}
"
@add="
() => {
add('ry');
}
"
@edit="
(scope) => {
edit(scope, 'ry');
}
"
@dele="
(scope) => {
dele(scope, 'ry');
}
"
>
</right-query>
</div>
<div class="rightContent" style="width: 1200px; margin: 0 auto">
<right-query
:cxDefaultFormThead="cxDefaultFormTheadcl"
:cxUrl="cxUrlcl"
ref="rightContentcl"
:cxFormData="cxFormData"
listTitle="关联车辆"
@toInfor="
(scope) => {
toInfor(scope, 'cl');
}
"
@add="
() => {
add('cl');
}
"
@edit="
(scope) => {
edit(scope, 'cl');
}
"
@dele="
(scope) => {
dele(scope, 'cl');
}
"
>
</right-query>
</div>
</div>
</template>
<script>
import rightContent from "@c/PersonInfor.vue";
import rightQuery from "@c/ptCxForm_components.vue";
import {
getJcyjFzwdByXxzjbh,
deleteJcyjFzwdCl,
deleteJcyjFzwdHm,
deleteJcyjFzwdRy,
} from "@/api/jcyjzxt/fzwd.js";
export default {
name: "fzwdInfo",
components: {
rightContent,
rightQuery,
},
data() {
return {
cxQueryField: [
{
title: "",
id: 1,
objStr: "", //对象中的对应字段
data: [
{
label: "犯罪窝点名称:",
prop: "fzwdmc",
col: "3",
},
{
label: "监测时间:",
prop: "jcsj",
col: "6",
},
{
label: "犯罪窝点描述:",
prop: "fzwdms",
col: "10",
},
{
label: "登记人",
col: "3",
prop: "xxdjryXm",
},
{
label: "登记时间",
col: "3",
prop: "djsj",
},
{
label: "登记单位:",
prop: "xxdjdwGajgmc",
col: "3",
},
],
},
],
pageFooterProps: [],
pageObject: {},
glxxXxzjbh: "",
Loading: null,
cxDefaultFormTheadhm: [
{ label: "手机号码", prop: "sjhm", toInfor: true },
{ label: "机主姓名", prop: "jzXm" },
{ label: "机主身份证号", prop: "jzSfzh" },
{ label: "登记原因", prop: "djms" },
{ label: "登记单位", prop: "xxdjdwGajgmc" },
{ label: "登记人", prop: "xxdjryXm" },
{ label: "登记时间", prop: "djsj" },
],
cxUrlhm: "",
cxFormData: { limit: 5, page: 1, glxxXxzjbh: "" },
cxUrlry: "",
cxDefaultFormTheadry: [
{ label: "姓名", prop: "xm", toInfor: true },
{ label: "身份证号", prop: "sfzh" },
{ label: "登记描述", prop: "djms" },
{ label: "登记单位", prop: "xxdjdwGajgmc" },
{ label: "登记人", prop: "xxdjryXm" },
{ label: "登记时间", prop: "djsj" },
],
cxUrlcl: "",
cxDefaultFormTheadcl: [
{ label: "车牌号码", prop: "cphm", toInfor: true },
{ label: "车主姓名", prop: "czXm" },
{ label: "车主身份证号", prop: "czSfzh" },
{ label: "登记原因", prop: "djms" },
{ label: "登记单位", prop: "xxdjdwGajgmc" },
{ label: "登记人", prop: "xxdjryXm" },
{ label: "登记时间", prop: "djsj" },
],
};
},
mounted() {},
methods: {
getInfor() {
getJcyjFzwdByXxzjbh({
xxzjbh: this.$route.query.xxzjbh,
}).then((res) => {
res.data.fzwd.jcsj =
res.data.fzwd.jcsjKssj + "-" + res.data.fzwd.jcsjJssj;
debugger;
this.pageObject = res.data.fzwd;
this.$set(this.cxFormData, "glxxXxzjbh", res.data.fzwd.xxzjbh);
this.glxxXxzjbh = res.data.fzwd.xxzjbh;
this.cxUrlhm = "/jcyj/getJcyjFzwdHmByGlxxzjbh";
this.cxUrlry = "/jcyj/getJcyjFzwdRyByGlxxzjbh";
this.cxUrlcl = "/jcyj/getJcyjFzwdClByGlxxzjbh";
this.Loading.close();
});
},
toInfor(scope, type) {
let path =
type == "hm"
? "fzwdHmInfo"
: type == "ry"
? "fzwdRyInfo"
: "fzwdClInfo";
this.$router.pushToTab({
path: path,
query: {
xxzjbh: scope.xxzjbh,
},
});
},
dele(scope, type) {
debugger;
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
if (type == "hm") {
deleteJcyjFzwdHm({
xxzjbh: scope.row.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
this.$message({
type: "success",
message: "删除成功",
});
this.$refs.rightContenthm.doQuery("yes");
}
});
} else if (type == "ry") {
deleteJcyjFzwdRy({
xxzjbh: scope.row.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
this.$message({
type: "success",
message: "删除成功",
});
this.$refs.rightContentry.doQuery("yes");
}
});
} else {
deleteJcyjFzwdCl({
xxzjbh: scope.row.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
this.$message({
type: "success",
message: "删除成功",
});
this.$refs.rightContentcl.doQuery("yes");
}
});
}
})
.catch(() => {
this.$message({
type: "info",
message: "已取消删除",
});
});
},
edit(scope, type) {
let path =
type == "hm" ? "addfzwdHm" : type == "ry" ? "addfzwdRy" : "addfzwdCl";
this.$router.pushToTab({
path: path,
query: {
xxzjbh: scope.row.xxzjbh,
},
});
},
add(type) {
debugger;
let path =
type == "hm" ? "addfzwdHm" : type == "ry" ? "addfzwdRy" : "addfzwdCl";
this.$router.pushToTab({
path: path,
query: {
glxxXxzjbh: this.glxxXxzjbh,
},
});
},
},
created() {
this.Loading = this.$loading({
lock: true,
text: "正在获取数据...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
this.getInfor();
},
};
</script>
<style scoped lang="scss">
#fzwdInfo /deep/ .rightContent .paneDiv {
margin: 20px !important;
}
</style>
<template>
<div class="Content" id="userDetail">
<right-content
:cxQueryField="cxQueryField"
:pageObject="pageObject"
:pageFooterProps="pageFooterProps"
labelWidth="110px"
title="犯罪窝点关联人员详情"
>
</right-content>
</div>
</template>
<script>
import rightContent from "@c/PersonInfor.vue";
import { getJcyjFzwdRyByXxzjbh } from "@/api/jcyjzxt/fzwd.js";
export default {
name: "userDetail",
components: {
rightContent,
},
data() {
return {
cxQueryField: [
{
title: "",
id: 1,
objStr: "", //对象中的对应字段
data: [
{
label: "人员姓名:",
prop: "xm",
col: "3",
},
{
label: "人员身份证号:",
prop: "sfzh",
col: "3",
},
{
label: "登记原因:",
prop: "djms",
col: "10",
},
{
label: "登记人",
col: "3",
prop: "xxdjryXm",
},
{
label: "登记时间",
col: "3",
prop: "djsj",
},
{
label: "登记单位:",
prop: "xxdjdwGajgmc",
col: "3",
},
],
},
],
pageFooterProps: [],
pageObject: {},
Loading: null,
};
},
mounted() {},
methods: {
getInfor() {
getJcyjFzwdRyByXxzjbh({
xxzjbh: this.$route.query.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
this.pageObject = res.data.ry;
}
this.Loading.close();
});
},
},
created() {
this.Loading = this.$loading({
lock: true,
text: "正在获取数据...",
spinner: "el-icon-loading",
background: "rgba(255, 255, 255, 0.7)",
});
this.getInfor();
},
};
</script>
<style scoped lang="scss">
</style>
<template>
<div class="Content" id="fzwdgl">
<right-content
:pageBs="pageBs"
:header="header"
:cxFormData="cxFormData"
:cxQueryField="cxQueryField"
:cxDefaultFormThead="cxDefaultFormThead"
:cxUrl="cxUrl"
ref="rightContent"
@toInfor="toInfor"
@add="add"
@edit="edit"
@dele="dele"
>
<template #btnGroup="scope">
<el-button @click="toDetail(scope.scope)" type="text"
>时空分析</el-button
>
</template>
</right-content>
</div>
</template>
<script>
import rightContent from "@c/ptCxForm_components.vue";
import { deleteJcyjFzwd, getGjfxByXxzjbh } from "@/api/jcyjzxt/fzwd.js";
export default {
name: "fzwdgl",
components: {
rightContent,
},
data() {
return {
header: "犯罪窝点",
pageBs: "fzwdgl",
cxFormData: {
limit: 10,
page: 1,
fzwdmc: "",
xm: "",
sfzh: "",
cphm: "",
sjhm: "",
},
cxQueryField: [
{
name: "犯罪窝点名称",
id: "fzwdmc",
placeholder: "请输入",
type: "text",
value: "",
col: "3",
},
{
name: "姓名",
id: "xm",
placeholder: "请输入",
type: "text",
value: "",
col: "3",
},
{
name: "身份证号",
id: "sfzh",
placeholder: "请输入",
type: "text",
value: "",
col: "3",
},
{
name: "车牌号码",
id: "cphm",
placeholder: "请输入",
type: "text",
value: "",
col: "3",
},
{
name: "手机号码",
id: "sjhm",
placeholder: "请输入",
type: "text",
value: "",
col: "3",
},
],
cxDefaultFormThead: [
{ label: "犯罪窝点名称", prop: "fzwdmc", toInfor: true },
{ label: "犯罪窝点描述", prop: "fzwdms" },
{ label: "监测开始时间", prop: "jcsjKssj" },
{ label: "监测结束时间", prop: "jcsjJssj" },
{ label: "登记单位", prop: "xxdjdwGajgmc" },
{ label: "登记人", prop: "xxdjryXm" },
{ label: "登记时间", prop: "djsj" },
],
cxUrl: "/jcyj/getJcyjFzwdList",
Menu: [
{
id: "fzwdgl",
label: "犯罪窝点",
index: "fzwdgl",
auth: "M0101",
className: "iconfont iconrizhi",
disabled: false,
},
],
};
},
created() {
this.$store.commit("user/SET_Menu", this.Menu);
},
methods: {
toDetail(scope) {
getGjfxByXxzjbh({
xxzjbh: scope.row.xxzjbh,
jcsjKssj: scope.row.jcsjKssj,
jcsjJssj: scope.row.jcsjJssj,
}).then((res) => {
if (res.code == 200) {
let path = res.data.url;
window.open(path, "_blank");
}else{
this.$message.info(res.message)
}
});
},
toInfor(scope) {
this.$router.pushToTab({
path: "/fzwdInfo",
query: {
xxzjbh: scope.xxzjbh,
},
});
},
dele(scope) {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
deleteJcyjFzwd({
xxzjbh: scope.row.xxzjbh,
}).then((res) => {
if (res.success && res.code == 200) {
this.$message({
type: "success",
message: "删除成功",
});
this.$refs.rightContent.doQuery("yes");
}
});
})
.catch(() => {
this.$message({
type: "info",
message: "已取消删除",
});
});
},
edit(scope) {
this.$router.pushToTab({
path: "/addfzwd",
query: {
xxzjbh: scope.row.xxzjbh,
},
});
},
add() {
this.$router.pushToTab({
path: "/addfzwd",
});
},
},
};
</script>
<style scoped lang="scss">
@import "@/assets/styles/rightContent.scss";
.hbyp {
font-size: 14px;
font-family: Source Han Sans CN;
font-weight: 400;
line-height: 22px;
color: #007aff;
margin-right: 16px;
cursor: pointer;
}
.btnGroup {
display: flex;
align-items: center;
margin-top: 10px;
.btn {
width: 70px;
text-align: center;
border: 1px solid #dcdfe6;
border-radius: 5px;
height: 30px;
line-height: 30px;
margin-right: 8px;
cursor: pointer;
}
.btnActive {
background: #ecf5ff;
}
}
</style>
<style lang="scss">
#fzwdgl .el-checkbox-button,
.el-checkbox-button__inner {
margin-left: 10px;
border-radius: 4px !important;
}
#fzwdgl .el-checkbox-button__inner {
border: 1px solid #dcdfe6;
}
</style>
......@@ -97,7 +97,7 @@ export default {
});
},
dele(scope) {
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -5,7 +5,7 @@
:pageObject="pageObject"
:pageFooterProps="pageFooterProps"
labelWidth="110px"
title="用户详情"
title="预警模型详情"
>
</right-content>
</div>
......
......@@ -142,7 +142,7 @@ export default {
});
},
dele(obj) {
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -178,7 +178,7 @@ export default {
});
},
dele(obj) {
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -186,7 +186,7 @@ export default {
});
},
dele(obj) {
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -285,7 +285,7 @@ export default {
});
},
dele(obj) {
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -185,7 +185,7 @@ export default {
});
},
dele(obj) {
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -443,7 +443,7 @@ export default {
});
},
dele(obj) {
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -842,7 +842,7 @@ export default {
// 删除 dele
dele(scoped) {
debugger;
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -1599,7 +1599,7 @@ export default {
deleSswp(scope) {
if (this.tabIndex == "0") {
// debugger;
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1629,7 +1629,7 @@ export default {
// path: "addZdssfjdc",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1658,7 +1658,7 @@ export default {
// path: "addZdssjdc",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1687,7 +1687,7 @@ export default {
// path: "addZdsskl",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1716,7 +1716,7 @@ export default {
// path: "addZdssqtwp",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1745,7 +1745,7 @@ export default {
// path: "addZdssqz",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1774,7 +1774,7 @@ export default {
// path: "addZdssww",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1803,7 +1803,7 @@ export default {
// path: "addZdssydtxsb",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1832,7 +1832,7 @@ export default {
// path: "addZdsszj",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -1148,7 +1148,7 @@ export default {
deleSswp(scope) {
if (this.tabIndex == "0") {
// debugger;
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1178,7 +1178,7 @@ export default {
// path: "addZdssfjdc",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1207,7 +1207,7 @@ export default {
// path: "addZdssjdc",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1236,7 +1236,7 @@ export default {
// path: "addZdsskl",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1265,7 +1265,7 @@ export default {
// path: "addZdssqtwp",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1294,7 +1294,7 @@ export default {
// path: "addZdssqz",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1323,7 +1323,7 @@ export default {
// path: "addZdssww",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1352,7 +1352,7 @@ export default {
// path: "addZdssydtxsb",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1381,7 +1381,7 @@ export default {
// path: "addZdsszj",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -1475,7 +1475,7 @@ export default {
deleSswp(scope) {
if (this.tabIndex == "0") {
debugger;
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1505,7 +1505,7 @@ export default {
// path: "addZdssfjdc",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1534,7 +1534,7 @@ export default {
// path: "addZdssjdc",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1563,7 +1563,7 @@ export default {
// path: "addZdsskl",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1592,7 +1592,7 @@ export default {
// path: "addZdssqtwp",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1621,7 +1621,7 @@ export default {
// path: "addZdssqz",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1650,7 +1650,7 @@ export default {
// path: "addZdssww",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1679,7 +1679,7 @@ export default {
// path: "addZdssydtxsb",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......@@ -1708,7 +1708,7 @@ export default {
// path: "addZdsszj",
// query: { xxzjbh: scope.row.xxzjbh },
// });
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -215,7 +215,7 @@ export default {
},
detailDelte(scope) {
debugger;
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -215,7 +215,7 @@ export default {
},
detailDelte(scope) {
debugger;
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -215,7 +215,7 @@ export default {
},
detailDelte(scope) {
debugger;
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -216,7 +216,7 @@ export default {
},
detailDelte(scope) {
debugger;
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
......@@ -215,7 +215,7 @@ export default {
},
detailDelte(scope) {
debugger;
this.$confirm("此操作将永久删除该用户, 是否继续?", "提示", {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
......
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