Commit b9aa9ada by liyuhang19990520

Merge branch 'dev_xzeq' of http://47.92.108.28/changchao/founder_vue into dev_xzeq

parents 982c365a 62c1cd5b
{
"code":200,
"data":{
"rows":[
{
"ids":"1047655",
"label":"入库",
"codeType":"CODE_XSJSBD_RWZTDM",
"text":"入库",
"pId":null,
"id":"01",
"isParent":false,
"children":[]
},
{
"ids":"1047656",
"label":"审批通过",
"codeType":"CODE_XSJSBD_RWZTDM",
"text":"审批通过",
"pId":null,
"id":"02",
"isParent":false,
"children":[]
},
{
"ids":"1047657",
"label":"审批不通过",
"codeType":"CODE_XSJSBD_RWZTDM",
"text":"审批不通过",
"pId":null,
"id":"03",
"isParent":false,
"children":[]
},
{
"ids":"1047658",
"label":"已签收",
"codeType":"CODE_XSJSBD_RWZTDM",
"text":"已签收",
"pId":null,
"id":"04",
"isParent":false,
"children":[]
},
{
"ids":"1047659",
"label":"已反馈",
"codeType":"CODE_XSJSBD_RWZTDM",
"text":"已反馈",
"pId":null,
"id":"05",
"isParent":false,
"children":[]
}
]
},
"success":true,
"message":"成功"
}
\ No newline at end of file
...@@ -407,7 +407,9 @@ ...@@ -407,7 +407,9 @@
pageBs != 'hmxsGl' && pageBs != 'hmxsGl' &&
pageBs != 'ryxsGl' && pageBs != 'ryxsGl' &&
pageBs != 'caseGl' && pageBs != 'caseGl' &&
pageBs != 'rwbd' pageBs != 'rwbd' &&
pageBs != 'rySp' &&
pageBs != 'addZdry'
" "
> >
<!-- 暂时修改成这样 --> <!-- 暂时修改成这样 -->
...@@ -419,10 +421,9 @@ ...@@ -419,10 +421,9 @@
</div> </div>
<div <div
v-else-if=" v-else-if="
(pageBs != 'rwbd' && (pageBs != 'rwbd' && (columnTitle.prop == 'xxzjbh' || columnTitle.prop == 'asjbh' || columnTitle.prop == 'xm' )) ||
(columnTitle.prop == 'xxzjbh' ||
columnTitle.prop == 'asjbh')) ||
(pageBs == 'rwbd' && columnTitle.prop == 'rwmc') (pageBs == 'rwbd' && columnTitle.prop == 'rwmc')
" "
> >
<!-- 暂时修改成这样 --> <!-- 暂时修改成这样 -->
......
...@@ -105,11 +105,6 @@ export default { ...@@ -105,11 +105,6 @@ export default {
isActive: false, isActive: false,
}, },
{ {
name: "号码线索管理",
to: "/hmxsGl",
isActive: false,
},
{
name: "新增号码线索", name: "新增号码线索",
to: "/addHmxs", to: "/addHmxs",
isActive: true, isActive: true,
......
...@@ -103,11 +103,6 @@ export default { ...@@ -103,11 +103,6 @@ export default {
isActive: false, isActive: false,
}, },
{ {
name: "机动车索管理",
to: "/jdcxsGl",
isActive: false,
},
{
name: "新增机动车线索", name: "新增机动车线索",
to: "/addJdcxs", to: "/addJdcxs",
isActive: true, isActive: true,
......
...@@ -107,11 +107,6 @@ export default { ...@@ -107,11 +107,6 @@ export default {
isActive: false, isActive: false,
}, },
{ {
name: "人员线索管理",
to: "/ryxsGl",
isActive: false,
},
{
name: "新增人员线索", name: "新增人员线索",
to: "/addRyxs", to: "/addRyxs",
isActive: true, isActive: true,
......
...@@ -105,11 +105,6 @@ export default { ...@@ -105,11 +105,6 @@ export default {
isActive: false, isActive: false,
}, },
{ {
name: "银行卡线索管理",
to: "/yhkxsGl",
isActive: false,
},
{
name: "新增银行卡线索信息", name: "新增银行卡线索信息",
to: "/addYhkxs", to: "/addYhkxs",
isActive: true, isActive: true,
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
<script> <script>
import formCompontent from "@c/form.vue"; import formCompontent from "@c/form.vue";
import { getRybq } from "@/api/zdry/zdryGl.js";
import axios from "@/utils/http.js"; import axios from "@/utils/http.js";
import { insertZdry, updateAddZdry, infoAddZdry } from "@/api/zdry/zdrysp.js"; import { insertZdry, updateAddZdry, infoAddZdry } from "@/api/zdry/zdrysp.js";
export default { export default {
...@@ -56,7 +57,7 @@ export default { ...@@ -56,7 +57,7 @@ export default {
col: "2", col: "2",
}, },
{ {
name: "族:", name: "族:",
id: "mzdm", id: "mzdm",
type: "codeTree", type: "codeTree",
codeTree: "CODE_MZ", codeTree: "CODE_MZ",
...@@ -89,8 +90,9 @@ export default { ...@@ -89,8 +90,9 @@ export default {
{ {
name: "人员标签:", name: "人员标签:",
id: "code", id: "code",
type: "text", type: "setValue",
value: "", value: "",
codeOptions: [],
placeholder: "请输入", placeholder: "请输入",
col: "2", col: "2",
}, },
...@@ -150,6 +152,18 @@ export default { ...@@ -150,6 +152,18 @@ export default {
}; };
}, },
methods: { methods: {
getCode() {
let arr = [];
getRybq().then((res) => {
res.data.rows.forEach((item) => {
arr.push({
label: item.name,
value: item.code,
});
});
this.$set(this.propFormField[0].data[6], "codeOptions", arr);
});
},
submit(params) { submit(params) {
console.log(params); console.log(params);
let loading = this.$loading({ let loading = this.$loading({
...@@ -259,6 +273,7 @@ export default { ...@@ -259,6 +273,7 @@ export default {
this.id = this.$route.query.id; this.id = this.$route.query.id;
this.getshuju(); this.getshuju();
} }
this.getCode();
}, },
}; };
</script> </script>
......
...@@ -107,14 +107,14 @@ export default { ...@@ -107,14 +107,14 @@ export default {
codeOptions: [], codeOptions: [],
codeTree: "CODE_AJLB", codeTree: "CODE_AJLB",
}, },
{ // {
name: "自定义标签", // name: "自定义标签",
id: "zdyCodeTxt", // id: "zdyCodeTxt",
type: "select", // type: "select",
value: "", // value: "",
col: "3", // col: "3",
selectData: [], // selectData: [],
}, // },
{ {
name: "人员标签", name: "人员标签",
id: "zdyCode", id: "zdyCode",
...@@ -164,14 +164,14 @@ export default { ...@@ -164,14 +164,14 @@ export default {
placeholder: "请选择", placeholder: "请选择",
col: "3", col: "3",
}, },
{ // {
name: "审批人警号", // name: "审批人警号",
id: "sprjh", // id: "sprjh",
type: "text", // type: "text",
value: "", // value: "",
placeholder: "请填写", // placeholder: "请填写",
col: "3", // col: "3",
}, // },
], ],
cxDefaultFormThead: [ cxDefaultFormThead: [
{ {
...@@ -180,7 +180,7 @@ export default { ...@@ -180,7 +180,7 @@ export default {
}, },
{ {
label: "身份证号", label: "身份证号",
prop: "Zjhm", prop: "zjhm",
}, },
{ {
label: "性别", label: "性别",
...@@ -242,7 +242,7 @@ export default { ...@@ -242,7 +242,7 @@ export default {
}); });
}); });
}); });
this.$set(this.cxQueryField[9], "selectData", arr); this.$set(this.cxQueryField[6], "selectData", arr);
}, },
add() { add() {
this.$router.push("/addInsertZdry"); this.$router.push("/addInsertZdry");
......
...@@ -64,6 +64,8 @@ export default { ...@@ -64,6 +64,8 @@ export default {
cxFormData: { cxFormData: {
limit: 10, limit: 10,
page: 1, page: 1,
splc: "1",
sprjh: "",
}, },
cxQueryField: [ cxQueryField: [
// { // {
...@@ -221,7 +223,7 @@ export default { ...@@ -221,7 +223,7 @@ export default {
}, },
{ {
label: "身份证号", label: "身份证号",
prop: "Zjhm", prop: "zjhm",
}, },
{ {
label: "性别", label: "性别",
...@@ -275,6 +277,10 @@ export default { ...@@ -275,6 +277,10 @@ export default {
this.$store.commit("user/SET_Menu", this.Menu); this.$store.commit("user/SET_Menu", this.Menu);
this.getCode(); this.getCode();
this.cxQueryField[10].value = '1'; this.cxQueryField[10].value = '1';
let userInfo = window.sessionStorage.getItem("userInfo") || "";
var obj = JSON.parse(userInfo)
this.sprjh = obj.account
console.log(this.sprjh);
// debugger; // debugger;
}, },
methods: { methods: {
......
...@@ -116,7 +116,7 @@ export default { ...@@ -116,7 +116,7 @@ export default {
}, },
{ {
label: "阵地纬度", label: "阵地纬度",
prop: "Zdwd", prop: "zdwd",
}, },
{ {
label: "证件号码", label: "证件号码",
...@@ -124,7 +124,7 @@ export default { ...@@ -124,7 +124,7 @@ export default {
}, },
{ {
label: "姓名", label: "姓名",
prop: "Xm", prop: "xm",
}, },
{ {
label: "涉及省份和地区", label: "涉及省份和地区",
......
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