Commit 011f8654 by zhangzhijie

新增其他系统跳转侦查指令时的标识

parent 630fab4f
......@@ -35,6 +35,7 @@ export default {
title: "新增工作指令",
xsbh: "",
xsType: "",
module: "",
propFormField: [
//基本信息
{
......@@ -188,6 +189,7 @@ export default {
}
params.append("xsbh", this.xsbh);
params.append("xsType", this.xsType);
params.append("module", this.module);
doAddZczlxx(params).then((res) => {
if (res.success && res.code == 200) {
this.$alert("保存成功!", "提示", {
......@@ -285,6 +287,9 @@ export default {
if (this.$router.currentRoute.query.xsbh != null && this.$router.currentRoute.query.xsbh != '') {
this.xsbh = this.$router.currentRoute.query.xsbh
}
if (this.$router.currentRoute.query.module != null && this.$router.currentRoute.query.module != '') {
this.module = this.$router.currentRoute.query.module
}
},
created() {
this.$store.commit("user/SET_Breadcrumb", this.breadcrumbList);
......
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